diff --git a/.DS_Store b/.DS_Store index 61cbc18..8a7a61a 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Podfile.lock b/Podfile.lock index c5df36c..17b794b 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,7 +1,7 @@ PODS: - - AeroGearHttp (0.6.0) - - AeroGearOAuth2 (0.5.1): - - AeroGearHttp + - AeroGearHttp (0.7.0) + - AeroGearOAuth2 (0.7.0): + - AeroGearHttp (= 0.7.0) - AFNetworking (2.6.3): - AFNetworking/NSURLConnection (= 2.6.3) - AFNetworking/NSURLSession (= 2.6.3) @@ -37,25 +37,25 @@ PODS: - BSImagePicker (2.3.0): - BSGridCollectionViewLayout (~> 1.1) - UIImageViewModeScaleAspect (~> 1.3) - - FBSDKCoreKit (4.14.0): + - FBSDKCoreKit (4.15.0): - Bolts (~> 1.7) - - FBSDKLoginKit (4.14.0): + - FBSDKLoginKit (4.15.0): - FBSDKCoreKit - - FBSDKShareKit (4.14.0): + - FBSDKShareKit (4.15.0): - FBSDKCoreKit - - Firebase (3.4.0): - - Firebase/Core (= 3.4.0) - - Firebase/Analytics (3.4.0): + - Firebase (3.5.2): + - Firebase/Core (= 3.5.2) + - Firebase/Analytics (3.5.2): - FirebaseAnalytics (~> 3.3) - - Firebase/Core (3.4.0): + - Firebase/Core (3.5.2): - Firebase/Analytics - - Firebase/Database (3.4.0): + - Firebase/Database (3.5.2): - Firebase/Analytics - FirebaseDatabase (= 3.0.2) - - Firebase/Storage (3.4.0): + - Firebase/Storage (3.5.2): - Firebase/Analytics - - FirebaseStorage (= 1.0.2) - - FirebaseAnalytics (3.3.0): + - FirebaseStorage (= 1.0.3) + - FirebaseAnalytics (3.3.1): - FirebaseInstanceID (~> 1.0) - GoogleInterchangeUtilities (~> 1.2) - GoogleSymbolUtilities (~> 1.1) @@ -68,8 +68,8 @@ PODS: - FirebaseDatabase (3.0.2): - FirebaseAnalytics (~> 3.2) - FirebaseInstanceID (1.0.8) - - FirebaseStorage (1.0.2): - - FirebaseAnalytics (~> 3.2) + - FirebaseStorage (1.0.3): + - FirebaseAnalytics (~> 3.3) - GoogleNetworkingUtilities (~> 1.2) - GDataXML-HTML (1.3.0) - GoogleInterchangeUtilities (1.2.1): @@ -121,23 +121,23 @@ DEPENDENCIES: - TYMActivityIndicatorView SPEC CHECKSUMS: - AeroGearHttp: e958f301cc2d1c7fbfd4b61af187ea3490040a48 - AeroGearOAuth2: 6f29d3fac8b78a0ff6d51b04c4ba1a02baed2e52 + AeroGearHttp: 4660c8bf5b56cd00a3b75d7c5ecf94774469df5c + AeroGearOAuth2: de4218f60a6228d6cdcf1761277fe8af1115600a AFNetworking: cb8d14a848e831097108418f5d49217339d4eb60 Alamofire: 01a82e2f6c0f860ade35534c8dd88be61bdef40c Alamofire-SwiftyJSON: 5812bb37accc36897cc2f2dabb070d8ebcd7ac98 Bolts: 8a7995239dbe724f9cba2248b766d48b7ebdd322 BSGridCollectionViewLayout: d7304dcb35c6b3b4420c527e9f9b77ff322250f3 BSImagePicker: 591b28ce4994c44cbc4ac896717c1db9f9fadd18 - FBSDKCoreKit: 6e020b5db0b5bd1e01f5fb0902131befd129a502 - FBSDKLoginKit: da563567a108050ef83739c8c8c001ee9e25fa13 - FBSDKShareKit: e8e5d4ccef69b41132fe33acda26db1e33143e33 - Firebase: 754562547af419cc2f4b15247fee419081924bc2 - FirebaseAnalytics: 228be2991cb28efb96cdafc4d62f64680e615c69 + FBSDKCoreKit: 6680cbd33a4243d80700f182d0af36b3fa7f3118 + FBSDKLoginKit: 96d9b70b5784490f02ab86119e542a1f182017a8 + FBSDKShareKit: 06ef20cb2f16828ca4b20055333313dd445de362 + Firebase: 94e63112efcad75226c0356a8f3032397b8547c9 + FirebaseAnalytics: d968d4d5f6aeb795cd64144337bcd233e530efc6 FirebaseAuth: 26fd291c3b552fc9658420b867520d5ae080421c FirebaseDatabase: 59bea2e7dfd81b3b8b2f8e396caf1a52c2ced6f7 FirebaseInstanceID: ba1e640935235e5fac39dfa816fe7660e72e1a8a - FirebaseStorage: fa2a87dee81f682f553af6839daa37a750e65f6a + FirebaseStorage: 3992817bf405f5c1a4f8349678d22724cd0ef509 GDataXML-HTML: 7adc03668cab35c288f1dbb8929a179f0fece898 GoogleInterchangeUtilities: def8415a862effc67d549d5b5b0b9c7a2f97d4de GoogleNetworkingUtilities: 3e83269048cfb498dc7ec83ab36813360965c74f diff --git a/Pods/AeroGearHttp/AeroGearHttp/Http.swift b/Pods/AeroGearHttp/AeroGearHttp/Http.swift index a6cd355..8107d3a 100644 --- a/Pods/AeroGearHttp/AeroGearHttp/Http.swift +++ b/Pods/AeroGearHttp/AeroGearHttp/Http.swift @@ -544,7 +544,13 @@ public class Http { if (destinationDirectory == nil) { // use 'default documents' directory if not set // use default documents directory let documentsDirectory = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0] as NSURL - finalDestination = documentsDirectory.URLByAppendingPathComponent(filename!) + #if swift(>=2.3) + // this compiles on Xcode 8 / Swift 2.3 / iOS 10 + finalDestination = documentsDirectory.URLByAppendingPathComponent(filename!)! + #else + // this compiles on Xcode 7 / Swift 2.2 / iOS 9 + finalDestination = documentsDirectory.URLByAppendingPathComponent(filename!) + #endif } else { // check that the directory exists let path = destinationDirectory?.stringByAppendingPathComponent(filename!) @@ -577,7 +583,8 @@ public class Http { } // MARK: Utility methods - public func calculateURL(baseURL: String?, var url: String) -> NSURL? { + public func calculateURL(baseURL: String?, url: String) -> NSURL? { + var url = url if (baseURL == nil || url.hasPrefix("http")) { return NSURL(string: url)! } diff --git a/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift index 68b9e00..72a1ef1 100644 --- a/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift +++ b/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift @@ -65,7 +65,13 @@ public class HttpRequestSerializer: RequestSerializer { var newUrl:String if (request.URL?.absoluteString != nil && parameters != nil) { let queryString = self.stringFromParameters(parameters!) - newUrl = "\(request.URL!.absoluteString)\(paramSeparator)\(queryString)" + #if swift(>=2.3) + // this compiles on Xcode 8 / Swift 2.3 / iOS 10 + newUrl = "\(request.URL!.absoluteString!)\(paramSeparator)\(queryString)" + #else + // this compiles on Xcode 7 / Swift 2.2 / iOS 9 + newUrl = "\(request.URL!.absoluteString)\(paramSeparator)\(queryString)" + #endif request.URL = NSURL(string: newUrl)! } diff --git a/Pods/AeroGearHttp/README.md b/Pods/AeroGearHttp/README.md index 4674d8b..3e62d5a 100644 --- a/Pods/AeroGearHttp/README.md +++ b/Pods/AeroGearHttp/README.md @@ -1,6 +1,6 @@ # aerogear-ios-http [![Build Status](https://travis-ci.org/aerogear/aerogear-ios-http.png)](https://travis-ci.org/aerogear/aerogear-ios-http) -> This module currently build with Xcode 7.2 and supports iOS8, iOS9. +> This module currently build with Xcode 7.2 / Xcode 8 and supports iOS8, iOS9, iOS10. Thin layer to take care of your http requests working with NSURLSession. Taking care of: @@ -11,7 +11,7 @@ Taking care of: * Pluggable object serialization * background processing support -100% Swift 2.0. +100% Swift 2.X. | | Project Info | | --------------- | ------------- | @@ -112,7 +112,7 @@ pod install To add the library in your project, you can either use [CocoaPods](http://cocoapods.org) or manual install in your project. See the respective sections below for instructions: ### Using [CocoaPods](http://cocoapods.org) -Support for Swift frameworks is supported from [CocoaPods-0.36 release](http://blog.cocoapods.org/CocoaPods-0.36/) upwards. In your ```Podfile``` add: +We recommend you use[CocoaPods-1.1.0.beta.1 release](https://github.com/CocoaPods/CocoaPods/releases/tag/1.1.0.beta.1). In your ```Podfile``` add: ``` pod 'AeroGearHttp' diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift index 0920ece..af67075 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift @@ -65,12 +65,12 @@ public class GoogleConfig: Config { public init(clientId: String, scopes: [String], accountId: String? = nil, isOpenIDConnect: Bool = false) { let bundleString = NSBundle.mainBundle().bundleIdentifier ?? "google" super.init(base: "https://accounts.google.com", - authzEndpoint: "o/oauth2/auth", + authzEndpoint: "o/oauth2/v2/auth", redirectURL: "\(bundleString):/oauth2Callback", accessTokenEndpoint: "o/oauth2/token", clientId: clientId, refreshTokenEndpoint: "o/oauth2/token", - revokeTokenEndpoint: "rest/revoke", + revokeTokenEndpoint: "o/oauth2/revoke", isOpenIDConnect: isOpenIDConnect, userInfoEndpoint: isOpenIDConnect ? "https://www.googleapis.com/plus/v1/people/me/openIdConnect" : nil, scopes: scopes, @@ -96,13 +96,13 @@ public class KeycloakConfig: Config { let bundleString = NSBundle.mainBundle().bundleIdentifier ?? "keycloak" let defaulRealmName = String(format: "%@-realm", clientId) let realm = realm ?? defaulRealmName - super.init(base: String(format: "%@/auth", host), - authzEndpoint: String(format: "realms/%@/tokens/login", realm), + super.init(base: "\(host)/auth", + authzEndpoint: "realms/\(realm)/protocol/openid-connect/auth", redirectURL: "\(bundleString)://oauth2Callback", - accessTokenEndpoint: String(format: "realms/%@/tokens/access/codes", realm), + accessTokenEndpoint: "realms/\(realm)/protocol/openid-connect/token", clientId: clientId, - refreshTokenEndpoint: String(format: "realms/%@/tokens/refresh", realm), - revokeTokenEndpoint: String(format: "realms/%@/tokens/logout", realm), + refreshTokenEndpoint: "realms/\(realm)/protocol/openid-connect/token", + revokeTokenEndpoint: "realms/\(realm)/protocol/openid-connect/logout", isOpenIDConnect: isOpenIDConnect) // Add openIdConnect scope if self.isOpenIDConnect { @@ -117,11 +117,11 @@ An account manager used to instantiate, store and retrieve OAuth2 modules. public class AccountManager { /// List of OAuth2 modules available for a given app. Each module is linked to an OAuht2Session which securely store the tokens. var modules: [String: OAuth2Module] - + init() { self.modules = [String: OAuth2Module]() } - + /// access a shared instance of an account manager public class var sharedInstance: AccountManager { struct Singleton { @@ -129,52 +129,52 @@ public class AccountManager { } return Singleton.instance } - + /** Instantiate an OAuth2 Module using the configuration object passed in and adds it to the account manager. It uses the OAuth2Session account_id as the name that this module will be stored in. - + :param: config the configuration object to use to setup an OAuth2 module. :param: moduleClass the type of the OAuth2 module to instantiate. - + :returns: the OAuth2 module */ public class func addAccount(config: Config, moduleClass: OAuth2Module.Type) -> OAuth2Module { - var myModule:OAuth2Module + var myModule: OAuth2Module myModule = moduleClass.init(config: config) // TODO check accountId is unique in modules list sharedInstance.modules[myModule.oauth2Session.accountId] = myModule return myModule } - + /** Removes an OAuth2 module - + :param: name the name that the OAuth2 module was bound to. :param: config the configuration object to use to setup an OAuth2 module. :param: moduleClass the type of the OAuth2 module to instantiate. - + :returns: the OAuth2module or nil if not found */ public class func removeAccount(name: String, config: Config, moduleClass: OAuth2Module.Type) -> OAuth2Module? { return sharedInstance.modules.removeValueForKey(name) } - + /** Retrieves an OAuth2 module by a name - + :param: name the name that the OAuth2 module was bound to. - + :returns: the OAuth2module or nil if not found. */ public class func getAccountByName(name: String) -> OAuth2Module? { return sharedInstance.modules[name] } - + /** Retrieves a list of OAuth2 modules bound to specific clientId. - + :param: clientId the client it that the oauth2 module was bound to. - + :returns: the OAuth2module or nil if not found. */ public class func getAccountsByClienId(clientId: String) -> [OAuth2Module] { @@ -182,12 +182,12 @@ public class AccountManager { return modules.filter {$0.config.clientId == clientId } } - + /** Retrieves an OAuth2 module by using a configuration object. - + :param: config the Config object that this oauth2 module was used to instantiate. - + :returns: the OAuth2module or nil if not found. */ public class func getAccountByConfig(config: Config) -> OAuth2Module? { @@ -205,31 +205,31 @@ public class AccountManager { /** Convenient method to retrieve a Facebook oauth2 module. - + :param: config a Facebook configuration object. See FacebookConfig. - + :returns: a Facebook OAuth2 module. */ public class func addFacebookAccount(config: FacebookConfig) -> FacebookOAuth2Module { return addAccount(config, moduleClass: FacebookOAuth2Module.self) as! FacebookOAuth2Module } - + /** Convenient method to retrieve a Google oauth2 module ready to be used. - + :param: config a google configuration object. See GoogleConfig. - + :returns: a google OAuth2 module. */ public class func addGoogleAccount(config: GoogleConfig) -> OAuth2Module { return addAccount(config, moduleClass: OAuth2Module.self) } - + /** Convenient method to retrieve a Keycloak oauth2 module ready to be used. - + :param: config a Keycloak configuration object. See KeycloakConfig. - + :returns: a Keycloak OAuth2 module. */ public class func addKeycloakAccount(config: KeycloakConfig) -> KeycloakOAuth2Module { diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift index 0668d0a..376ab04 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift @@ -25,7 +25,7 @@ public class Config { Applies the baseURL to the configuration. */ public let baseURL: String - + /** Applies the "callback URL" once request token issued. */ @@ -35,7 +35,7 @@ public class Config { Applies the "authorization endpoint" to the request token. */ public var authzEndpoint: String - + /** Applies the "access token endpoint" to the exchange code for access token. */ @@ -45,27 +45,27 @@ public class Config { Endpoint for request to invalidate both accessToken and refreshToken. */ public let revokeTokenEndpoint: String? - + /** Endpoint for request a refreshToken. */ public let refreshTokenEndpoint: String? - + /** Endpoint for OpenID Connect to get user information. */ public let userInfoEndpoint: String? - + /** Boolean to indicate whether OpenID Connect on authorization code grant flow is used. */ public var isOpenIDConnect: Bool - + /** Applies the various scopes of the authorization. */ public var scopes: [String] - + var scope: String { get { // Create a string to concatenate all scopes existing in the _scopes array. @@ -80,30 +80,38 @@ public class Config { return scopeString } } - + /** Applies the "client id" obtained with the client registration process. */ public let clientId: String - + /** Applies the "client secret" obtained with the client registration process. */ public let clientSecret: String? - + /** Account id is used with AccountManager to store tokens. AccountId is defined by the end-user and can be any String. If AccountManager is not used, this field is optional. */ public var accountId: String? - + /** Boolean to indicate to either used a webview (if true) or an external browser (by default, false) for authorization code grant flow. */ public var isWebView: Bool = false - - public init(base: String, authzEndpoint: String, redirectURL: String, accessTokenEndpoint: String, clientId: String, refreshTokenEndpoint: String? = nil, revokeTokenEndpoint: String? = nil, isOpenIDConnect:Bool = false, userInfoEndpoint: String? = nil, scopes: [String] = [], clientSecret: String? = nil, accountId: String? = nil, isWebView: Bool = false) { + + /** + A handler to allow the webview to be pushed onto the navigation controller + */ + public var webViewHandler: ((OAuth2WebViewController, completionHandler: (AnyObject?, NSError?) -> Void) -> ()) = { + (webView, completionHandler) in + UIApplication.sharedApplication().keyWindow?.rootViewController?.presentViewController(webView, animated: true, completion: nil) + } + + public init(base: String, authzEndpoint: String, redirectURL: String, accessTokenEndpoint: String, clientId: String, refreshTokenEndpoint: String? = nil, revokeTokenEndpoint: String? = nil, isOpenIDConnect: Bool = false, userInfoEndpoint: String? = nil, scopes: [String] = [], clientSecret: String? = nil, accountId: String? = nil, isWebView: Bool = false) { self.baseURL = base self.authzEndpoint = authzEndpoint self.redirectURL = redirectURL @@ -118,4 +126,4 @@ public class Config { self.accountId = accountId self.isWebView = isWebView } -} \ No newline at end of file +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift index 1650e5c..a7170c2 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift @@ -20,17 +20,16 @@ import Foundation /** Handy extensions to NSDate */ -extension NSDate -{ - +extension NSDate { + /** Initialize a date object using the given string. - + :param: dateString the string that will be used to instantiate the date object. The string is expected to be in the format 'yyyy-MM-dd hh:mm:ss a'. - + :returns: the NSDate object. */ - public convenience init(dateString:String) { + public convenience init(dateString: String) { let dateStringFormatter = NSDateFormatter() dateStringFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss a" let d = dateStringFormatter.dateFromString(dateString) @@ -40,11 +39,11 @@ extension NSDate self.init() } } - - + + /** Returns a string of the date object using the format 'yyyy-MM-dd hh:mm:ss a'. - + :returns: a formatted string object. */ public func toString() -> String { @@ -52,4 +51,4 @@ extension NSDate dateStringFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss a" return dateStringFormatter.stringFromDate(self) } -} \ No newline at end of file +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift index 2622805..da54195 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift @@ -22,35 +22,35 @@ import AeroGearHttp An OAuth2Module subclass specific to 'Facebook' authorization */ public class FacebookOAuth2Module: OAuth2Module { - + public required init(config: Config, session: OAuth2Session?, requestSerializer: RequestSerializer, responseSerializer: ResponseSerializer) { super.init(config: config, session: session, requestSerializer: JsonRequestSerializer(), responseSerializer: StringResponseSerializer()) } - + /** Exchange an authorization code for an access token. - + :param: code the 'authorization' code to exchange for an access token. :param: completionHandler A block object to be executed when the request operation finishes. */ override public func exchangeAuthorizationCodeForAccessToken(code: String, completionHandler: (AnyObject?, NSError?) -> Void) { var paramDict: [String: String] = ["code": code, "client_id": config.clientId, "redirect_uri": config.redirectURL, "grant_type":"authorization_code"] - + if let unwrapped = config.clientSecret { paramDict["client_secret"] = unwrapped } - + http.request(.POST, path: config.accessTokenEndpoint, parameters: paramDict, completionHandler: { (response, error) in - + if (error != nil) { completionHandler(nil, error) return } - + if let unwrappedResponse = response as? String { var accessToken: String? = nil var expiredIn: String? = nil - + let charSet: NSMutableCharacterSet = NSMutableCharacterSet() charSet.addCharactersInString("&=") let array = unwrappedResponse.componentsSeparatedByCharactersInSet(charSet) @@ -69,38 +69,38 @@ public class FacebookOAuth2Module: OAuth2Module { } }) } - + /** Request to revoke access. - + :param: completionHandler A block object to be executed when the request operation finishes. */ override public func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) { // return if not yet initialized if (self.oauth2Session.accessToken == nil) { - return; + return } - let paramDict:[String:String] = ["access_token":self.oauth2Session.accessToken!] - + let paramDict: [String:String] = ["access_token":self.oauth2Session.accessToken!] + http.request(.DELETE, path: config.revokeTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in - + if (error != nil) { completionHandler(nil, error) return } - + self.oauth2Session.clearTokens() completionHandler(response!, nil) }) } - + /** Gateway to request authorization access - + :param: completionHandler A block object to be executed when the request operation finishes. */ override public func login(completionHandler: (AnyObject?, OpenIDClaim?, NSError?) -> Void) { - self.requestAccess { (response:AnyObject?, error:NSError?) -> Void in + self.requestAccess { (response: AnyObject?, error: NSError?) -> Void in if (error != nil) { completionHandler(nil, nil, error) return @@ -110,7 +110,7 @@ public class FacebookOAuth2Module: OAuth2Module { paramDict = ["access_token": response! as! String] } if let userInfoEndpoint = self.config.userInfoEndpoint { - + self.http.request(.GET, path: userInfoEndpoint, parameters: paramDict, completionHandler: {(responseObject, error) in if (error != nil) { completionHandler(nil, nil, error) @@ -132,4 +132,4 @@ public class FacebookOAuth2Module: OAuth2Module { } } } -} \ No newline at end of file +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift index f7f49ec..9ce75dd 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift @@ -21,32 +21,32 @@ import Foundation An OAuth2Module subclass specific to 'Keycloak' authorization */ public class KeycloakOAuth2Module: OAuth2Module { - + public override func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) { // return if not yet initialized if (self.oauth2Session.accessToken == nil) { - return; + return } - let paramDict:[String:String] = [ "client_id": config.clientId, "refresh_token": self.oauth2Session.refreshToken!] + let paramDict: [String:String] = [ "client_id": config.clientId, "refresh_token": self.oauth2Session.refreshToken!] http.request(.POST, path: config.revokeTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in if (error != nil) { completionHandler(nil, error) return } - + self.oauth2Session.clearTokens() completionHandler(response, nil) }) } - + /** Gateway to login with OpenIDConnect - + :param: completionHandler A block object to be executed when the request operation finishes. */ public override func login(completionHandler: (AnyObject?, OpenIDClaim?, NSError?) -> Void) { var openIDClaims: OpenIDClaim? - + self.requestAccess { (response: AnyObject?, error: NSError?) -> Void in if (error != nil) { completionHandler(nil, nil, error) @@ -62,10 +62,10 @@ public class KeycloakOAuth2Module: OAuth2Module { completionHandler(accessToken, openIDClaims, nil) } } - + /** Request to refresh an access token. - + :param: completionHandler A block object to be executed when the request operation finishes. */ public override func refreshAccessToken(completionHandler: (AnyObject?, NSError?) -> Void) { @@ -74,13 +74,13 @@ public class KeycloakOAuth2Module: OAuth2Module { if (config.clientSecret != nil) { paramDict["client_secret"] = config.clientSecret! } - + http.request(.POST, path: config.refreshTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in if (error != nil) { completionHandler(nil, error) return } - + if let unwrappedResponse = response as? [String: AnyObject] { let accessToken: String = unwrappedResponse["access_token"] as! String let refreshToken: String = unwrappedResponse["refresh_token"] as! String @@ -88,21 +88,21 @@ public class KeycloakOAuth2Module: OAuth2Module { let exp: String = expiration.stringValue let expirationRefresh = unwrappedResponse["refresh_expires_in"] as? NSNumber let expRefresh = expirationRefresh?.stringValue - + // in Keycloak refresh token get refreshed every time you use them self.oauth2Session.saveAccessToken(accessToken, refreshToken: refreshToken, accessTokenExpiration: exp, refreshTokenExpiration: expRefresh) - completionHandler(accessToken, nil); + completionHandler(accessToken, nil) } }) } } - - + + func decode(token: String) -> [String: AnyObject]? { let string = token.componentsSeparatedByString(".") let toDecode = string[1] as String - - + + var stringtoDecode: String = toDecode.stringByReplacingOccurrencesOfString("-", withString: "+") // 62nd char of encoding stringtoDecode = stringtoDecode.stringByReplacingOccurrencesOfString("_", withString: "/") // 63rd char of encoding switch (stringtoDecode.utf16.count % 4) { @@ -113,7 +113,7 @@ public class KeycloakOAuth2Module: OAuth2Module { } let dataToDecode = NSData(base64EncodedString: stringtoDecode, options: []) let base64DecodedString = NSString(data: dataToDecode!, encoding: NSUTF8StringEncoding) - + var values: [String: AnyObject]? if let string = base64DecodedString { if let data = string.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: true) { @@ -122,5 +122,5 @@ public class KeycloakOAuth2Module: OAuth2Module { } return values } - -} \ No newline at end of file + +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift index ea68458..1db2261 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift @@ -50,7 +50,8 @@ public class OAuth2Module: AuthzModule { var applicationLaunchNotificationObserver: NSObjectProtocol? var applicationDidBecomeActiveNotificationObserver: NSObjectProtocol? var state: AuthorizationState - var webView: OAuth2WebViewController? + public var webView: OAuth2WebViewController? + /** Initialize an OAuth2 module. @@ -107,7 +108,7 @@ public class OAuth2Module: AuthzModule { // unregister self.stopObserving() // ..and update state - self.state = .AuthorizationStateUnknown; + self.state = .AuthorizationStateUnknown } }) @@ -121,11 +122,17 @@ public class OAuth2Module: AuthzModule { completionHandler(nil, error) return } - let url = NSURL(string:computedUrl.absoluteString + params) + #if swift(>=2.3) + // this compiles on Xcode 8 / Swift 2.3 / iOS 10 + let url = NSURL(string:computedUrl.absoluteString! + params) + #else + // this compiles on Xcode 7 / Swift 2.2 / iOS 9 + let url = NSURL(string:computedUrl.absoluteString + params) + #endif if let url = url { if self.webView != nil { self.webView!.targetURL = url - UIApplication.sharedApplication().keyWindow?.rootViewController?.presentViewController(self.webView!, animated: true, completion: nil) + config.webViewHandler(self.webView!, completionHandler: completionHandler) } else { UIApplication.sharedApplication().openURL(url) } @@ -154,8 +161,12 @@ public class OAuth2Module: AuthzModule { let accessToken: String = unwrappedResponse["access_token"] as! String let expiration = unwrappedResponse["expires_in"] as! NSNumber let exp: String = expiration.stringValue - - self.oauth2Session.saveAccessToken(accessToken, refreshToken: unwrappedRefreshToken, accessTokenExpiration: exp, refreshTokenExpiration: nil) + var refreshToken = unwrappedRefreshToken + if let newRefreshToken = unwrappedResponse["refresh_token"] as? String { + refreshToken = newRefreshToken + } + + self.oauth2Session.saveAccessToken(accessToken, refreshToken: refreshToken, accessTokenExpiration: exp, refreshTokenExpiration: nil) completionHandler(unwrappedResponse["access_token"], nil); } @@ -171,17 +182,17 @@ public class OAuth2Module: AuthzModule { */ public func exchangeAuthorizationCodeForAccessToken(code: String, completionHandler: (AnyObject?, NSError?) -> Void) { var paramDict: [String: String] = ["code": code, "client_id": config.clientId, "redirect_uri": config.redirectURL, "grant_type":"authorization_code"] - + if let unwrapped = config.clientSecret { paramDict["client_secret"] = unwrapped } - + http.request(.POST, path: config.accessTokenEndpoint, parameters: paramDict, completionHandler: {(responseObject, error) in if (error != nil) { completionHandler(nil, error) return } - + if let unwrappedResponse = responseObject as? [String: AnyObject] { let accessToken: String = unwrappedResponse["access_token"] as! String let refreshToken: String? = unwrappedResponse["refresh_token"] as? String @@ -190,7 +201,7 @@ public class OAuth2Module: AuthzModule { // expiration for refresh token is used in Keycloak let expirationRefresh = unwrappedResponse["refresh_expires_in"] as? NSNumber let expRefresh = expirationRefresh?.stringValue - + self.oauth2Session.saveAccessToken(accessToken, refreshToken: refreshToken, accessTokenExpiration: exp, refreshTokenExpiration: expRefresh) completionHandler(accessToken, nil) } @@ -205,7 +216,7 @@ public class OAuth2Module: AuthzModule { public func requestAccess(completionHandler: (AnyObject?, NSError?) -> Void) { if (self.oauth2Session.accessToken != nil && self.oauth2Session.tokenIsNotExpired()) { // we already have a valid access token, nothing more to be done - completionHandler(self.oauth2Session.accessToken!, nil); + completionHandler(self.oauth2Session.accessToken!, nil) } else if (self.oauth2Session.refreshToken != nil && self.oauth2Session.refreshTokenIsNotExpired()) { // need to refresh token self.refreshAccessToken(completionHandler) @@ -214,16 +225,16 @@ public class OAuth2Module: AuthzModule { self.requestAuthorizationCode(completionHandler) } } - + /** Gateway to provide authentication using the Authorization Code Flow with OpenID Connect. - + :param: completionHandler A block object to be executed when the request operation finishes. */ public func login(completionHandler: (AnyObject?, OpenIDClaim?, NSError?) -> Void) { - + self.requestAccess { (response:AnyObject?, error:NSError?) -> Void in - + if (error != nil) { completionHandler(nil, nil, error) return @@ -249,11 +260,11 @@ public class OAuth2Module: AuthzModule { completionHandler(nil, nil, NSError(domain: "OAuth2Module", code: 0, userInfo: ["OpenID Connect" : "No UserInfo endpoint available in config"])) return } - + } } - + /** Request to revoke access. @@ -262,9 +273,9 @@ public class OAuth2Module: AuthzModule { public func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) { // return if not yet initialized if (self.oauth2Session.accessToken == nil) { - return; + return } - let paramDict:[String:String] = ["token":self.oauth2Session.accessToken!] + let paramDict: [String:String] = ["token":self.oauth2Session.accessToken!] http.request(.POST, path: config.revokeTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in if (error != nil) { @@ -324,11 +335,11 @@ public class OAuth2Module: AuthzModule { var parameters = [String: String]() if (queryString != nil) { let parameterScanner: NSScanner = NSScanner(string: queryString!) - var name:NSString? = nil - var value:NSString? = nil + var name: NSString? = nil + var value: NSString? = nil while (parameterScanner.atEnd != true) { - name = nil; + name = nil parameterScanner.scanUpToString("=", intoString: &name) parameterScanner.scanString("=", intoString:nil) @@ -342,7 +353,7 @@ public class OAuth2Module: AuthzModule { } } - return parameters; + return parameters } deinit { @@ -353,7 +364,7 @@ public class OAuth2Module: AuthzModule { // clear all observers if (applicationLaunchNotificationObserver != nil) { NSNotificationCenter.defaultCenter().removeObserver(applicationLaunchNotificationObserver!) - self.applicationLaunchNotificationObserver = nil; + self.applicationLaunchNotificationObserver = nil } if (applicationDidBecomeActiveNotificationObserver != nil) { diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift index 7ef24cd..f46755b 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift @@ -20,52 +20,52 @@ import Foundation The protocol that an OAuth2 Session modules must adhere to and represent storage of oauth specific metadata. See TrustedPersistantOAuth2Session and UntrustedMemoryOAuth2Session as example implementations */ public protocol OAuth2Session { - + /** The account id. */ var accountId: String {get} - + /** The access token which expires. */ var accessToken: String? {get set} - + /** The access token's expiration date. */ var accessTokenExpirationDate: NSDate? {get set} - + /** The refresh token's expiration date. */ var refreshTokenExpirationDate: NSDate? {get set} - + /** The refresh tokens. This toke does not expire and should be used to renew access token when expired. */ var refreshToken: String? {get set} - + /** Check validity of accessToken. return true if still valid, false when expired. */ func tokenIsNotExpired() -> Bool - - + + /** Check validity of refreshToken. return true if still valid, false when expired. */ func refreshTokenIsNotExpired() -> Bool - + /** Clears any tokens storage */ func clearTokens() - + /** Save tokens information. Saving tokens allow you to refresh accesstoken transparently for the user without prompting for grant access. - + :param: accessToken the access token. :param: refreshToken the refresh token. :param: accessTokenExpiration the expiration for the access token. diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift index 73c1c2f..e5f0299 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift @@ -19,33 +19,33 @@ import Foundation import UIKit /** -OAuth2WebViewController is a UIViewController to be used when the Oauth2 flow used an embedded view controller +OAuth2WebViewController is a UIViewController to be used when the Oauth2 flow used an embedded view controller rather than an external browser approach. */ -class OAuth2WebViewController: UIViewController, UIWebViewDelegate { +public class OAuth2WebViewController: UIViewController, UIWebViewDelegate { /// Login URL for OAuth. - var targetURL : NSURL = NSURL() + var targetURL: NSURL = NSURL() /// WebView intance used to load login page. - var webView : UIWebView = UIWebView() - - /// Overrride of viewDidLoad to load the login page. - override internal func viewDidLoad() { + var webView: UIWebView = UIWebView() + + /// Override of viewDidLoad to load the login page. + override public func viewDidLoad() { super.viewDidLoad() webView.frame = UIScreen.mainScreen().applicationFrame webView.delegate = self self.view.addSubview(webView) loadAddressURL() } - - override func viewDidLayoutSubviews() { + + override public func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() self.webView.frame = self.view.bounds } - - override internal func didReceiveMemoryWarning() { + + override public func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } - + func loadAddressURL() { let req = NSURLRequest(URL: targetURL) webView.loadRequest(req) diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift index 86ae535..f512f34 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift @@ -70,9 +70,9 @@ public class OpenIDClaim: CustomStringConvertible { "nickname: \(nickname)\npreferredUsername: \(preferredUsername)\nprofile: \(profile)\npicture: \(picture)\n" + "website: \(website)\nemail: \(email)\nemailVerified: \(emailVerified)\ngender: \(gender)\nbirthdate: \(birthdate)\n" } - + /// Initialize an OpenIDClaim from a dictionary. all information not available are optional values set to .None. - public init(fromDict:[String: AnyObject]) { + public init(fromDict: [String: AnyObject]) { sub = fromDict["sub"] as? String name = fromDict["name"] as? String givenName = fromDict["given_name"] as? String @@ -97,13 +97,11 @@ public class OpenIDClaim: CustomStringConvertible { } /// Facebook specific claims. public class FacebookOpenIDClaim: OpenIDClaim { - - override init(fromDict:[String: AnyObject]) { + + override init(fromDict: [String: AnyObject]) { super.init(fromDict: fromDict) givenName = fromDict["first_name"] as? String familyName = fromDict["last_name"] as? String zoneinfo = fromDict["timezone"] as? String } } - - diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift index 02fa885..e5db885 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift @@ -38,20 +38,20 @@ public enum TokenType: String { A handy Keychain wrapper. It saves your OAuth2 tokens using WhenPasscodeSet ACL. */ public class KeychainWrap { - + /** The service id. By default set to apple bundle id. */ public var serviceIdentifier: String - + /** The group id is Keychain access group which is used for sharing keychain content accross multiple apps issued from same developer. By default there is no access group. */ public var groupId: String? - + /** Initialize KeychainWrapper setting default values. - + :param: serviceId unique service, defulated to bundleId :param: groupId used for SSO between app issued from same developer certificate. */ @@ -63,10 +63,10 @@ public class KeychainWrap { } self.groupId = groupId } - + /** Save tokens information in Keychain. - + :param: key usually use accountId for oauth2 module, any unique string. :param: tokenType type of token: access, refresh. :param: value string value of the token. @@ -76,7 +76,7 @@ public class KeychainWrap { if (dataFromString == nil) { return false } - + // Instantiate a new default keychain query let keychainQuery = NSMutableDictionary() if let groupId = self.groupId { @@ -85,17 +85,17 @@ public class KeychainWrap { keychainQuery[kSecClass as String] = kSecClassGenericPassword keychainQuery[kSecAttrService as String] = self.serviceIdentifier keychainQuery[kSecAttrAccount as String] = key + "_" + tokenType.rawValue - keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly + keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly // Search for the keychain items let statusSearch: OSStatus = SecItemCopyMatching(keychainQuery, nil) - + // if found update if (statusSearch == errSecSuccess) { if (dataFromString != nil) { let attributesToUpdate = NSMutableDictionary() attributesToUpdate[kSecValueData as String] = dataFromString! - + let statusUpdate: OSStatus = SecItemUpdate(keychainQuery, attributesToUpdate) if (statusUpdate != errSecSuccess) { print("tokens not updated") @@ -114,13 +114,34 @@ public class KeychainWrap { } else { // error case return false } - + return true } - + + /** + Delete a specific token in Keychain. + + :param: key usually use accountId for oauth2 module, any unique string. + :param: tokenType type of token. + */ + public func delete(key: String, tokenType: TokenType) -> Bool { + let keychainQuery = NSMutableDictionary() + if let groupId = self.groupId { + keychainQuery[kSecAttrAccessGroup as String] = groupId + } + keychainQuery[kSecClass as String] = kSecClassGenericPassword + keychainQuery[kSecAttrService as String] = self.serviceIdentifier + keychainQuery[kSecAttrAccount as String] = key + "_" + tokenType.rawValue + keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly + + let statusDelete: OSStatus = SecItemDelete(keychainQuery) + + return statusDelete == noErr + } + /** Read tokens information in Keychain. If the entry is not found return nil. - + :param: userAccount key of the keychain entry, usually accountId for oauth2 module. :param: tokenType type of token: access, refresh. */ @@ -133,9 +154,8 @@ public class KeychainWrap { keychainQuery[kSecAttrService as String] = self.serviceIdentifier keychainQuery[kSecAttrAccount as String] = userAccount + "_" + tokenType.rawValue keychainQuery[kSecReturnData as String] = true - keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly + keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly - var dataTypeRef: Unmanaged? // Search for the keychain items let status: OSStatus = withUnsafeMutablePointer(&dataTypeRef) { SecItemCopyMatching(keychainQuery as CFDictionaryRef, UnsafeMutablePointer($0)) } @@ -147,21 +167,21 @@ public class KeychainWrap { print("Error attempting to retrieve \(tokenType.rawValue) with error code \(status) ") return nil } - + let opaque = dataTypeRef?.toOpaque() var contentsOfKeychain: String? if let op = opaque { let retrievedData = Unmanaged.fromOpaque(op).takeUnretainedValue() - + // Convert the data retrieved from the keychain into a string contentsOfKeychain = NSString(data: retrievedData, encoding: NSUTF8StringEncoding) as? String } else { print("Nothing was retrieved from the keychain. Status code \(status)") } - + return contentsOfKeychain } - + /** Clear all keychain entries. Note that Keychain can only be cleared progemmatically. */ @@ -172,11 +192,11 @@ public class KeychainWrap { self.deleteAllKeysForSecClass(kSecClassKey) && self.deleteAllKeysForSecClass(kSecClassIdentity) } - + func deleteAllKeysForSecClass(secClass: CFTypeRef) -> Bool { let keychainQuery = NSMutableDictionary() keychainQuery[kSecClass as String] = secClass - let result:OSStatus = SecItemDelete(keychainQuery) + let result: OSStatus = SecItemDelete(keychainQuery) if (result == errSecSuccess) { return true } else { @@ -189,19 +209,19 @@ public class KeychainWrap { An OAuth2Session implementation to store OAuth2 metadata using the Keychain. */ public class TrustedPersistantOAuth2Session: OAuth2Session { - + /** The account id. */ public var accountId: String - + /** The access token's expiration date. */ public var accessTokenExpirationDate: NSDate? { get { let dateAsString = self.keychain.read(self.accountId, tokenType: .ExpirationDate) - if let unwrappedDate:String = dateAsString { + if let unwrappedDate: String = dateAsString { return NSDate(dateString: unwrappedDate) } else { return nil @@ -210,10 +230,12 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { set(value) { if let unwrappedValue = value { self.keychain.save(self.accountId, tokenType: .ExpirationDate, value: unwrappedValue.toString()) + } else { + self.keychain.delete(self.accountId, tokenType: .ExpirationDate) } } } - + /** The access token. The information is read securely from Keychain. */ @@ -224,10 +246,12 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { set(value) { if let unwrappedValue = value { self.keychain.save(self.accountId, tokenType: .AccessToken, value: unwrappedValue) + } else { + self.keychain.delete(self.accountId, tokenType: .AccessToken) } } } - + /** The refresh token. The information is read securely from Keychain. */ @@ -238,17 +262,19 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { set(value) { if let unwrappedValue = value { self.keychain.save(self.accountId, tokenType: .RefreshToken, value: unwrappedValue) + } else { + self.keychain.delete(self.accountId, tokenType: .RefreshToken) } } } - + /** The refresh token's expiration date. */ public var refreshTokenExpirationDate: NSDate? { get { let dateAsString = self.keychain.read(self.accountId, tokenType: .RefreshExpirationDate) - if let unwrappedDate:String = dateAsString { + if let unwrappedDate: String = dateAsString { return NSDate(dateString: unwrappedDate) } else { return nil @@ -257,33 +283,35 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { set(value) { if let unwrappedValue = value { _ = self.keychain.save(self.accountId, tokenType: .RefreshExpirationDate, value: unwrappedValue.toString()) + } else { + self.keychain.delete(self.accountId, tokenType: .RefreshExpirationDate) } } } - + private let keychain: KeychainWrap - + /** Check validity of accessToken. return true if still valid, false when expired. */ public func tokenIsNotExpired() -> Bool { return self.accessTokenExpirationDate != nil ? (self.accessTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true } - + /** Check validity of refreshToken. return true if still valid, false when expired. */ public func refreshTokenIsNotExpired() -> Bool { return self.refreshTokenExpirationDate != nil ? (self.refreshTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true } - + /** Save in memory tokens information. Saving tokens allow you to refresh accesstoken transparently for the user without prompting for grant access. */ public func saveAccessToken(accessToken: String?, refreshToken: String?, accessTokenExpiration: String?, refreshTokenExpiration: String?) { self.accessToken = accessToken self.refreshToken = refreshToken - + let now = NSDate() if let inter = accessTokenExpiration?.doubleValue { self.accessTokenExpirationDate = now.dateByAddingTimeInterval(inter) @@ -292,7 +320,7 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { self.refreshTokenExpirationDate = now.dateByAddingTimeInterval(inter) } } - + /** Clear all tokens. Method used when doing logout or revoke. */ @@ -302,10 +330,10 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { self.accessTokenExpirationDate = nil self.refreshTokenExpirationDate = nil } - + /** Initialize TrustedPersistantOAuth2Session using account id. Account id is the service id used for keychain storage. - + :param: accountId uniqueId to identify the oauth2module :param: groupId used for SSO between app issued from same developer certificate. :param: accessToken optional parameter to initilaize the storage with initial values @@ -319,15 +347,27 @@ public class TrustedPersistantOAuth2Session: OAuth2Session { accessTokenExpirationDate: NSDate? = nil, refreshToken: String? = nil, refreshTokenExpirationDate: NSDate? = nil) { - self.accountId = accountId - if groupId != nil { - self.keychain = KeychainWrap(serviceId: groupId, groupId: groupId) - } else { - self.keychain = KeychainWrap() - } - self.accessToken = accessToken - self.refreshToken = refreshToken - self.accessTokenExpirationDate = accessTokenExpirationDate - self.refreshTokenExpirationDate = refreshTokenExpirationDate + self.accountId = accountId + if groupId != nil { + self.keychain = KeychainWrap(serviceId: groupId, groupId: groupId) + } else { + self.keychain = KeychainWrap() + } + + if accessToken != nil { + self.accessToken = accessToken + } + + if refreshToken != nil { + self.refreshToken = refreshToken + } + + if accessTokenExpirationDate != nil { + self.accessTokenExpirationDate = accessTokenExpirationDate + } + + if refreshToken != nil { + self.refreshTokenExpirationDate = refreshTokenExpirationDate + } } } diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift index d93bc95..d4f70db 100644 --- a/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift @@ -26,27 +26,27 @@ extension String { An OAuth2Session implementation the stores OAuth2 metadata in-memory */ public class UntrustedMemoryOAuth2Session: OAuth2Session { - + /** The account id. */ public var accountId: String - + /** The access token which expires. */ public var accessToken: String? - + /** The access token's expiration date. */ public var accessTokenExpirationDate: NSDate? - + /** The refresh tokens. This toke does not expire and should be used to renew access token when expired. */ public var refreshToken: String? - + /** The refresh token's expiration date. */ @@ -58,14 +58,14 @@ public class UntrustedMemoryOAuth2Session: OAuth2Session { public func tokenIsNotExpired() -> Bool { return self.accessTokenExpirationDate != nil ? (self.accessTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true } - + /** Check validity of refreshToken. return true if still valid, false when expired. */ public func refreshTokenIsNotExpired() -> Bool { return self.refreshTokenExpirationDate != nil ? (self.refreshTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true } - + /** Save in memory tokens information. Saving tokens allow you to refresh accesstoken transparently for the user without prompting for grant access. */ @@ -80,7 +80,7 @@ public class UntrustedMemoryOAuth2Session: OAuth2Session { self.refreshTokenExpirationDate = now.dateByAddingTimeInterval(interRefresh) } } - + /** Clear all tokens. Method used when doing logout or revoke. */ @@ -90,10 +90,10 @@ public class UntrustedMemoryOAuth2Session: OAuth2Session { self.accessTokenExpirationDate = nil self.refreshTokenExpirationDate = nil } - + /** - Initialize session using account id. - + Initialize session using account id. + :param: accountId uniqueId to identify the oauth2module. :param: accessToken optional parameter to initilaize the storage with initial values. :param: accessTokenExpirationDate optional parameter to initilaize the storage with initial values. diff --git a/Pods/AeroGearOAuth2/README.md b/Pods/AeroGearOAuth2/README.md index f1f74ec..39ddaca 100644 --- a/Pods/AeroGearOAuth2/README.md +++ b/Pods/AeroGearOAuth2/README.md @@ -1,6 +1,6 @@ # aerogear-ios-oauth2 [![Build Status](https://travis-ci.org/aerogear/aerogear-ios-oauth2.png)](https://travis-ci.org/aerogear/aerogear-ios-oauth2) -> This module currently build with Xcode 7 and supports iOS8, iOS9. +> This module currently build with Xcode 7 / Xcode 8 and supports iOS8, iOS9, iOS10. OAuth2 Client based on [aerogear-ios-http](https://github.com/aerogear/aerogear-ios-http). Taking care of: @@ -11,7 +11,7 @@ Taking care of: * (implicit or explicit) refresh tokens, * revoke tokens, * permanent secure storage, -* adaptable to OAuth2 specific providers. Existing extensions: Google, Facebook, [Keycloak 1.5.0.Final](http://keycloak.jboss.org/) etc... +* adaptable to OAuth2 specific providers. Existing extensions: Google, Facebook, [Keycloak 1.9.3.Final](http://keycloak.jboss.org/) etc... * openID Connect login 100% Swift 2.0. @@ -29,12 +29,12 @@ Taking care of: #### OAuth2 grant for GET with a predefined config like Facebook ```swift -var Http = Http() // [1] +let http = Http() // [1] let facebookConfig = FacebookConfig( // [2] clientId: "YYY", clientSecret: "XXX", scopes:["photo_upload, publish_actions"]) -var oauth2Module = AccountManager.addFacebookAccount(facebookConfig) // [3] +let oauth2Module = AccountManager.addFacebookAccount(facebookConfig) // [3] http.authzModule = oauth2Module // [4] http.request(.GET, path: "/get", completionHandler: {(response, error) in // [5] // handle response @@ -52,13 +52,13 @@ See full description in [aerogear.org](https://aerogear.org/docs/guides/aerogear #### OpenID Connect with Keycloak ```swift -var Http = Http() +let http = Http() let keycloakConfig = KeycloakConfig( clientId: "sharedshoot-third-party", host: "http://localhost:8080", realm: "shoot-realm", isOpenIDConnect: true) -var oauth2Module = AccountManager.addKeycloakAccount(keycloakConfig) +let oauth2Module = AccountManager.addKeycloakAccount(keycloakConfig) http.authzModule = oauth2Module oauth2Module.login {(accessToken: AnyObject?, claims: OpenIDClaim?, error: NSError?) in // [1] // Do your own stuff here @@ -127,4 +127,4 @@ Join our [user mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-u ## Found a bug? -If you found a bug please create a ticket for us on [Jira](https://issues.jboss.org/browse/AGIOS) with some steps to reproduce it. \ No newline at end of file +If you found a bug please create a ticket for us on [Jira](https://issues.jboss.org/browse/AGIOS) with some steps to reproduce it. diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m index 98d99ef..ac2905c 100644 --- a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m @@ -52,7 +52,6 @@ static NSString *const FBSDKAppLinkInboundEvent = @"fb_al_inbound"; FBSDKBridgeAPIRequest *_pendingRequest; FBSDKBridgeAPICallbackBlock _pendingRequestCompletionBlock; id _pendingURLOpen; - FBSDKDeferredAppInviteHandler _organicDeeplinkHandler; #endif BOOL _expectingBackground; UIViewController *_safariViewController; @@ -153,10 +152,12 @@ static NSString *const FBSDKAppLinkInboundEvent = @"fb_al_inbound"; queryParameters:sanitizedParams error:nil]; } + // copy the _organicDeeplinkHandler here because it can get cleared in FBSDKOrganicDeeplinkHelper + // so that we avoid bad_exc_access in the dispatch_async below. + FBSDKDeferredAppInviteHandler appInviteHandler = [_organicDeeplinkHandler copy]; + _organicDeeplinkHandler = nil; dispatch_async(dispatch_get_main_queue(), ^{ - // Callback handler for organic deeplinking. - _organicDeeplinkHandler(sanitizedUrl); - _organicDeeplinkHandler = nil; + appInviteHandler(sanitizedUrl); }); return YES; diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h index 63362ff..ff2c41d 100644 --- a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -44,5 +44,5 @@ #import #endif -#define FBSDK_VERSION_STRING @"4.14.0" +#define FBSDK_VERSION_STRING @"4.15.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v2.7" diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m index 1b23901..2ede066 100644 --- a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m @@ -31,7 +31,7 @@ #import "FBSDKInternalUtility.h" #import "FBSDKLogger.h" #import "FBSDKSettings+Internal.h" -#import "FBSDKURLConnection.h" +#import "FBSDKURLSessionTask.h" NSString *const FBSDKNonJSONResponseProperty = @"FACEBOOK_NON_JSON_RESULT"; @@ -76,17 +76,18 @@ typedef NS_ENUM(NSUInteger, FBSDKGraphRequestConnectionState) // Private properties and methods @interface FBSDKGraphRequestConnection () < -FBSDKURLConnectionDelegate +NSURLSessionDataDelegate #if !TARGET_OS_TV , FBSDKGraphErrorRecoveryProcessorDelegate #endif > -@property (nonatomic, retain) FBSDKURLConnection *connection; +@property (nonatomic, strong) NSURLSession *session; +@property (nonatomic, strong) FBSDKURLSessionTask *task; @property (nonatomic, retain) NSMutableArray *requests; -@property (nonatomic) FBSDKGraphRequestConnectionState state; -@property (nonatomic, retain) FBSDKLogger *logger; -@property (nonatomic) unsigned long requestStartTime; +@property (nonatomic, assign) FBSDKGraphRequestConnectionState state; +@property (nonatomic, strong) FBSDKLogger *logger; +@property (nonatomic, assign) unsigned long requestStartTime; @end @@ -117,8 +118,7 @@ FBSDKURLConnectionDelegate - (void)dealloc { - _connection.delegate = nil; - [_connection cancel]; + [_session invalidateAndCancel]; } #pragma mark - Public @@ -163,8 +163,8 @@ FBSDKURLConnectionDelegate - (void)cancel { self.state = kStateCancelled; - [self.connection cancel]; - self.connection = nil; + [self.task cancel]; + [self cleanUpSession]; } - (void)overrideVersionPartWith:(NSString *)version @@ -196,24 +196,22 @@ FBSDKURLConnectionDelegate [self logRequest:request bodyLength:0 bodyLogger:nil attachmentLogger:nil]; _requestStartTime = [FBSDKInternalUtility currentTimeInMilliseconds]; - FBSDKURLConnectionHandler handler = - ^(FBSDKURLConnection *connection, - NSError *error, - NSURLResponse *response, - NSData *responseData) { - [self completeFBSDKURLConnectionWithResponse:response - data:responseData - networkError:error]; + FBSDKURLSessionTaskHandler handler = ^(NSError *error, + NSURLResponse *response, + NSData *responseData) { + [self completeFBSDKURLSessionWithResponse:response + data:responseData + networkError:error]; }; - FBSDKURLConnection *connection = [[FBSDKURLConnection alloc] initWithRequest:request - completionHandler:handler]; - if (_delegateQueue) { - [connection setDelegateQueue:_delegateQueue]; + if (!self.session) { + self.session = [self defaultSession]; } - connection.delegate = self; - self.connection = connection; - [connection start]; + + self.task = [[FBSDKURLSessionTask alloc] initWithRequest:request + fromSession:self.session + completionHandler:handler]; + [self.task start]; id delegate = self.delegate; if ([delegate respondsToSelector:@selector(requestConnectionWillBeginLoading:)]) { @@ -503,9 +501,9 @@ FBSDKURLConnectionDelegate #pragma mark - Private methods (response parsing) -- (void)completeFBSDKURLConnectionWithResponse:(NSURLResponse *)response - data:(NSData *)data - networkError:(NSError *)error +- (void)completeFBSDKURLSessionWithResponse:(NSURLResponse *)response + data:(NSData *)data + networkError:(NSError *)error { if (self.state != kStateCancelled) { NSAssert(self.state == kStateStarted, @@ -526,7 +524,7 @@ FBSDKURLConnectionDelegate if (!error && [response.MIMEType hasPrefix:@"image"]) { error = [FBSDKError errorWithCode:FBSDKGraphRequestNonTextMimeTypeReturnedErrorCode message:@"Response is a non-text MIME type; endpoints that return images and other " - @"binary data should be fetched using NSURLRequest and NSURLConnection"]; + @"binary data should be fetched using NSURLRequest and NSURLSession"]; } else { results = [self parseJSONResponse:data error:&error @@ -560,7 +558,7 @@ FBSDKURLConnectionDelegate [self completeWithResults:results networkError:error]; - self.connection = nil; + [self cleanUpSession]; } // @@ -611,7 +609,7 @@ FBSDKURLConnectionDelegate [results addObject:@{ @"code":@(statusCode), @"body":response - }]; + }]; } else if ([response isKindOfClass:[NSArray class]]) { // response is the array of responses, but the body element of each needs // to be decoded from JSON. @@ -640,7 +638,7 @@ FBSDKURLConnectionDelegate NSDictionary *result = @{ @"code":@(statusCode), @"body":response - }; + }; for (NSUInteger resultIndex = 0, resultCount = self.requests.count; resultIndex < resultCount; ++resultIndex) { [results addObject:result]; @@ -788,7 +786,7 @@ FBSDKURLConnectionDelegate } } #endif - // this is already on the queue since we are currently in the NSURLConnection callback. + // this is already on the queue since we are currently in the NSURLSession callback. finishAndInvokeCompletionHandler(); } @@ -954,27 +952,35 @@ FBSDKURLConnectionDelegate return agent; } -- (void)setConnection:(FBSDKURLConnection *)connection +- (NSURLSession *)defaultSession { - if (_connection != connection) { - _connection.delegate = nil; - _connection = connection; - } + NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration]; + return [NSURLSession sessionWithConfiguration:config + delegate:self + delegateQueue:_delegateQueue]; } -#pragma mark - FBSDKURLConnectionDelegate +- (void)cleanUpSession +{ + [self.session invalidateAndCancel]; + self.session = nil; +} -- (void)facebookURLConnection:(FBSDKURLConnection *)connection - didSendBodyData:(NSInteger)bytesWritten - totalBytesWritten:(NSInteger)totalBytesWritten - totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite { - id delegate = [self delegate]; +#pragma mark - NSURLSessionDataDelegate + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task + didSendBodyData:(int64_t)bytesSent + totalBytesSent:(int64_t)totalBytesSent +totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend +{ + id delegate = self.delegate; if ([delegate respondsToSelector:@selector(requestConnection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:)]) { [delegate requestConnection:self - didSendBodyData:bytesWritten - totalBytesWritten:totalBytesWritten - totalBytesExpectedToWrite:totalBytesExpectedToWrite]; + didSendBodyData:(NSUInteger)bytesSent + totalBytesWritten:(NSUInteger)totalBytesSent + totalBytesExpectedToWrite:(NSUInteger)totalBytesExpectedToSend]; } } diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m index 460ed82..b0b5dbc 100644 --- a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m @@ -51,13 +51,6 @@ SFSafariViewControllerDelegate return NO; } - _safariWindow = [[UIWindow alloc] initWithFrame:[[[[UIApplication sharedApplication] delegate] window] bounds]]; - - _safariWindow.windowLevel = UIWindowLevelNormal - 1; - - _safariWindow.rootViewController = [[UIViewController alloc] init];; - [_safariWindow setHidden:NO]; - _safariViewController = [[SFSafariViewControllerClass alloc] initWithURL: [self constructDeeplinkRetrievalUrl]]; dispatch_async(dispatch_get_main_queue(), ^{ [FBSDKApplicationDelegate sharedInstance].organicDeeplinkHandler = handler; [self presentSafariViewController]; @@ -69,7 +62,6 @@ SFSafariViewControllerDelegate [self cleanUpSafariViewController]; [FBSDKApplicationDelegate sharedInstance].organicDeeplinkHandler = nil; _handler(nil); - } }); }); @@ -79,29 +71,27 @@ SFSafariViewControllerDelegate - (void)presentSafariViewController { + Class SFSafariViewControllerClass = fbsdkdfl_SFSafariViewControllerClass(); + _safariViewController = [[SFSafariViewControllerClass alloc] initWithURL: [self constructDeeplinkRetrievalUrl]]; _safariViewController.view.userInteractionEnabled = NO; - _safariViewController.view.alpha = 0; - [_safariWindow.rootViewController addChildViewController:_safariViewController]; - [_safariWindow.rootViewController.view addSubview:_safariViewController.view]; [_safariViewController performSelector:@selector(setDelegate:) withObject:self]; - [_safariViewController didMoveToParentViewController:_safariWindow.rootViewController]; - _safariViewController.view.frame = CGRectZero; - return; + + _safariWindow = [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, 1, 1)]; + _safariWindow.windowLevel -= 1000; + _safariWindow.rootViewController = _safariViewController; + _safariWindow.hidden = NO; + [_safariWindow makeKeyAndVisible]; } - (void)cleanUpSafariViewController { - if(_safariViewController) + if (_safariViewController) { [_safariViewController performSelector:@selector(setDelegate:) withObject:nil]; - [_safariViewController willMoveToParentViewController:nil]; - [_safariViewController.view removeFromSuperview]; - [_safariViewController removeFromParentViewController]; _safariViewController = nil; _safariWindow.rootViewController = nil; _safariWindow = nil; } - return; } - (NSURL*)constructDeeplinkRetrievalUrl diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m index 8f5e3f5..eb069a3 100644 --- a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m @@ -92,8 +92,9 @@ typedef NS_ENUM(NSUInteger, FBSDKInternalUtilityVersionShift) static NSBundle *bundle; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ - NSString *stringsBundlePath = [[NSBundle mainBundle] pathForResource:@"FacebookSDKStrings" - ofType:@"bundle"]; + NSString *stringsBundlePath = [[NSBundle bundleForClass:[FBSDKApplicationDelegate class]] + pathForResource:@"FacebookSDKStrings" + ofType:@"bundle"]; bundle = [NSBundle bundleWithPath:stringsBundlePath] ?: [NSBundle mainBundle]; }); return bundle; diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.h b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.h new file mode 100644 index 0000000..7389439 --- /dev/null +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.h @@ -0,0 +1,35 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright notice shall be +// included in all copies or substantial portions of the software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +#import + +typedef void (^FBSDKURLSessionTaskHandler)(NSError *error, + NSURLResponse *response, + NSData *responseData); + +@interface FBSDKURLSessionTask : NSObject + +- (FBSDKURLSessionTask *)initWithRequest:(NSURLRequest *)request + fromSession:(NSURLSession *)session + completionHandler:(FBSDKURLSessionTaskHandler)handler +NS_DESIGNATED_INITIALIZER; + +- (void)cancel; +- (void)start; + +@end diff --git a/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.m b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.m new file mode 100644 index 0000000..a6623a1 --- /dev/null +++ b/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.m @@ -0,0 +1,159 @@ +// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. +// +// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +// copy, modify, and distribute this software in source code or binary form for use +// in connection with the web services and APIs provided by Facebook. +// +// As with any software that integrates with the Facebook platform, your use of +// this software is subject to the Facebook Developer Principles and Policies +// [http://developers.facebook.com/policy/]. This copyright notice shall be +// included in all copies or substantial portions of the software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +#import "FBSDKURLSessionTask.h" + +#import "FBSDKInternalUtility.h" +#import "FBSDKLogger.h" +#import "FBSDKMacros.h" +#import "FBSDKSettings.h" + +@interface FBSDKURLSessionTask () + +@property (nonatomic, strong) NSURLSessionTask *task; +@property (nonatomic, copy) FBSDKURLSessionTaskHandler handler; +@property (nonatomic, assign) unsigned long requestStartTime; +@property (nonatomic, assign, readonly) NSUInteger loggerSerialNumber; + +@end + +@implementation FBSDKURLSessionTask + +- (FBSDKURLSessionTask *)initWithRequest:(NSURLRequest *)request + fromSession:(NSURLSession *)session + completionHandler:(FBSDKURLSessionTaskHandler)handler +{ + if ((self = [super init])) { + _requestStartTime = [FBSDKInternalUtility currentTimeInMilliseconds]; + _loggerSerialNumber = [FBSDKLogger generateSerialNumber]; + _handler = [handler copy]; + __weak FBSDKURLSessionTask *weakSelf = self; + _task = [session dataTaskWithRequest:request + completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { + if (error) { + [weakSelf taskDidCompleteWithError:error]; + } else { + [weakSelf taskDidCompleteWithResponse:response data:data]; + } + }]; + } + return self; +} + +- (FBSDKURLSessionTask *)init +{ + FBSDK_NOT_DESIGNATED_INITIALIZER(initWithRequest:fromSession:completionHandler:); + return [self initWithRequest:nil + fromSession:nil + completionHandler:NULL]; +} + +#pragma mark - Logging and Completion + +- (void)logAndInvokeHandler:(FBSDKURLSessionTaskHandler)handler + error:(NSError *)error { + if (error) { + NSString *logEntry = [NSString + stringWithFormat:@"FBSDKURLSessionTask <#%lu>:\n Error: '%@'\n%@\n", + (unsigned long)self.loggerSerialNumber, + [error localizedDescription], + [error userInfo]]; + + [self logMessage:logEntry]; + } + + [self invokeHandler:handler error:error response:nil responseData:nil]; +} + +- (void)logAndInvokeHandler:(FBSDKURLSessionTaskHandler)handler + response:(NSURLResponse *)response + responseData:(NSData *)responseData { + // Basic FBSDKURLSessionTask logging just prints out the URL. FBSDKGraphRequest logging provides more details. + NSString *mimeType = [response MIMEType]; + NSMutableString *mutableLogEntry = [NSMutableString stringWithFormat:@"FBSDKURLSessionTask <#%lu>:\n Duration: %lu msec\nResponse Size: %lu kB\n MIME type: %@\n", + (unsigned long)self.loggerSerialNumber, + [FBSDKInternalUtility currentTimeInMilliseconds] - self.requestStartTime, + (unsigned long)[responseData length] / 1024, + mimeType]; + + if ([mimeType isEqualToString:@"text/javascript"]) { + NSString *responseUTF8 = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; + [mutableLogEntry appendFormat:@" Response:\n%@\n\n", responseUTF8]; + } + + [self logMessage:mutableLogEntry]; + + [self invokeHandler:handler error:nil response:response responseData:responseData]; +} + +- (void)invokeHandler:(FBSDKURLSessionTaskHandler)handler + error:(NSError *)error + response:(NSURLResponse *)response + responseData:(NSData *)responseData { + if (handler != nil) { + dispatch_async(dispatch_get_main_queue(), ^{ + handler(error, response, responseData); + }); + } +} + +- (void)logMessage:(NSString *)message +{ + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorNetworkRequests formatString:@"%@", message]; +} + +- (void)taskDidCompleteWithResponse:(NSURLResponse *)response data:(NSData *)data +{ + @try { + [self logAndInvokeHandler:self.handler response:response responseData:data]; + } @finally { + self.handler = nil; + } +} + +- (void)taskDidCompleteWithError:(NSError *)error +{ + @try { + if ([error.domain isEqualToString:NSURLErrorDomain] && error.code == kCFURLErrorSecureConnectionFailed) { + NSOperatingSystemVersion iOS9Version = { .majorVersion = 9, .minorVersion = 0, .patchVersion = 0 }; + if ([FBSDKInternalUtility isOSRunTimeVersionAtLeast:iOS9Version]) { + [FBSDKLogger singleShotLogEntry:FBSDKLoggingBehaviorDeveloperErrors + logEntry:@"WARNING: FBSDK secure network request failed. Please verify you have configured your " + "app for Application Transport Security compatibility described at https://developers.facebook.com/docs/ios/ios9"]; + } + } + [self logAndInvokeHandler:self.handler error:error]; + } @finally { + self.handler = nil; + } +} + +#pragma mark - Task State + +- (void)start +{ + [self.task resume]; +} + +- (void)cancel +{ + [self.task cancel]; + self.handler = nil; +} + +@end diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings new file mode 100644 index 0000000..5d179e6 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Besoek %@ op jou slimfoon of rekenaar en voer hierdie kode in:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Goed"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Kanselleer"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Goed"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Hou van"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Hou van"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Kanselleer"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Meld af"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Met Facebook aangemeld"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "As %@ aangemeld"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Meld aan"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Meld met Facebook aan"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Meld af"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nuut! Jy is in beheer - kies waater inligting jy met toepassings wil deel."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Meld aan"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Stuur"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Deel"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings new file mode 100644 index 0000000..3ff6cb6 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "زر %@ على هاتفك الذكي أو الكمبيوتر ثم أدخل هذا الرمز:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "موافق"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "إلغاء"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "موافق"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "إعجاب"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "أعجبني"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "إلغاء"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "تسجيل الدخول"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "تسجيل الخروج"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "جديد! أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "تسجيل الدخول"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "إرسال"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "مشاركة"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings new file mode 100644 index 0000000..4b6a444 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "আপনার কম্পিউটার বা স্মার্টফোন থেকে %@ এ যান এবং এই কোডটিকে প্রবেশ করান:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ঠিক আছে"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "বাতিল করুন"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ঠিক আছে"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "পছন্দ করুন"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "পছন্দ করা হয়েছে"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "বাতিল করুন"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "লগ ইন করুন"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "লগ আউট করুন"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "নতুন! আপনি নিয়ন্ত্রণে আছেন-অ্যাপসের সাথে আপনি কোন তথ্য ভাগ করতে চাইছেন তা চয়ন করুন৷"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "লগ ইন করুন"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "পাঠান"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "ভাগ করুন"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings new file mode 100644 index 0000000..acfd8af --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Přejděte ze smartphonu nebo počítače na %@ a zadejte tento kód:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Zrušit"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "To se mi líbí"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Už se mi to líbí"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Zrušit"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Odhlásit"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Přihlásit"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Odhlásit"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novinka! Je jen na vás, které informace chcete s aplikacemi sdílet."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Přihlásit"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Odeslat"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Sdílet"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings new file mode 100644 index 0000000..a697f22 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Gå til %@ på din smartphone eller computer, og indtast denne kode:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annuller"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Synes godt om"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Synes godt om"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annuller"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Log af"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Logget på med Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Logget på som %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Log på"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Log på med Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Log af"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nyhed! Du har styringen – vælg de oplysninger, som du vil dele med apps."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Log på"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Send"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Del"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings new file mode 100644 index 0000000..ccd087a --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Gehe über dein Smartphone oder deinen Computer zu %@ und gib diesen Code ein:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Abbrechen"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gefällt mir"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Gefällt dir"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Abbrechen"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Abmelden"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Über Facebook angemeldet"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Als %@ angemeldet"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Anmelden"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Über Facebook anmelden"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Abmelden"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Neu! Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Anmelden"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Senden"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Teilen"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings new file mode 100644 index 0000000..da50762 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τον ιστότοπο %@ από το smartphone ή τον υπολογιστή σας και πληκτρολογήστε αυτόν τον κωδικό:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Άκυρο"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Μου αρέσει!"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Σας αρέσει"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Άκυρο"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Σύνδεση"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Αποσύνδεση"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Νέο! Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Σύνδεση"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Αποστολή"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Κοινοποίηση"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings new file mode 100644 index 0000000..9a247b3 Binary files /dev/null and b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings differ diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings new file mode 100644 index 0000000..acae15d --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Visit %@ on your smartphone or computer and enter this code:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancel"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Like"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Liked"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancel"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Log out"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Logged in using Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Logged in as %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Log in"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Log in with Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Log out"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "New! You're in control – choose what info you want to share with apps."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Log In"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Send"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Share"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings new file mode 100644 index 0000000..52a5a63 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Visita %@ en tu smartphone o computadora e ingresa este código:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Aceptar"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Aceptar"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Me gusta"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Te gusta"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Cerrar sesión"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Inicio de sesión"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Salir"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "¡Nuevo! Tú tienes el control: elige qué información quieres compartir con las aplicaciones."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Inicio de sesión"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Enviar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Compartir"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings new file mode 100644 index 0000000..c262711 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Visita %@ en tu smartphone u ordenador e introduce este código:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Aceptar"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Aceptar"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Me gusta"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Te gusta"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Salir"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Inicio de sesión"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Salir"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novedad: Tú eres quien controla y elige la información que quieres compartir con las aplicaciones."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Inicio de sesión"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Enviar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Compartir"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings new file mode 100644 index 0000000..04d6898 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ älypuhelimella tai tietokoneella ja anna seuraava koodi:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Peruuta"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Tykkää"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Tykätty"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Peruuta"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Kirjaudu sisään"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Kirjaudu ulos"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Uutta! Sinä päätät – valitse, mitä haluat jakaa sovellusten kanssa."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Kirjaudu sisään"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Lähetä"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Jaa"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings new file mode 100644 index 0000000..24e5a84 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Puntahan ang %@ sa iyong smartphone o computer at ilagay ang code na ito:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Kanselahin"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gustuhin"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Nagustuhan"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Kanselahin"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Mag-log Out"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Mag-log in"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Mag-log out"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Bago! Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Mag-log In"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Ipadala"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Ibahagi"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..4bb7d40 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Rendez-vous sur %@ sur votre smartphone ou votre ordinateur et entrez ce code :"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annuler"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "J’aime"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "J’aime déjà"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annuler"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Déconnexion"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Connexion"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Connexion avec Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Déconnexion"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nouveau ! Choisissez les informations que vous souhaitez partager avec les applications."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Connexion"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Envoyer"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Partager"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings new file mode 100644 index 0000000..1b03754 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "તમારા સ્માર્ટફોન અથવા કમ્પ્યુટર પર %@ ની મુલાકાત લો અને આ કોડ દાખલ કરો:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ઠીક"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "રદ કરો"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ઠીક"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "પસંદ કરો"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "પસંદ કર્યું"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "રદ કરો"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "લૉગ ઇન કરો"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "લૉગ આઉટ કરો"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "નવું! તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "મોકલો"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "શેર કરો"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings new file mode 100644 index 0000000..4601da6 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "בקר ב-%@ בטלפון החכם או במחשב והזן קוד זה:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "אישור"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ביטול"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "אישור"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "אהבתי"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "אהבתי"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ביטול"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "התנתק"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "מחובר בתור %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "התחבר"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "התנתק"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "חדש! אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם האפליקציות."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "התחבר"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "שלח"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "שתף"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings new file mode 100644 index 0000000..5904955 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "अपने स्मार्टफ़ोन या कंप्यूटर पर %@ पर जाएँ और यह कोड डालें:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ठीक"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "रद्द करें"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ठीक"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "पसंद करें"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "पसंद किया"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "रद्द करें"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "लॉग इन करें"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "लॉग आउट"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "नया! आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "लॉग इन करें"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "भेजें"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "साझा करें"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..4b43a21 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Posjetite %@ na pametnom telefonu ili računalu i unesite ovaj kôd:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "U redu"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Odustani"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "U redu"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Sviđa mi se"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Označeno sa "sviđa mi se""; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Odustani"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Odjavi se"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Prijavljen kao %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Prijavi se"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Prijava putem Facebooka"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Odjavi se"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novo! Vi odlučujete – odaberite koje informacije želite podijeliti u aplikacijama."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Prijava"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Pošalji"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Dijeli"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings new file mode 100644 index 0000000..95e776a --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Keresd fel a(z) %@ oldalt a telefonodról vagy számítógépről, és írd be a következő kódot:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Mégsem"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Tetszik"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Kedveled"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Mégsem"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Kijelentkezés"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Bejelentkezés"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Kijelentkezés"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Újdonság! A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Bejelentkezés"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Küldés"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Megosztás"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings new file mode 100644 index 0000000..bd24944 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Buka %@ dari smartphone Anda atau komputer dan masukkan kode ini:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Batal"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Suka"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Disukai"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Batal"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Keluar"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Masuk sebagai %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Masuk"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Keluar"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Baru! Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Masuk"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Kirim"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Berbagi"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings new file mode 100644 index 0000000..fe79a00 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Accedi a %@ nel tuo smartphone o computer e inserisci questo codice:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annulla"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Mi piace"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Ti piace"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annulla"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Esci"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Accedi"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Accedi con Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Esci"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novità! Il controllo è nelle tue mani: scegli quali informazioni condividere con le applicazioni."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Accedi"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Invia"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Condividi"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings new file mode 100644 index 0000000..4bac1fa --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "スマートフォンまたはコンピュータから%@にアクセスし、次のコードを入力してください。"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "キャンセル"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "いいね!"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "いいね!済み"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "キャンセル"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ログアウト"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@としてログイン中"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ログイン"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebookでログイン"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ログアウト"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "新機能!アプリと共有する情報をコントロールできます。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ログイン"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "送信"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "シェア"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings new file mode 100644 index 0000000..87765be --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ಸರಿ"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ಸರಿ"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ಇಷ್ಟವಾಗಿದೆ"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ಇಷ್ಟಪಟ್ಟಿದ್ದಾರೆ"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "ಹೊಸ! ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "ಕಳುಹಿಸಿ"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings new file mode 100644 index 0000000..87f8217 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "스마트폰이나 컴퓨터에서 %@ 주소를 방문하여 다음 코드를 입력하세요."; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "확인"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "취소"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "확인"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "좋아요"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "좋아요"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "취소"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "로그아웃"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "로그인"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook으로 로그인"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "로그아웃"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "새로운 기능! 이제 앱과 어떤 정보를 공유할지 자유롭게 선택할 수 있습니다."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "로그인"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "보내기"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "공유하기"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings new file mode 100644 index 0000000..4cad789 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "നിങ്ങളുടെ സ്‌മാർട്ട്ഫോണിലെ അല്ലെങ്കിൽ കമ്പ്യൂട്ടറിലെ %@ സന്ദർശിച്ച് ഇനിപ്പറയുന്ന കോഡ് നൽകുക:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ശരി"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ശരി"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ലൈക്കുചെയ്യുക"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ലൈക്കുചെയ്‌‌തു"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "പുതിയത്! നിങ്ങൾ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്ലിക്കേഷനുകളുമായി പങ്കിടേണ്ടതുണ്ടെങ്കിൽ തിരഞ്ഞെടുക്കുക."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "അയയ്‌ക്കുക"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "പങ്കിടൂ"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..ad45d34 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "आपला स्‍मार्ट फोन किंवा संगणकावर %@ ला भेट द्या आणि हा कोड प्रविष्‍ट करा:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ठीक"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "रद्द करा"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ठीक"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "आवडले"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "आवडलेले"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "रद्द करा"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "लॉग इन करा"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "लॉग आउट करा"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "नवीन! आपण नियंत्रणात आहात - आपण कोणती माहिती अनुप्रयोगांसह शेअर करू इच्छिता ते निवडा."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "लॉग इन करा"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "पाठवा"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "सामायिक करा"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings new file mode 100644 index 0000000..1c28794 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings @@ -0,0 +1,71 @@ +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Batal"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Suka"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Disukai"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Batal"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Log Keluar"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Log masuk"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Log masuk dengan Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Log keluar"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Baru! Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan aplikasi."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Log Masuk"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Hantar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Kongsi"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings new file mode 100644 index 0000000..5874890 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Gå til %@ på smarttelefonen eller datamaskinen din, og oppgi denne koden:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Avbryt"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Liker"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Likt"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Avbryt"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Logg ut"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Logget inn med Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Logget inn som %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Logg inn"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Logg inn med Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Logg ut"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nyhet! Du bestemmer – velg hvilke opplysninger du vil dele med appene."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Logg inn"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Send"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Del"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings new file mode 100644 index 0000000..dd5f8d9 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Ga op je smartphone of computer naar %@ en voer deze code in:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Annuleren"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Vind ik leuk"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Vind ik leuk"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Annuleren"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Afmelden"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Aangemeld via Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Aangemeld als %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Aanmelden"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Aanmelden met Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Afmelden"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nieuw! Jij hebt de controle. Kies welke informatie je met apps wilt delen."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Aanmelden"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Verzenden"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Delen"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings new file mode 100644 index 0000000..43c1bda --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "ਆਪਣੇ ਸਮਾਰਟਫ਼ੋਨ ਜਾਂ ਕੰਪਿਊਟਰ 'ਤੇ %@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਇਸ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ਠੀਕ"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ਠੀਕ"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ਪਸੰਦ ਕਰੋ"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ਪਸੰਦ ਕੀਤਾ ਗਿਆ"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "ਨਵਾਂ! ਤੁਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "ਭੇਜੋ"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings new file mode 100644 index 0000000..3649717 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Przejdź do %@ na smartfonie lub komputerze i wprowadź ten kod:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Anuluj"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Lubię to!"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Polubione"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Anuluj"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Wyloguj się"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Zalogowano jako %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Zaloguj się"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Wyloguj się"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nowość! Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Zaloguj się"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Wyślij"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Udostępnij"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings new file mode 100644 index 0000000..396bc1d --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Acesse %@ no seu smartphone ou computador e insira este código:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Curtir"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Curtiu"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Sair"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Conectado como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Entrar"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Entrar com o Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Sair"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novidade! Você está no controle - escolha quais informações quer compartilhar com os aplicativos."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Entrar"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Envio"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Compartilhar"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings new file mode 100644 index 0000000..9141a31 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Visita %@ no teu smartphone ou computador e insere este código:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Cancelar"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gosto"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Gostei"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Cancelar"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Terminar sessão"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Iniciar sessão"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Terminar a sessão"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novidade! Tens o controlo: escolhe a informação que pretendes partilhar com as aplicações."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Iniciar sessão"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Enviar"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Partilhar"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings new file mode 100644 index 0000000..41691cf --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Откройте «%@» на своем смартфофне или компьютере и введите этот код:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Отменить"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Нравится"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Понравилось"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Отменить"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Выход"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Вы вошли как %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Вход"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Вход через Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Выход"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Новинка! У вас все под контролем — выбирайте, какой информацией вы хотите поделиться с приложениями."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Вход в систему"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Отправить"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Поделиться"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings new file mode 100644 index 0000000..85c2d47 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Navštívte %@ v smartfóne alebo počítači a zadajte tento kód:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Zrušiť"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Páči sa mi to"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Páči sa mi to"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Zrušiť"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Odhlásiť"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Prihlásený ako %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Prihlásiť sa"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Odhlásiť sa"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Novinka! Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Prihlásenie sa"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Odoslať"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Zdieľať"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings new file mode 100644 index 0000000..b84f5ff --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Besök %@ på din smartphone eller dator och ange den här koden:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Avbryt"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Gilla"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Gillade"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Avbryt"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Logga ut"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Inloggad med Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Inloggad som %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Logga in"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Logga in med Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Logga ut"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Nyhet! Du bestämmer – välj vilken info du vill dela med appar."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Logga in"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Skicka"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Dela"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings new file mode 100644 index 0000000..8838af2 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "உங்கள் ஸ்மார்ட்ஃபோன் அல்லது கணினியில் %@ ஐப் பார்வையிட்டு, பின்வரும் குறியீட்டை உள்ளிடவும்:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "சரி"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ரத்துசெய்"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "சரி"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "விருப்பம்"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "விரும்பப்பட்டது"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ரத்துசெய்"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "வெளியேறு"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "உள்நுழைவு"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "வெளியேறு"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "புதிது! உங்கள் கட்டுப்பாட்டில் இருப்பதால், பயன்பாடுகளுடன் பகிர வேண்டிய தகவலைத் தேர்வுசெய்யவும்."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "உள்நுழைவு"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "அனுப்பு"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "பகிர்"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings new file mode 100644 index 0000000..6dd1dad --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "మీ స్మార్ట్‌ఫోన్ లేదా కంప్యూటర్‌లో %@ సందర్శించి, ఈ కోడ్‌ను నమోదు చేయండి:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "రద్దు చేయి"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ఇష్టంగా గుర్తు పెట్టు"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ఇష్టంగా గుర్తు పెట్టబడింది"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "రద్దు చేయి"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "లాగిన్ చేయి"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "సరికొత్తది! మీకు నియంత్రణ ఉంది - మీరు అప్లికేషన్‌లతో ఏ సమాచారాన్ని భాగస్వామ్యం చేయాలనుకుంటున్నారో ఎంచుకోండి."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "పంపు"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings new file mode 100644 index 0000000..f3661ed --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "ไปที่ %@ ในสมาร์ทโฟนหรือคอมพิวเตอร์ของคุณ แล้วป้อนรหัสนี้:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "ตกลง"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "ยกเลิก"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "ตกลง"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "ถูกใจ"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "ถูกใจแล้ว"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "ยกเลิก"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "เข้าสู่ระบบ"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "ออกจากระบบ"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "ใหม่! คุณเป็นฝ่ายควบคุม โปรดเลือกสิ่งที่คุณต้องการแชร์ด้วยแอพ"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "ส่ง"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "แชร์"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings new file mode 100644 index 0000000..0b5f5e2 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Akıllı telefonunda veya bilgisayarında %@ adresine git ve bu kodu gir:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "Tamam"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "İptal"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "Tamam"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Beğen"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Beğendin"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "İptal"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Çıkış Yap"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Giriş yap"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Facebook ile giriş yap"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Çıkış yap"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Yeni! Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Giriş Yap"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Gönder"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Paylaş"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings new file mode 100644 index 0000000..ad62595 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "Truy cập %@ trên điện thoại thông minh hoặc máy tính và nhập mã sau:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "OK"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "Hủy"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "OK"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "Thích"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "Đã thích"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "Hủy"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "Đăng xuất"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "Đăng nhập"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "Đăng xuất"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "Mới! Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với các ứng dụng."; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "Đăng nhập"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "Gửi"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "Chia sẻ"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings new file mode 100644 index 0000000..c290864 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "请用智能手机或电脑访问 %@,然后输入验证码:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "确定"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "取消"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "确定"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "赞"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "赞了"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "取消"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "退出"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "已使用 Facebook 登录"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "登录"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "使用 Facebook 登录"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "退出"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "新增功能!一切任您掌控 — 选择您想通过应用分享的信息。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "登录"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "发送"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "分享"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings new file mode 100644 index 0000000..5c96cd4 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "在智能手機或電腦前往 %@ 並輸入此代碼:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "確定"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "取消"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "確定"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "讚好"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "已讚好"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "取消"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "登出"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "使用 Facebook 登入"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "以 %@ 身分登入"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "登入"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "使用 Facebook 登入"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "登出"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "最新消息!控制權在您 - 選擇您要與應用程式分享的資訊。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "登入"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "傳送"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "分享"; diff --git a/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings new file mode 100644 index 0000000..fdc02d8 --- /dev/null +++ b/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings @@ -0,0 +1,74 @@ +/* The format string for device login instructions */ +"DeviceLogin.LogInPrompt" = "使用您的智慧型手機或電腦前往 %@,然後輸入此代碼:"; + +/* The title of the label to dismiss the alert when presenting user facing error messages */ +"ErrorRecovery.Alert.OK" = "是"; + +/* The title of the label to decline attempting error recovery */ +"ErrorRecovery.Cancel" = "取消"; + +/* The fallback message to display to recover invalidated tokens */ +"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; + +/* The title of the label to start attempting error recovery */ +"ErrorRecovery.OK" = "是"; + +/* The fallback message to display to retry transient errors */ +"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; + +/* The label for the FBSDKLikeButton when the object is not currently liked. */ +"LikeButton.Like" = "讚"; + +/* The label for the FBSDKLikeButton when the object is currently liked. */ +"LikeButton.Liked" = "說讚"; + +/* The label for the FBSDKLoginButton action sheet to cancel logging out */ +"LoginButton.CancelLogout" = "取消"; + +/* The label for the FBSDKLoginButton action sheet to confirm logging out */ +"LoginButton.ConfirmLogOut" = "登出"; + +/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ +"LoginButton.LoggedIn" = "已使用 Facebook 登入"; + +/* The format string for the FBSDKLoginButton label when the user is logged in */ +"LoginButton.LoggedInAs" = "以 %@ 身分登入"; + +/* The short label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogIn" = "登入"; + +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInLong" = "使用 Facebook 登入"; + +/* The label for the FBSDKLoginButton when the user is currently logged in */ +"LoginButton.LogOut" = "登出"; + +/* The user facing error message when the app slider has been disabled and login fails. */ +"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; + +/* The user facing error message when the Accounts framework encounters a network error. */ +"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; + +/* The user facing error message when the device Facebook account password is incorrect and login fails. */ +"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; + +/* The user facing error message when the device Facebook account is unavailable and login fails. */ +"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ +"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; + +/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ +"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; + +/* The message of the FBSDKLoginTooltipView */ +"LoginTooltip.Message" = "新消息!您已成功登入,請選擇要與應用程式分享的資訊。"; + +/* Title of the web dialog that prompts the user to log in to Facebook. */ +"LoginWeb.LogInTitle" = "登入"; + +/* The label for FBSDKSendButton */ +"SendButton.Send" = "傳送"; + +/* The label for FBSDKShareButton */ +"ShareButton.Share" = "分享"; diff --git a/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m b/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m index b69e32b..fe78c33 100644 --- a/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m +++ b/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m @@ -201,6 +201,8 @@ UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:nil preferredStyle:UIAlertControllerStyleActionSheet]; + alertController.popoverPresentationController.sourceView = self; + alertController.popoverPresentationController.sourceRect = self.bounds; UIAlertAction *cancel = [UIAlertAction actionWithTitle:cancelTitle style:UIAlertActionStyleCancel handler:nil]; diff --git a/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m b/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m index 31bf57c..8880391 100644 --- a/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m +++ b/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m @@ -741,7 +741,7 @@ static NSString *const FBSDKExpectedChallengeKey = @"expected_login_challenge"; [FBSDKInternalUtility bundleForStrings], @"Log In", @"Title of the web dialog that prompts the user to log in to Facebook."); - [FBSDKWebDialog showWithName:@"oauth" parameters:loginParams delegate:self]; + [FBSDKWebDialog showWithName:@"oauth" parameters:parameters delegate:self]; if (handler) { handler(YES, nil); diff --git a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h index 05b26ff..87c8dc5 100644 --- a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h +++ b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h @@ -23,79 +23,63 @@ @protocol FBSDKAppGroupAddDialogDelegate; /*! - @abstract A dialog for creating app groups. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ +__attribute__ ((deprecated)) @interface FBSDKAppGroupAddDialog : NSObject /*! - @abstract Convenience method to build up an app group dialog with content and a delegate. - @param content The content for the app group. - @param delegate The receiver's delegate. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ + (instancetype)showWithContent:(FBSDKAppGroupContent *)content - delegate:(id)delegate; + delegate:(id)delegate __attribute__ ((deprecated)); /*! - @abstract The receiver's delegate or nil if it doesn't have a delegate. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -@property (nonatomic, weak) id delegate; +@property (nonatomic, weak) id delegate __attribute__ ((deprecated)); /*! - @abstract The content for app group. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -@property (nonatomic, copy) FBSDKAppGroupContent *content; +@property (nonatomic, copy) FBSDKAppGroupContent *content __attribute__ ((deprecated)); /*! - @abstract A Boolean value that indicates whether the receiver can initiate an app group dialog. - @discussion May return NO if the appropriate Facebook app is not installed and is required or an access token is - required but not available. This method does not validate the content on the receiver, so this can be checked before - building up the content. - @see validateWithError: - @result YES if the receiver can share, otherwise NO. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (BOOL)canShow; +- (BOOL)canShow __attribute__ ((deprecated)); /*! - @abstract Begins the app group dialog from the receiver. - @result YES if the receiver was able to show the dialog, otherwise NO. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (BOOL)show; +- (BOOL)show __attribute__ ((deprecated)); /*! - @abstract Validates the content on the receiver. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return YES if the content is valid, otherwise NO. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef; +- (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef __attribute__ ((deprecated)); @end /*! - @abstract A delegate for FBSDKAppGroupAddDialog. - @discussion The delegate is notified with the results of the app group request as long as the application has - permissions to receive the information. For example, if the person is not signed into the containing app, the shower - may not be able to distinguish between completion of an app group request and cancellation. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ +__attribute__ ((deprecated)) @protocol FBSDKAppGroupAddDialogDelegate /*! - @abstract Sent to the delegate when the app group request completes without error. - @param appGroupAddDialog The FBSDKAppGroupAddDialog that completed. - @param results The results from the dialog. This may be nil or empty. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didCompleteWithResults:(NSDictionary *)results; +- (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didCompleteWithResults:(NSDictionary *)results __attribute__ ((deprecated)); /*! - @abstract Sent to the delegate when the app group request encounters an error. - @param appGroupAddDialog The FBSDKAppGroupAddDialog that completed. - @param error The error. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didFailWithError:(NSError *)error; +- (void)appGroupAddDialog:(FBSDKAppGroupAddDialog *)appGroupAddDialog didFailWithError:(NSError *)error __attribute__ ((deprecated)); /*! - @abstract Sent to the delegate when the app group dialog is cancelled. - @param appGroupAddDialog The FBSDKAppGroupAddDialog that completed. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (void)appGroupAddDialogDidCancel:(FBSDKAppGroupAddDialog *)appGroupAddDialog; +- (void)appGroupAddDialogDidCancel:(FBSDKAppGroupAddDialog *)appGroupAddDialog __attribute__ ((deprecated)); @end diff --git a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h index 70e4e7a..886eeee 100644 --- a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h +++ b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h @@ -21,79 +21,61 @@ @protocol FBSDKAppGroupJoinDialogDelegate; /*! - @abstract A dialog for joining app groups. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ +__attribute__ ((deprecated)) @interface FBSDKAppGroupJoinDialog : NSObject /*! - @abstract Convenience method to build up an app group dialog with content and a delegate. - @param groupID The ID for the group. - @param delegate The receiver's delegate. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ + (instancetype)showWithGroupID:(NSString *)groupID - delegate:(id)delegate; + delegate:(id)delegate __attribute__ ((deprecated)); /*! - @abstract The receiver's delegate or nil if it doesn't have a delegate. - */ -@property (nonatomic, weak) id delegate; + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ +@property (nonatomic, weak) id delegate __attribute__ ((deprecated)); /*! - @abstract The ID for group. - */ -@property (nonatomic, copy) NSString *groupID; + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ +@property (nonatomic, copy) NSString *groupID __attribute__ ((deprecated)); /*! - @abstract A Boolean value that indicates whether the receiver can initiate an app group dialog. - @discussion May return NO if the appropriate Facebook app is not installed and is required or an access token is - required but not available. This method does not validate the content on the receiver, so this can be checked before - building up the content. - @see validateWithError: - @result YES if the receiver can share, otherwise NO. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (BOOL)canShow; +- (BOOL)canShow __attribute__ ((deprecated)); /*! - @abstract Begins the app group dialog from the receiver. - @result YES if the receiver was able to show the dialog, otherwise NO. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (BOOL)show; +- (BOOL)show __attribute__ ((deprecated)); /*! - @abstract Validates the content on the receiver. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return YES if the content is valid, otherwise NO. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef; +- (BOOL)validateWithError:(NSError *__autoreleasing *)errorRef __attribute__ ((deprecated)); @end /*! - @abstract A delegate for FBSDKAppGroupJoinDialog. - @discussion The delegate is notified with the results of the app group request as long as the application has - permissions to receive the information. For example, if the person is not signed into the containing app, the shower - may not be able to distinguish between completion of an app group request and cancellation. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ +__attribute__ ((deprecated)) @protocol FBSDKAppGroupJoinDialogDelegate /*! - @abstract Sent to the delegate when the app group request completes without error. - @param appGroupJoinDialog The FBSDKAppGroupJoinDialog that completed. - @param results The results from the dialog. This may be nil or empty. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (void)appGroupJoinDialog:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog didCompleteWithResults:(NSDictionary *)results; +- (void)appGroupJoinDialog:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog didCompleteWithResults:(NSDictionary *)results __attribute__ ((deprecated)); /*! - @abstract Sent to the delegate when the app group request encounters an error. - @param appGroupJoinDialog The FBSDKAppGroupJoinDialog that completed. - @param error The error. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (void)appGroupJoinDialog:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog didFailWithError:(NSError *)error; +- (void)appGroupJoinDialog:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog didFailWithError:(NSError *)error __attribute__ ((deprecated)); /*! - @abstract Sent to the delegate when the app group dialog is cancelled. - @param appGroupJoinDialog The FBSDKAppGroupJoinDialog that completed. + @deprecated App and game groups are being deprecated. See https://developers.facebook.com/docs/games/services/game-groups for more information. */ -- (void)appGroupJoinDialogDidCancel:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog; +- (void)appGroupJoinDialogDidCancel:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog __attribute__ ((deprecated)); @end diff --git a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m index 952a5ab..a86ddb9 100644 --- a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m +++ b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m @@ -368,6 +368,7 @@ static NSMutableArray *g_pendingFBSDKShareAPI; if ([errors count]) { [_delegate sharer:self didFailWithError:errors[0]]; } else if ([results count]) { + NSArray *individualPhotoIDs = [results valueForKeyPath:@"id"]; // each photo upload will be merged into the same post, so grab the post_id from the first and use that NSMutableDictionary *shareResults = [[NSMutableDictionary alloc] init]; [FBSDKInternalUtility dictionary:shareResults setObject:FBSDK_SHARE_RESULT_COMPLETION_GESTURE_VALUE_POST @@ -375,6 +376,7 @@ static NSMutableArray *g_pendingFBSDKShareAPI; NSDictionary *firstResult = [FBSDKTypeUtility dictionaryValue:results[0]]; [FBSDKInternalUtility dictionary:shareResults setObject:[FBSDKTypeUtility stringValue:firstResult[@"post_id"]] forKey:FBSDK_SHARE_RESULT_POST_ID_KEY]; + [FBSDKInternalUtility dictionary:shareResults setObject:individualPhotoIDs forKey:FBSDK_SHARE_RESULT_PHOTO_IDS_KEY]; [_delegate sharer:self didCompleteWithResults:shareResults]; } }; diff --git a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m index 2eacca9..53c71b6 100644 --- a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m +++ b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m @@ -188,6 +188,14 @@ FBSDK_STATIC_INLINE void FBSDKShareDialogValidateShareExtensionSchemeRegisteredF NSInteger errorCode = [results[@"error_code"] integerValue]; if (errorCode == 4201) { [self _invokeDelegateDidCancel]; + } else if (errorCode != 0) { + NSError *error = [FBSDKShareError errorWithCode:FBSDKShareUnknownErrorCode + userInfo:@{ + FBSDKGraphRequestErrorGraphErrorCode : @(errorCode) + } + message:results[@"error_message"] + underlyingError:nil]; + [self _handleWebResponseParameters:nil error:error]; } else { // not all web dialogs report cancellation, so assume that the share has completed with no additional information [self _handleWebResponseParameters:results error:nil]; diff --git a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h index 548a432..152a684 100644 --- a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h +++ b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h @@ -25,6 +25,7 @@ #define FBSDK_SHARE_RESULT_COMPLETION_GESTURE_VALUE_CANCEL @"cancel" #define FBSDK_SHARE_RESULT_COMPLETION_GESTURE_VALUE_POST @"post" #define FBSDK_SHARE_RESULT_DID_COMPLETE_KEY @"didComplete" +#define FBSDK_SHARE_RESULT_PHOTO_IDS_KEY @"photo_ids" #define FBSDK_SHARE_RESULT_POST_ID_KEY @"postId" #define FBSDK_SHARE_VIDEO_END_OFFSET @"end_offset" #define FBSDK_SHARE_VIDEO_FILE_CHUNK @"video_file_chunk" diff --git a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m index d0aed03..8979b91 100644 --- a/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m +++ b/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m @@ -213,6 +213,7 @@ [FBSDKInternalUtility dictionary:parameters setObject:linkContent.contentDescription forKey:@"description"]; [FBSDKInternalUtility dictionary:parameters setObject:linkContent.contentURL forKey:@"link"]; [FBSDKInternalUtility dictionary:parameters setObject:linkContent.quote forKey:@"quote"]; + [FBSDKInternalUtility dictionary:parameters setObject:[self hashtagStringFromHashtag:linkContent.hashtag] forKey:@"hashtag"]; [FBSDKInternalUtility dictionary:parameters setObject:linkContent.contentTitle forKey:@"name"]; [FBSDKInternalUtility dictionary:parameters setObject:linkContent.imageURL forKey:@"picture"]; [FBSDKInternalUtility dictionary:parameters setObject:linkContent.ref forKey:@"ref"]; diff --git a/Pods/Firebase/CHANGELOG.md b/Pods/Firebase/CHANGELOG.md index a5eebb4..c95c587 100755 --- a/Pods/Firebase/CHANGELOG.md +++ b/Pods/Firebase/CHANGELOG.md @@ -1,3 +1,6 @@ +# 3.5.0 +* Updates for Firebase/Analytics, Firebase/AppIndexing, Firebase/Auth, Firebase/DynamicLinks, Firebase/Invites, Firebase/Storage. + # 3.4.0 * Updates for Firebase/AdMob, Firebase/Analytics, Firebase/AppIndexing, Firebase/Auth, Firebase/Crash, Firebase/DynamicLinks, Firebase/Invites, Firebase/Messaging, Firebase/RemoteConfig. diff --git a/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/FirebaseAnalytics b/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/FirebaseAnalytics index bd51c9d..e4d82e2 100755 Binary files a/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/FirebaseAnalytics and b/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/FirebaseAnalytics differ diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/FirebaseStorage b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/FirebaseStorage old mode 100644 new mode 100755 similarity index 77% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/FirebaseStorage rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/FirebaseStorage index d416439..b90202b Binary files a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/FirebaseStorage and b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/FirebaseStorage differ diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorage.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorage.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorage.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorage.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h diff --git a/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Modules/module.modulemap b/Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Modules/module.modulemap old mode 100644 new mode 100755 similarity index 100% rename from Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Modules/module.modulemap rename to Pods/FirebaseStorage/Frameworks/frameworks/FirebaseStorage.framework/Modules/module.modulemap diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index c5df36c..17b794b 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -1,7 +1,7 @@ PODS: - - AeroGearHttp (0.6.0) - - AeroGearOAuth2 (0.5.1): - - AeroGearHttp + - AeroGearHttp (0.7.0) + - AeroGearOAuth2 (0.7.0): + - AeroGearHttp (= 0.7.0) - AFNetworking (2.6.3): - AFNetworking/NSURLConnection (= 2.6.3) - AFNetworking/NSURLSession (= 2.6.3) @@ -37,25 +37,25 @@ PODS: - BSImagePicker (2.3.0): - BSGridCollectionViewLayout (~> 1.1) - UIImageViewModeScaleAspect (~> 1.3) - - FBSDKCoreKit (4.14.0): + - FBSDKCoreKit (4.15.0): - Bolts (~> 1.7) - - FBSDKLoginKit (4.14.0): + - FBSDKLoginKit (4.15.0): - FBSDKCoreKit - - FBSDKShareKit (4.14.0): + - FBSDKShareKit (4.15.0): - FBSDKCoreKit - - Firebase (3.4.0): - - Firebase/Core (= 3.4.0) - - Firebase/Analytics (3.4.0): + - Firebase (3.5.2): + - Firebase/Core (= 3.5.2) + - Firebase/Analytics (3.5.2): - FirebaseAnalytics (~> 3.3) - - Firebase/Core (3.4.0): + - Firebase/Core (3.5.2): - Firebase/Analytics - - Firebase/Database (3.4.0): + - Firebase/Database (3.5.2): - Firebase/Analytics - FirebaseDatabase (= 3.0.2) - - Firebase/Storage (3.4.0): + - Firebase/Storage (3.5.2): - Firebase/Analytics - - FirebaseStorage (= 1.0.2) - - FirebaseAnalytics (3.3.0): + - FirebaseStorage (= 1.0.3) + - FirebaseAnalytics (3.3.1): - FirebaseInstanceID (~> 1.0) - GoogleInterchangeUtilities (~> 1.2) - GoogleSymbolUtilities (~> 1.1) @@ -68,8 +68,8 @@ PODS: - FirebaseDatabase (3.0.2): - FirebaseAnalytics (~> 3.2) - FirebaseInstanceID (1.0.8) - - FirebaseStorage (1.0.2): - - FirebaseAnalytics (~> 3.2) + - FirebaseStorage (1.0.3): + - FirebaseAnalytics (~> 3.3) - GoogleNetworkingUtilities (~> 1.2) - GDataXML-HTML (1.3.0) - GoogleInterchangeUtilities (1.2.1): @@ -121,23 +121,23 @@ DEPENDENCIES: - TYMActivityIndicatorView SPEC CHECKSUMS: - AeroGearHttp: e958f301cc2d1c7fbfd4b61af187ea3490040a48 - AeroGearOAuth2: 6f29d3fac8b78a0ff6d51b04c4ba1a02baed2e52 + AeroGearHttp: 4660c8bf5b56cd00a3b75d7c5ecf94774469df5c + AeroGearOAuth2: de4218f60a6228d6cdcf1761277fe8af1115600a AFNetworking: cb8d14a848e831097108418f5d49217339d4eb60 Alamofire: 01a82e2f6c0f860ade35534c8dd88be61bdef40c Alamofire-SwiftyJSON: 5812bb37accc36897cc2f2dabb070d8ebcd7ac98 Bolts: 8a7995239dbe724f9cba2248b766d48b7ebdd322 BSGridCollectionViewLayout: d7304dcb35c6b3b4420c527e9f9b77ff322250f3 BSImagePicker: 591b28ce4994c44cbc4ac896717c1db9f9fadd18 - FBSDKCoreKit: 6e020b5db0b5bd1e01f5fb0902131befd129a502 - FBSDKLoginKit: da563567a108050ef83739c8c8c001ee9e25fa13 - FBSDKShareKit: e8e5d4ccef69b41132fe33acda26db1e33143e33 - Firebase: 754562547af419cc2f4b15247fee419081924bc2 - FirebaseAnalytics: 228be2991cb28efb96cdafc4d62f64680e615c69 + FBSDKCoreKit: 6680cbd33a4243d80700f182d0af36b3fa7f3118 + FBSDKLoginKit: 96d9b70b5784490f02ab86119e542a1f182017a8 + FBSDKShareKit: 06ef20cb2f16828ca4b20055333313dd445de362 + Firebase: 94e63112efcad75226c0356a8f3032397b8547c9 + FirebaseAnalytics: d968d4d5f6aeb795cd64144337bcd233e530efc6 FirebaseAuth: 26fd291c3b552fc9658420b867520d5ae080421c FirebaseDatabase: 59bea2e7dfd81b3b8b2f8e396caf1a52c2ced6f7 FirebaseInstanceID: ba1e640935235e5fac39dfa816fe7660e72e1a8a - FirebaseStorage: fa2a87dee81f682f553af6839daa37a750e65f6a + FirebaseStorage: 3992817bf405f5c1a4f8349678d22724cd0ef509 GDataXML-HTML: 7adc03668cab35c288f1dbb8929a179f0fece898 GoogleInterchangeUtilities: def8415a862effc67d549d5b5b0b9c7a2f97d4de GoogleNetworkingUtilities: 3e83269048cfb498dc7ec83ab36813360965c74f diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 458f62f..82f12e3 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -7,643 +7,653 @@ objects = { /* Begin PBXBuildFile section */ - 0013F6DE7E2247675FA8325C0AB555B1 /* PicoConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 81098AB9B6F098FF1D8D11E982676637 /* PicoConverter.m */; }; - 007E3BF0BF2A2854408ACF7433E709E8 /* FBSDKSendButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA72A1074E7109FC13F485003BC05BB /* FBSDKSendButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 020A65A3E154C0B31D1B0351BD8FFEDA /* FBSDKShareOpenGraphAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA877959747A4B4F9B66EEBDD2A82C0 /* FBSDKShareOpenGraphAction.m */; }; - 020FAA49E54F3DFA0D24A2D4508306BD /* BSImagePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92259F25DCE2BF1611B75E4F4840AB5D /* BSImagePicker-dummy.m */; }; - 0222085A44991F96092B78FB418268B5 /* GDataXMLNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D806C1208A915E669BD4FBC2B95D419 /* GDataXMLNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 0276287E0E8F78A9E56AB05E8DCD3DE1 /* FBSDKAppGroupAddDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8054E3A2BF18C9FE46CAB71B66CE10 /* FBSDKAppGroupAddDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 031C63FA655859684EA74B3087EAD27E /* SWRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D1EC6AEDA20BD0303DE7A08B08C8E8D /* SWRevealViewController.m */; }; - 0339052284A47A46E7821D754BB990DF /* FBSDKLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA9672FE60ACFA6FD39010D2AA9CF225 /* FBSDKLoginManager.m */; }; - 0354AFAE7420F7E18D47C9E19BB5F0AE /* FBSDKGraphRequestConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9C8E01DB21AAF105C10CF909B18718 /* FBSDKGraphRequestConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 03E71DCD3453CC52D1503B92195F5091 /* FBSDKAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C62ACDBAC74EBED7CA84A6A12227C6 /* FBSDKAppLinkResolver.m */; }; - 04C3A0DB3D6632E53AF7FE845B45A3CD /* FBSDKAppLinkUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 815884EE68A2843EE9E92A62361D5865 /* FBSDKAppLinkUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0013F6DE7E2247675FA8325C0AB555B1 /* PicoConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB7A54EDE273540D0671EA9494F3CA3 /* PicoConverter.m */; }; + 007E3BF0BF2A2854408ACF7433E709E8 /* FBSDKSendButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 789CF77B11315E865591B1C8716C5185 /* FBSDKSendButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 020A65A3E154C0B31D1B0351BD8FFEDA /* FBSDKShareOpenGraphAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 36CFB57F844C32DC09E88FD38B91FE79 /* FBSDKShareOpenGraphAction.m */; }; + 020FAA49E54F3DFA0D24A2D4508306BD /* BSImagePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 00468CA987B4A935546FE35CE63FFAF8 /* BSImagePicker-dummy.m */; }; + 0222085A44991F96092B78FB418268B5 /* GDataXMLNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EA1AFF043613265D9F78F0459EF3FAF /* GDataXMLNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 0276287E0E8F78A9E56AB05E8DCD3DE1 /* FBSDKAppGroupAddDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 222786A8195A4F04A0E8FAD833693FAE /* FBSDKAppGroupAddDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02C58742E0F06B89E19397112C03CF62 /* FBSDKCloseIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 9320BD712B8706C4EC8799699AC29632 /* FBSDKCloseIcon.m */; }; + 031C63FA655859684EA74B3087EAD27E /* SWRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C3613BA3E4B68EE856BC2785609C2F23 /* SWRevealViewController.m */; }; + 032A768D9CE16A071DE9EB6636E06C5E /* FBSDKGraphRequestDataAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D698628237BFA603EB974416673161F /* FBSDKGraphRequestDataAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0339052284A47A46E7821D754BB990DF /* FBSDKLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E656711F617BB7DBCD7C70BDFEC8A85 /* FBSDKLoginManager.m */; }; + 03ABE7B2848925BD128E27C3D1387301 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA9A8895176C3EF88781F3D858D64B85 /* FBSDKGraphErrorRecoveryProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05838119F45D43092FAB71F0E0CBCA28 /* FBSDKLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C1EE52701EF5123B696725EB3225F45 /* FBSDKLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05A44D5EA4323E675B7335D56AA64EE3 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A04452A724860D85F3FC806E0147F14 /* Alamofire.framework */; }; - 05C70BF173BBB3BFB8572269DD13AD50 /* SOAP12Detail.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4B59D684FDB8F3B584C240E622C58A /* SOAP12Detail.m */; }; - 05FB221AC2755579479BBCD40E251230 /* FBSDKLikeBoxBorderView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC26E8E3D7351E9DE44685C51F98DFD0 /* FBSDKLikeBoxBorderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0619608E3A27C40EF5E457083D82E018 /* AlamofireSwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2D0820C1A666D1E9B32168829B4DBA8 /* AlamofireSwiftyJSON.swift */; }; - 06808CCA8955675A9104F4B730FFFEFD /* OrderedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 98E829CCA52F80AB06FB40F9BB42D357 /* OrderedDictionary.m */; }; - 0691210EC4FFD58AE2E28EC918813988 /* OAuthSwiftURLHandlerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 921ABC778785955368CEA89269359BE6 /* OAuthSwiftURLHandlerType.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 06A4A4AF7AFC580A244A78B2C7999E94 /* FBSDKLikeActionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE8840CF0E2F288EB9C4341DA8885F1 /* FBSDKLikeActionController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06B3CC660A3B863A48757A30E5343758 /* FBSDKGraphRequestBody.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB68B5A119AFA8929C94D2CB9AD2A37 /* FBSDKGraphRequestBody.m */; }; + 05C70BF173BBB3BFB8572269DD13AD50 /* SOAP12Detail.m in Sources */ = {isa = PBXBuildFile; fileRef = 246004C7A6D6DA56AB48D9BF34A7F38E /* SOAP12Detail.m */; }; + 05FB221AC2755579479BBCD40E251230 /* FBSDKLikeBoxBorderView.h in Headers */ = {isa = PBXBuildFile; fileRef = BF21317F4F66C9CD4DA546CAC8C7EE0A /* FBSDKLikeBoxBorderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0619608E3A27C40EF5E457083D82E018 /* AlamofireSwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C58A199006B6266127537CAAE03D48 /* AlamofireSwiftyJSON.swift */; }; + 06808CCA8955675A9104F4B730FFFEFD /* OrderedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C8C20C04F3D69D0A0DF14A070FD5FC /* OrderedDictionary.m */; }; + 0691210EC4FFD58AE2E28EC918813988 /* OAuthSwiftURLHandlerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 731A2EE1C4D3A53E178B7C8321B6CCC6 /* OAuthSwiftURLHandlerType.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 06A4A4AF7AFC580A244A78B2C7999E94 /* FBSDKLikeActionController.h in Headers */ = {isa = PBXBuildFile; fileRef = AE953CCFE9328E35F6ABC8000A3F5A27 /* FBSDKLikeActionController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07499EF9512559F0D0DAB19855FCB45D /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */; }; - 081A50535FCDF50D0118223459790167 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FA186481586667CF25E85D337A85871 /* UIImageView+AFNetworking.m */; }; + 07AE3DDD7B4F45601000B8970770D159 /* FBSDKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB6B3AD923015C03A808EEBC5CF36BB /* FBSDKInternalUtility.m */; }; + 081A50535FCDF50D0118223459790167 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CC65ABCB92FAE827654261608EEAC43 /* UIImageView+AFNetworking.m */; }; 08290E6145C64072DFB0801316DE392D /* Pods-Vendoo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35773BF3F8D35D8635CE8E04D3381269 /* Pods-Vendoo-dummy.m */; }; - 08AFAB53FBB4A259D10CB27EC5CFE83E /* GDataXMLNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA6D2F389AF14019E8BA74FF2690A20 /* GDataXMLNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08C57BA7C4611C12262FD7D63BEE8C1E /* FBSDKErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 658C82613C9FB905AB99A1A9CF2F6372 /* FBSDKErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08DAC2F4AEE5BBA86F713F32A79E24AF /* FBSDKLoginUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 4632B5EF96567E5690D2872ED18DB524 /* FBSDKLoginUtility.m */; }; + 08AFAB53FBB4A259D10CB27EC5CFE83E /* GDataXMLNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A77BD1D2225DD7010930169495194FF /* GDataXMLNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08DAC2F4AEE5BBA86F713F32A79E24AF /* FBSDKLoginUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A4641E3199B72C05B4D415AAFE43ABB /* FBSDKLoginUtility.m */; }; 08DF92C398441AD329AE3D30BD424F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; 0940D840A3055E3A6C3A1D9BCD8480C3 /* Pods-Vendoo-VendooUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8A9F7077071AC139E54B95C669CBE2 /* Pods-Vendoo-VendooUITests-dummy.m */; }; - 095406039B4D371E48D08B38A2975AC8 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02F16D93F7CBC4DDFC72FC03A0E42E82 /* Error.swift */; }; - 096FB1973BA9EC2D4C1D8DF698133F1D /* OAuthSwiftClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0A045B230B8CCD0523F87D3DEF8C9F /* OAuthSwiftClient.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 09CA89656321616AB2CF649279B400C1 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D5D774BFB590DE4A8D8308CA4249E6 /* FBSDKGraphErrorRecoveryProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A7D3F6374E8E2B7E8CB9B2D3E83A83A /* FBSDKBridgeAPIProtocolWebV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C630A21B0B22B553420BCFFF34A307 /* FBSDKBridgeAPIProtocolWebV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A8703E4AF0023F131B79866B4B705D4 /* FBSDKBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = CA18F7E3B63386B99BC27FE3891447FB /* FBSDKBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 095406039B4D371E48D08B38A2975AC8 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEAE931D349272ECB605283D3BD15A6C /* Error.swift */; }; + 096FB1973BA9EC2D4C1D8DF698133F1D /* OAuthSwiftClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = E648B93ACAABAB4D3D74E457174B1977 /* OAuthSwiftClient.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 0A9A3F9CCE438996942DA3B5A067BD01 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 0AAEA700978D1406CFC13FFEF8E72BB4 /* FBSDKMessengerIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7505206E90180002A81B093D8205B7 /* FBSDKMessengerIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE1D7C5C2AE6ACE895F6B267FC9DA7F /* CameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F48974850CDE3FAA87DE439C405E05D /* CameraCell.swift */; }; - 0B74B022BF109C2753A56CD082E10C61 /* FBSDKAccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA69F359686D0DF13E8908891278F2B /* FBSDKAccessToken.m */; }; - 0B8052279201BD94A1829862BFC57B2B /* FBSDKShareOpenGraphValueContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C5AC4A40579BDC28AF236C903221A5 /* FBSDKShareOpenGraphValueContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BC8CA9D876F0078A71FA6DA7E96B4F5 /* add_photo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F74C14BEF6DB17CD8EF940C4A4EEAC0F /* add_photo@2x.png */; }; - 0BDC4DAA1B69B3349079C5432DE9AB58 /* FBSDKWebDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 14D5C9BBF76C567DFE57F34DBDE0602A /* FBSDKWebDialog.m */; }; - 0C11E95A97B2D6541603C23A850EC4EF /* FBSDKShareButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 330B9B5C67D0B9BB12D7824AD0EF8750 /* FBSDKShareButton.m */; }; - 0D79E48F5B7F8FCAC2E90DBBCE5FA98F /* FBSDKKeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5763164C84BA1444CC801F972E189C0A /* FBSDKKeychainStore.m */; }; - 0D94C1A9F08091042D4566C5C7C5F88C /* SOAP11Detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6284E8F6E616899222D07D6E94CFA6 /* SOAP11Detail.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D9C01E9CFFF23D0BD3C3B9A73D48C16 /* FBSDKMessengerIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = C30A2644F497757FCC7E6FEEC1B99F65 /* FBSDKMessengerIcon.m */; }; - 0EEF80A8836783073DB22A229E6DA59E /* FBSDKLikeActionControllerCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FF99E2896CF92A099F5543EE4C8D6F /* FBSDKLikeActionControllerCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F1C84A2FE906A408036822AA11DE763 /* ZoomAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CE70F7EC79F8127B634681942B5E63 /* ZoomAnimator.swift */; }; - 0F25B917DA657DAC351C4AA787B5FB6A /* PicoPropertySchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6C01EF3CFD2A471E161F4785915A2C /* PicoPropertySchema.m */; }; - 0F6FD8711C8484D95F5B586274678491 /* FBSDKAccessTokenCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7827DFEA640657B36BF25F407DE23F /* FBSDKAccessTokenCaching.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F7824F41301AFB6FAB5725D85BB111A /* FBSDKBridgeAPICrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCA5879C89062A06F6669EEC7EE9423 /* FBSDKBridgeAPICrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FB1CE9AB76B77BEFC2F5DD025EB6032 /* FBSDKLoginUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CB1CDBD0B28BB95D1442933494F779 /* FBSDKLoginUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FED72D02DF25255150B8301A353949A /* FBSDKAudioResourceLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 40860CE4791C20738F3B29A2D545328F /* FBSDKAudioResourceLoader.m */; }; - 10113E207516DDCAC19E3B2FED7E12C4 /* LocksmithError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F388A6999ED21F6E0CDA986059254761 /* LocksmithError.swift */; }; - 1110C890C028A60D617B28184DFF9968 /* FBSDKLikeBoxBorderView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D4D60E118BCEA00D0A4FEB5BAEC77F /* FBSDKLikeBoxBorderView.m */; }; - 11D89502D964832FC217751339F7E7EF /* FBSDKShareOpenGraphValueContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EF195E634F9163762F5DC62B9188FBD /* FBSDKShareOpenGraphValueContainer.m */; }; - 1200A152A08388893BFA023980C2CF48 /* FBSDKLoginManagerLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F027A34F37FC5B1E04DA0CDAEEA3F90 /* FBSDKLoginManagerLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 127CB1D3B204EE69ADA315CE2626BA2E /* PicoSOAPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F144E0ADE3648A5D32EFCA69C0B7234E /* PicoSOAPRequestOperation.m */; }; - 1360C072C79DBA6E4B292B7A05B73ACB /* FBSDKAppGroupJoinDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = BC651BA0CE2DD998966FD25782EDCD2A /* FBSDKAppGroupJoinDialog.m */; }; - 1389748BE24F9D2223187CB20D9A020C /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AE1DAC81DA71B7B0830E680E6E181BC /* AFURLRequestSerialization.m */; }; - 139FE4B378AF69FD65DF73C921B131AD /* BFCancellationToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F3656113C4722F5334A57E106D278299 /* BFCancellationToken.m */; }; - 13EB929F72B356FC41F08CCF85D5D0C1 /* Locksmith-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 361326F6C653527F508CB94E067782E3 /* Locksmith-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1434A073055312B7CE4FB95A1605C0A5 /* FBSDKTimeSpentData.m in Sources */ = {isa = PBXBuildFile; fileRef = C852408AFC2802B823BA4A17ADF80B1B /* FBSDKTimeSpentData.m */; }; - 1466EF30D00D1177D0DE725B8D61C061 /* FBSDKURLOpening.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC826F2E70996C9AE87B96D3211DA29 /* FBSDKURLOpening.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1495BCB330D338CEF2E39D10082B941C /* LocksmithAccessibleOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A2836FC6242D140DE7679038EA30E7 /* LocksmithAccessibleOption.swift */; }; - 14CCB9B9C95EBBD456D7E4EABD82E0BF /* FBSDKLoginCompletion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4ED8D0A31D91EFC609099F382FA31B /* FBSDKLoginCompletion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15157568822DD94ED8A8F3A24BCF47C0 /* FBSDKAccessTokenCacheV3_17.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F84E0250821081E5D6E4D529F79671F /* FBSDKAccessTokenCacheV3_17.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156E7E46571EB8762B7507B951FC499B /* FBSDKProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 822D72BA8B1F86602793321A425FE83A /* FBSDKProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1584E5A5BBCA3AA6E1ECD1E2C95D9830 /* SOAP11Fault.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3AE43A409680DFB7DA272E5663295F /* SOAP11Fault.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 15EDAC05EB1C7ADBF13CDE7ECEB68CF7 /* FBSDKLikeButton+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED3CE884BE63449A8C1FCAD839407AB /* FBSDKLikeButton+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16102E4E35FAA0FC4161282FECE56469 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E9E12C665A69B68F3CF98C3E7E2289C /* Timeline.swift */; }; - 17CBE972A85353EEC58B6CC0DBA34648 /* SOAP12NotUnderstoodType.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D5F633C3BA9C080CCE39DFDEC7F5F2 /* SOAP12NotUnderstoodType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 180BFD5C4CF58060C6E4673D16922EF9 /* FBSDKGameRequestContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5595F78F1E2E6FCCD38460CBE7987096 /* FBSDKGameRequestContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 183F3F433680B1AC95B7836E17DCFC99 /* FacebookOAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51B5750BB15F67ED3A8ED2357279441 /* FacebookOAuth2Module.swift */; }; - 185EEB501ACB365FFF762EED05F47DA7 /* PicoCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C76755FC326B96C91E3B9227D2F4AF6F /* PicoCache.m */; }; - 1877520854C1B04C797C8FD94308AB48 /* FBSDKDynamicFrameworkLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B62A5569FC7D6F49DDF2E9EE5A048EB3 /* FBSDKDynamicFrameworkLoader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 188A670E26DA49268A133953AF0BF038 /* FBSDKShareOpenGraphValueContainer+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEC32AA1EFCCD3D9FE925C92ADA221E /* FBSDKShareOpenGraphValueContainer+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A15E1DAB1BF63371AE5ADFAED9169E5 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 1864F630CE031BF44EDE61E5DF26ECCD /* UIRefreshControl+AFNetworking.m */; }; - 1A1DBDBFC387F891086033E7C529931C /* FBSDKCheckmarkIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 82CAB572E7F231888D8E94DCD2A61FF5 /* FBSDKCheckmarkIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A41AA1660DA17FD9EEE7CC544D1C0A4 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA8F245D01102A52F45777264C584FA /* _FBSDKTemporaryErrorRecoveryAttempter.m */; }; - 1C12F2E4F1172545BB500BE11DC82D2C /* OAuth2Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CB5F994A6A4BCEA588CB83296658340 /* OAuth2Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1C33FD78005932356FF3E937998CBCC5 /* BSGridCollectionViewLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D9F9416BF5E8231542F184A97B97CE3 /* BSGridCollectionViewLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C384C9C00881F5B98D441807AA11D67 /* PicoConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE080E43FE64694DEB0DE294C12D829 /* PicoConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C5CA0323B22B50689F6252B44A93D80 /* JsonResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AABACEDD73398DA40B1435947C6ABC59 /* JsonResponseSerializer.swift */; }; - 1CE5848A3307E495D6DFD6390CCB886E /* PicoConvertable.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C12F6034F46AAC8A4681C7FF33414B /* PicoConvertable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1CF8B8AD6CAA603A95B2C395AB4057B6 /* FBSDKIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 6564D6E0C0B299EF82715CA242A8DB02 /* FBSDKIcon.m */; }; + 0AAEA700978D1406CFC13FFEF8E72BB4 /* FBSDKMessengerIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 59593E4991A2A6E7B5CFE638F58BD27B /* FBSDKMessengerIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE1D7C5C2AE6ACE895F6B267FC9DA7F /* CameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 820B0DB39D19E191C1E0FDD1EF8E3DA7 /* CameraCell.swift */; }; + 0B328FC5EF9E71F19E715466C68EE8AE /* FBSDKAppLinkUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 0218CA0C9863F7D010FD6F8827528123 /* FBSDKAppLinkUtility.m */; }; + 0B8052279201BD94A1829862BFC57B2B /* FBSDKShareOpenGraphValueContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ABF9CCA29758F5A351EA141EA10084A4 /* FBSDKShareOpenGraphValueContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BC8CA9D876F0078A71FA6DA7E96B4F5 /* add_photo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C6B46653AB8FD4971EEE917C82A106DD /* add_photo@2x.png */; }; + 0C11E95A97B2D6541603C23A850EC4EF /* FBSDKShareButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8475EDFA88678CDE8BB5836A276C57E7 /* FBSDKShareButton.m */; }; + 0D94C1A9F08091042D4566C5C7C5F88C /* SOAP11Detail.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB16FF346A0151CC019D3643A9AA82F /* SOAP11Detail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0D9C01E9CFFF23D0BD3C3B9A73D48C16 /* FBSDKMessengerIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 553891046D53593D9944607098F2E819 /* FBSDKMessengerIcon.m */; }; + 0EEF80A8836783073DB22A229E6DA59E /* FBSDKLikeActionControllerCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E4FD839F822DC10E214ECDB29D8728A /* FBSDKLikeActionControllerCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F1C84A2FE906A408036822AA11DE763 /* ZoomAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6F86FA5BB0599052D48F1E63F5A771 /* ZoomAnimator.swift */; }; + 0F25B917DA657DAC351C4AA787B5FB6A /* PicoPropertySchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D2EA275E320DE2D01B082C95227C586 /* PicoPropertySchema.m */; }; + 0FB1CE9AB76B77BEFC2F5DD025EB6032 /* FBSDKLoginUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FDA1A8DDB91255E08458CC4E262BFA /* FBSDKLoginUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10113E207516DDCAC19E3B2FED7E12C4 /* LocksmithError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2427B6BCA76A9BCB44CB5BA6D9D8DCD4 /* LocksmithError.swift */; }; + 1110C890C028A60D617B28184DFF9968 /* FBSDKLikeBoxBorderView.m in Sources */ = {isa = PBXBuildFile; fileRef = A818209969772B5723B73894950CC419 /* FBSDKLikeBoxBorderView.m */; }; + 11D89502D964832FC217751339F7E7EF /* FBSDKShareOpenGraphValueContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BBD41CC7E7BD8BBFB53C61E172181F5 /* FBSDKShareOpenGraphValueContainer.m */; }; + 1200A152A08388893BFA023980C2CF48 /* FBSDKLoginManagerLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA138DE081CDD324D5B069BC604820B /* FBSDKLoginManagerLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127CB1D3B204EE69ADA315CE2626BA2E /* PicoSOAPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7BF92D087D22B6914FD55420F90DC0 /* PicoSOAPRequestOperation.m */; }; + 1307025603A8C5E7C1EFE1E6A5BF8914 /* FBSDKErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8018977B3C1F04CE3BDC19BEB81B82C6 /* FBSDKErrorRecoveryAttempter.m */; }; + 1320D3F0D3A5BBD38DF0A42ED0743CDF /* FBSDKAppEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = E9483FCBACBE349F26CF9EBE5F468185 /* FBSDKAppEvents.m */; }; + 1360C072C79DBA6E4B292B7A05B73ACB /* FBSDKAppGroupJoinDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC5DA418AF6E726D934E346D01837AD /* FBSDKAppGroupJoinDialog.m */; }; + 1389748BE24F9D2223187CB20D9A020C /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 147CE037744629278068612DD0F635D0 /* AFURLRequestSerialization.m */; }; + 139FE4B378AF69FD65DF73C921B131AD /* BFCancellationToken.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CBA7AA79683731F8CC494DFD1E0B15 /* BFCancellationToken.m */; }; + 13D6DE08DF985F6094A23EE5D804928A /* FBSDKBridgeAPIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 15677136DF7E3125FEC2A04639DA1912 /* FBSDKBridgeAPIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13EB929F72B356FC41F08CCF85D5D0C1 /* Locksmith-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 86626845F9BFD19AA0B7EFB46AB4F4E0 /* Locksmith-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1425B382B4BCB6CD7AB6D31EA1C7332F /* FBSDKCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = A59BEDA24AE7C8E45214B408A39382A2 /* FBSDKCrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1495BCB330D338CEF2E39D10082B941C /* LocksmithAccessibleOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5FC279D566BA86BBC95DA7DCDE7E3A /* LocksmithAccessibleOption.swift */; }; + 14AD623AB64850B09A59DFA3EA9539A0 /* FBSDKApplicationDelegate+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B486C905117C6A5B535EF58FF260ACD /* FBSDKApplicationDelegate+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14CCB9B9C95EBBD456D7E4EABD82E0BF /* FBSDKLoginCompletion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 16B2704B24E0E5F19E35200C55FEBDF3 /* FBSDKLoginCompletion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15572CA29BED0A8AC7B272204E9B3ACC /* FBSDKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA04D75E2B14D1BA18D2AB8BE3771DA /* FBSDKColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1584E5A5BBCA3AA6E1ECD1E2C95D9830 /* SOAP11Fault.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F07E6952EB0163416EFF3FEFDAE2D4D /* SOAP11Fault.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 159EE1B54032138A5981201F706BE73E /* FBSDKProfile+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 535B0E61174AA7836FDF1CCAEB7A9C97 /* FBSDKProfile+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15C5E56BDBC01EFA13FE6B76ACA31C58 /* FBSDKBridgeAPICrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 08B04DD27056BC2367665B1F2FDDB4F1 /* FBSDKBridgeAPICrypto.m */; }; + 15EDAC05EB1C7ADBF13CDE7ECEB68CF7 /* FBSDKLikeButton+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD0E71A21297C08D0DFD37986B541A1 /* FBSDKLikeButton+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16102E4E35FAA0FC4161282FECE56469 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = B087091BEB52E26D24E7CCA32EADB036 /* Timeline.swift */; }; + 17CBE972A85353EEC58B6CC0DBA34648 /* SOAP12NotUnderstoodType.h in Headers */ = {isa = PBXBuildFile; fileRef = 078AE6D25BDE890AECD4ADDEBC3676A0 /* SOAP12NotUnderstoodType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 180BFD5C4CF58060C6E4673D16922EF9 /* FBSDKGameRequestContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C8F74DF0DFBD8B226B4F6E48960871 /* FBSDKGameRequestContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 183F3F433680B1AC95B7836E17DCFC99 /* FacebookOAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46E7E9E32998D00357966E21E642B796 /* FacebookOAuth2Module.swift */; }; + 185EEB501ACB365FFF762EED05F47DA7 /* PicoCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1A3946D19638239E5F703F648C5725 /* PicoCache.m */; }; + 188A670E26DA49268A133953AF0BF038 /* FBSDKShareOpenGraphValueContainer+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA9CC7A480C394DEC76D2D6110B7522 /* FBSDKShareOpenGraphValueContainer+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A15E1DAB1BF63371AE5ADFAED9169E5 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F63CCFF81CB30145039051F9D7FD91EE /* UIRefreshControl+AFNetworking.m */; }; + 1A1DBDBFC387F891086033E7C529931C /* FBSDKCheckmarkIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = A24055E115FEA2D7C81055FDB1E885FE /* FBSDKCheckmarkIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C12F2E4F1172545BB500BE11DC82D2C /* OAuth2Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 509467BE41DEAA3A3523C77C1491C0E0 /* OAuth2Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1C33FD78005932356FF3E937998CBCC5 /* BSGridCollectionViewLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2548479331D978B9E023B5CE82D85237 /* BSGridCollectionViewLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C384C9C00881F5B98D441807AA11D67 /* PicoConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E9378D60B58BF3402760A161B45FEB /* PicoConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C5CA0323B22B50689F6252B44A93D80 /* JsonResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E750719C957EB24FD6106917FEFDE0 /* JsonResponseSerializer.swift */; }; + 1C65770ACE4BCBF7B6C16A5E1C51263B /* FBSDKBridgeAPIProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DE57BDBD67A46A2F168AD0E7AAD216A9 /* FBSDKBridgeAPIProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C761FA7FEBBEC35842CC6962A0D654C /* FBSDKAppEvents+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8ED72AA2B452CB59E8968B7727DFD4 /* FBSDKAppEvents+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE5848A3307E495D6DFD6390CCB886E /* PicoConvertable.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9EF4AF477D693E529BAFADAAC98B64 /* PicoConvertable.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1D289D03369E7C05652B06DBA8CC3860 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 1D716404A2353ADA0326C44132D1EFD9 /* FBSDKAppEventsStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C023CAB4F2364653FE94AE7D7989C9 /* FBSDKAppEventsStateManager.m */; }; - 1DCFCA14CBF89C36D853B87417E126E6 /* BFCancellationTokenSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 521428FAB97E69066F88237BE8C4AE9B /* BFCancellationTokenSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EA06503C7AF1CA5E13950E3E7D7830E /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C40DAE14029892B289A8FE01392AA863 /* AFNetworkActivityIndicatorManager.m */; }; - 1FFE8A6DDCA9246D3EA98372EAD63780 /* UIImageViewModeScaleAspect-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AEECAD598F614CB0F93432ADB80E8005 /* UIImageViewModeScaleAspect-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 23772EC6E0C5B91318B4350D87BDCE6B /* FBSDKGraphRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = BF4ABFB3666982C4726ADDAC9255BAAE /* FBSDKGraphRequest.m */; }; - 242E73B2F0842E1CF5348D2BC765DE8A /* FBSDKGraphRequestDataAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3CC35EBB907779C52E2BA419C652C7 /* FBSDKGraphRequestDataAttachment.m */; }; - 24600483CE2FB9BBDED179CCC892F3F8 /* BFExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 83046507F9437DD39784307FE629DB93 /* BFExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D2A35FF41EBE49D92C2FF5B573D54A4 /* FBSDKURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = B700A8FD23BF35334DACAFB707549E0E /* FBSDKURLConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DCFCA14CBF89C36D853B87417E126E6 /* BFCancellationTokenSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8AD74661343DEB3D6E25E4B6B39FD0 /* BFCancellationTokenSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1E01B6FB3EADDAC7C44EC21B9772970B /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 42165CF2948E0217FDC0DFC98AAFE89D /* _FBSDKTemporaryErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EA06503C7AF1CA5E13950E3E7D7830E /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 412237501A6CBE5F0ACED5A3A4C58780 /* AFNetworkActivityIndicatorManager.m */; }; + 1EEF079E4FF4085AE364315665FB1FBD /* FBSDKAppEventsStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A25F5C107C5634359A096638142E310 /* FBSDKAppEventsStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F805E24D9254A455DE8E504786E31B6 /* FBSDKCoreKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F034CD05E5F2CE43E7ED3AB7A41F3FA7 /* FBSDKCoreKit-dummy.m */; }; + 1FFE8A6DDCA9246D3EA98372EAD63780 /* UIImageViewModeScaleAspect-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D4935B0418E453182C9814FCB04689 /* UIImageViewModeScaleAspect-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 24600483CE2FB9BBDED179CCC892F3F8 /* BFExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1824A2DFE2858FDD3F1B2E5FBA9D9289 /* BFExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; }; 246B33E8266726E300011481E9237428 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 24874650BA474E95829A5FCF9FC7E70E /* FBSDKCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CC773751C97D5CF077570D03A9765F /* FBSDKCrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24DB7D4E986A59B0E032E4F83A69536A /* FBSDKAppGroupJoinDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 614DE4EB432D19E0071EC7F596F51B39 /* FBSDKAppGroupJoinDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 251B153287407A947B9F77303CB7F275 /* PicoNumberConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD5681377B692D09F16AB0C9AC0EC4F /* PicoNumberConverter.m */; }; - 25437F3A03168A7FF5A5F5864F0DA732 /* AeroGearOAuth2-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1558E1357BE03000E98FFEE56D1E1DE3 /* AeroGearOAuth2-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2473913F9702CFC9D0FF1C8829C45423 /* FBSDKApplicationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DB05B9060E66484352B7DBE43E2D4450 /* FBSDKApplicationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 24DB7D4E986A59B0E032E4F83A69536A /* FBSDKAppGroupJoinDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ABEB10FAB660E5D89469161487A505 /* FBSDKAppGroupJoinDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 251B153287407A947B9F77303CB7F275 /* PicoNumberConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA0423DD01AB15986A6DD29F8F8BA32 /* PicoNumberConverter.m */; }; + 25437F3A03168A7FF5A5F5864F0DA732 /* AeroGearOAuth2-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3AF5B38596C01AC1FFE8EA4D5B94D5 /* AeroGearOAuth2-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 263150DA2DD0AA9AF442DA4068164DF8 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C49D5E408220FD79661F21912A9E0B1B /* CFNetwork.framework */; }; - 27475CD6178BFAF6C02F071E7D6B8695 /* FBSDKTestUsersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C261DD8D16CB4A5AA9E9C697887864 /* FBSDKTestUsersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 27591714E6846BFD95B8FBBEC15F97D1 /* FBSDKShareOpenGraphContent.m in Sources */ = {isa = PBXBuildFile; fileRef = CBED686AC5937A6ED7CF2977FDFCC0DF /* FBSDKShareOpenGraphContent.m */; }; + 2673FD9EC0AEA53E3A1E665BE1BF9036 /* FBSDKBridgeAPICrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 0138C9B7102F27F16C0EA83C4AD3A4F2 /* FBSDKBridgeAPICrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26AE7D9B8D68CAC9642DDFEDB8E8D771 /* FBSDKBridgeAPIProtocolWebV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 61166C93A515F6A829804D6CB7239F4A /* FBSDKBridgeAPIProtocolWebV1.m */; }; + 27591714E6846BFD95B8FBBEC15F97D1 /* FBSDKShareOpenGraphContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1045BDCE4D5F66B2ACDA03A29A39367C /* FBSDKShareOpenGraphContent.m */; }; 27840D8AC96D3180626B40D4AE7A715F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 27AFC2D1A21EAE366618898F50287183 /* FBSDKAppGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = EFEA264F83FCD09489CBB48FEC925925 /* FBSDKAppGroupContent.m */; }; - 27B378AAF73A1EBB45FFD7EA38D37247 /* FBSDKLoginManagerLoginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = B9A9E24E48892C412B3EBB0DD83970EE /* FBSDKLoginManagerLoginResult.m */; }; - 27B9305978AB08232BD1BAD3E5CF8FBB /* AuthzModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63537DDFAEFE1F2749F7CB8138DE2F98 /* AuthzModule.swift */; }; - 2866B55F0B1E204001EF16753AFD3426 /* FBSDKHashtag.m in Sources */ = {isa = PBXBuildFile; fileRef = 717C21EDAE454445C37AA0B5F44D2757 /* FBSDKHashtag.m */; }; - 290353FFD70C6FED0E88244849792541 /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB476976DBD8C5481E989BDDB475605 /* AFHTTPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 290E7890207984177124BD5F84F0D04C /* FBSDKURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 978A4B1D5DD8E6E69DF6BD58923D66BB /* FBSDKURLConnection.m */; }; - 291FE1D4F4658AE8249A7AA798367A07 /* OAuthSwiftHTTPRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F259A10A758FB0A23ADF86E84EC2856 /* OAuthSwiftHTTPRequest.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 298BABB267BFF3841CDC2D083BC4E8C5 /* PicoCacheEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A2FF495ACA841678ABF1B82FF9DF99B /* PicoCacheEntry.m */; }; - 29D5072854A624ECD53A502670BE3498 /* FBSDKServerConfigurationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCDB4AC58638D44FA6AFD685AD3513F /* FBSDKServerConfigurationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B44537869F2E871DA87CFFA22DC331B /* PicoDataConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E18B060939A2A20AC35F497BB8D9F7C /* PicoDataConverter.m */; }; - 2BD969D274F4CC68A4E73E74135AAAB6 /* FBSDKAccessTokenCacheV3_17.m in Sources */ = {isa = PBXBuildFile; fileRef = 80625927A0A8240A11820485C1B89E1D /* FBSDKAccessTokenCacheV3_17.m */; }; - 2C1DCEEF93879DDE6AD0C2F2BC350C0A /* FBSDKLikeDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BED900052A470AA2FD9D41F5A2C3D4 /* FBSDKLikeDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C737796AAD49FE609E7FB0CCF8A263C /* Bolts.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D049B6CDE17197E09B5FFAE7F64565 /* Bolts.m */; }; - 2D328AD191D951FE755FCF0F4FBFD86F /* add_photo.png in Resources */ = {isa = PBXBuildFile; fileRef = CEE29DA5F3F709007178DB0D8ACD98ED /* add_photo.png */; }; - 2D3405986FC586FA6C0A5E0B6BA7E64E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AAF3229A34E9C0D5C8019CC2A75EEA5 /* Validation.swift */; }; - 2E4CAFABE35B8FC728822895A3A7581C /* XMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F43B1645F9281E3893D341A6889B613 /* XMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2E5AA7B66CE7F0DB9CEFC25F55C41124 /* FBSDKServerConfigurationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 769BE9934A6B18F097264F40ED80D5DB /* FBSDKServerConfigurationManager.m */; }; - 2E8C5651C2D34FAD23D4395363E80A3F /* FBSDKAppEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = BBEBC850596B4F6F86F529C0BCA43EDE /* FBSDKAppEvents.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F37D130B5D76485C1A990F248DC8354 /* PicoSOAPClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 335B2839720289446894B5AA6E9E71ED /* PicoSOAPClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F8DC41254534116CBADC7701C24B7EA /* SWRevealViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CDD094D4209E5C102D154AB6D938C4 /* SWRevealViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F9492A82F7B9F44D6452E5A1DFB986E /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 274402C750F02C7753DA0A1808189AF9 /* _FBSDKTemporaryErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FA0E03C590839B4243AB5B91DD749AF /* FBSDKShareVideoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 735F19B7A2C3BFEB5A21280A6D04E96D /* FBSDKShareVideoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2FB79A55DE2E9F7ABB3B4C7871CD0C5B /* OAuth1Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = E858FA74CC061E2522FBC38DCB79D3A9 /* OAuth1Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2FF1B23AA41F471B163257FEF07E3B95 /* FBSDKProfilePictureView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E02F55BA8A59296583E6985EDA7384 /* FBSDKProfilePictureView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2FFADE6D19B6BED1A0650D0CEC6EC9A1 /* FBSDKBridgeAPIProtocolType.h in Headers */ = {isa = PBXBuildFile; fileRef = 80EFAB771868CE6DEFEEC2E09785125B /* FBSDKBridgeAPIProtocolType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 309BA559E28A032D7AB8DA1BFB1ED288 /* arrow_down@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = C9D8FBD89835630122F2346C2E06C937 /* arrow_down@1x.png */; }; - 316600E170EB0DDAAC598905501E274F /* TYMActivityIndicatorView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2FCC794790A65115BA5F8CA188FC8686 /* TYMActivityIndicatorView.bundle */; }; - 31694BB1A321078621424E065953D9DD /* FBSDKServerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B0D519C13A85B81EBA251944FD9E65 /* FBSDKServerConfiguration.m */; }; - 3249F988C94C1B64192C42A11902D850 /* FBSDKLoginError.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1B51E195D0E8064960DF10B15B6ED4 /* FBSDKLoginError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32BE0FB08D9ECD2974197D862E320E36 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7D30E84A7446738D0FC06667D18A86 /* UIWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 334A9EB0A89E519A4CD425EF39DCDA2F /* FBSDKLoginManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8D2F518A8BABD6E589DCC7ABAAD2D2 /* FBSDKLoginManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 343843D298290E746FF42BFC7EEB9AA9 /* BFAppLinkNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5DA369D0C58EE56D3E8C3EFA5C3C08 /* BFAppLinkNavigation.m */; }; - 349308F0D458195CBF3C7D9078D59547 /* FBSDKDialogConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 42EED0D66730A14C542FFAB588757458 /* FBSDKDialogConfiguration.m */; }; - 34BEE08ED8F8B9B3B939D4D732CFBEFE /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 864DABD30F3F33A39046A68A238FF93B /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 34BFAC18A269D413F0C10F40601D4095 /* AeroGearHttp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E64651DB95E0B15BB312F6312ACBE569 /* AeroGearHttp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 34CCDCA848A701466256BC2927DA8856 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EDB9D463C502DF5FFF6440CAC522213 /* NetworkReachabilityManager.swift */; }; - 35053BA799D569D42234202DCE2DB786 /* SOAP11Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 420AA687265F34C1B92A6D2B694EED54 /* SOAP11Body.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 356C94C2276AD2EFDC966E226C8BB5F4 /* PicoStringConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = B2360067ED951454DC182114DED0A114 /* PicoStringConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36463D62E47D3C86C700BE506CF20513 /* SOAP12Fault.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E86A9CEAE1073F8EB06D095899EC8E /* SOAP12Fault.m */; }; - 36EC0F3B99211C490C358637095E707F /* FBSDKUIUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = AF824C365242B0C20945253374774C1F /* FBSDKUIUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36F127350534946859EEB412AFAA0702 /* SOAP12Faultcode.h in Headers */ = {isa = PBXBuildFile; fileRef = C738D0637CB939CB88A8E9B07D9B0F6E /* SOAP12Faultcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 27AFC2D1A21EAE366618898F50287183 /* FBSDKAppGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 34947BC2056A1C61E666A1AAEFBF09EA /* FBSDKAppGroupContent.m */; }; + 27B378AAF73A1EBB45FFD7EA38D37247 /* FBSDKLoginManagerLoginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 351258D9C6911A688EA99DA405AA95BB /* FBSDKLoginManagerLoginResult.m */; }; + 27B9305978AB08232BD1BAD3E5CF8FBB /* AuthzModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BFCF57757EBDBC63CB0A7A7F54BA339 /* AuthzModule.swift */; }; + 2866B55F0B1E204001EF16753AFD3426 /* FBSDKHashtag.m in Sources */ = {isa = PBXBuildFile; fileRef = 691A4C04F98345445788E4C08002C21D /* FBSDKHashtag.m */; }; + 290353FFD70C6FED0E88244849792541 /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B87BEC3578B141498AA5BF02A884A9B /* AFHTTPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 291FE1D4F4658AE8249A7AA798367A07 /* OAuthSwiftHTTPRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1931A1D6E3520BBCB7812C0122509AE3 /* OAuthSwiftHTTPRequest.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 298BABB267BFF3841CDC2D083BC4E8C5 /* PicoCacheEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 205FDCE2F6A29694B0DABB3DB234FE4C /* PicoCacheEntry.m */; }; + 2A2EDCB3C56D4CECCBB316BC99AFDF7C /* FBSDKGraphRequestBody.h in Headers */ = {isa = PBXBuildFile; fileRef = 72368B5F6CE78E5A71494904E1BF6A2A /* FBSDKGraphRequestBody.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ABD8A9D5FB1989CCC282860A266C3FA /* FBSDKProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCCEF2CB8ACD90F4F5F59AF8485106E /* FBSDKProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B44537869F2E871DA87CFFA22DC331B /* PicoDataConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 556FD9B52DC4AC4AD2DCBC8C46437653 /* PicoDataConverter.m */; }; + 2C1DCEEF93879DDE6AD0C2F2BC350C0A /* FBSDKLikeDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5E83893196A501BFFD8CBA641D8166 /* FBSDKLikeDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C5EC023FC39EFCBC5176E68F6082D6E /* FBSDKURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = C9869875E5404D178C15287F1BD5F1A2 /* FBSDKURLConnection.m */; }; + 2C737796AAD49FE609E7FB0CCF8A263C /* Bolts.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC68F3EB4B5F25DA03F1F7A6E835F72 /* Bolts.m */; }; + 2D328AD191D951FE755FCF0F4FBFD86F /* add_photo.png in Resources */ = {isa = PBXBuildFile; fileRef = 8DCECD85DA19D09B055B6CD7D8E35576 /* add_photo.png */; }; + 2D3405986FC586FA6C0A5E0B6BA7E64E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EF31BE827F639B0B551DEEBCC1D8C36 /* Validation.swift */; }; + 2E4CAFABE35B8FC728822895A3A7581C /* XMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = E0324A8950F94C5646FADBDA680A7235 /* XMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F37D130B5D76485C1A990F248DC8354 /* PicoSOAPClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F2D185A2B217B695F3DB73006C1BF7 /* PicoSOAPClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F8DC41254534116CBADC7701C24B7EA /* SWRevealViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2D0A6D8828F124981A51813C767D91 /* SWRevealViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2FA0E03C590839B4243AB5B91DD749AF /* FBSDKShareVideoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 225AB771EBFA572B49A7B8B7974B8856 /* FBSDKShareVideoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2FB79A55DE2E9F7ABB3B4C7871CD0C5B /* OAuth1Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = C02F1EB2C069E2DEC3DB773E19B3525C /* OAuth1Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 309BA559E28A032D7AB8DA1BFB1ED288 /* arrow_down@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = FAFCB07EA7D4A1B07613DCEDC87F22FA /* arrow_down@1x.png */; }; + 316600E170EB0DDAAC598905501E274F /* TYMActivityIndicatorView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D8B856751B06BA4344E29899ADF27FCE /* TYMActivityIndicatorView.bundle */; }; + 31B99640D7A7709B06B0701AC8BD08E6 /* FBSDKUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B186DC238B4C67B057D99BDBFD6ABE /* FBSDKUtility.m */; }; + 32389B33AA1C99FE12E735C3E88AB2EB /* FBSDKContainerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A00DDB78E7FB0BDABD5CFB2757B8752D /* FBSDKContainerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3248D8EE5EAAD24ACA8DEB30A458DE48 /* FBSDKError.m in Sources */ = {isa = PBXBuildFile; fileRef = B9F01B540FBA768CC5B1ED5E4CB082ED /* FBSDKError.m */; }; + 3249F988C94C1B64192C42A11902D850 /* FBSDKLoginError.h in Headers */ = {isa = PBXBuildFile; fileRef = E580C8330D96978E9075A673270918C4 /* FBSDKLoginError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32BE0FB08D9ECD2974197D862E320E36 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = B05075BA2AE0B556A0070511C9AD8B6F /* UIWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 334A9EB0A89E519A4CD425EF39DCDA2F /* FBSDKLoginManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C8B4D86273676E4E854315C92CC366 /* FBSDKLoginManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3407AD594A2BC3BB1C83BB2A40EDC375 /* FBSDKError.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5E61D9AAE2825876056C5946837448 /* FBSDKError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 343843D298290E746FF42BFC7EEB9AA9 /* BFAppLinkNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D1183F6266ACE5160FC3CD6C4C45EC1 /* BFAppLinkNavigation.m */; }; + 34BEE08ED8F8B9B3B939D4D732CFBEFE /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAC93332ACD8FCCB95863696523B8F3 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34BFAC18A269D413F0C10F40601D4095 /* AeroGearHttp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE938BCBE6F70DC24F176D639DC1215 /* AeroGearHttp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34CCDCA848A701466256BC2927DA8856 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C0286C2EAD805B0FF93C26544A7A7B /* NetworkReachabilityManager.swift */; }; + 35053BA799D569D42234202DCE2DB786 /* SOAP11Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 28671C74E6219AA98F752E15384911B3 /* SOAP11Body.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 356C94C2276AD2EFDC966E226C8BB5F4 /* PicoStringConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3940C53E02697860F32218623C63E187 /* PicoStringConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 35CDDACB102D8F9429BE489DFD2A7912 /* FBSDKAppEventsUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = B9683BE3D4CCFA996D25163F44A2D0BB /* FBSDKAppEventsUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36463D62E47D3C86C700BE506CF20513 /* SOAP12Fault.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D5783CD01D709D572D478BF714A9AA5 /* SOAP12Fault.m */; }; + 36F127350534946859EEB412AFAA0702 /* SOAP12Faultcode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9DF7A43BC74A48C809AF250ADD3254 /* SOAP12Faultcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3708AA48F1D26CB56F88BB6FEC72DE36 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; - 3723F9F27EC35F88F58EA3BF27AC7338 /* PicoCacheEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2364FFE484047028D0864C0A9C409AA8 /* PicoCacheEntry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3727D92D4B6CF5B09E53F33C773876D2 /* FBSDKMonotonicTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C59EBDF18FC2BF05CB5407C4A0E77D /* FBSDKMonotonicTime.m */; }; - 375E8C355CB9A979E9F03DAEE9703171 /* FBSDKShareOpenGraphAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3924AE90C6D5F8F96E7BD456532B5C /* FBSDKShareOpenGraphAction.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3763DC15F50037130B37AFA9785E680D /* SOAP12Faultreason.m in Sources */ = {isa = PBXBuildFile; fileRef = B15A73D687F9E0EB14350C64DA7534F3 /* SOAP12Faultreason.m */; }; - 3823A8BFFA8A36D1F2B1D718A1057719 /* FBSDKSystemAccountStoreAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FE854B7DE94EBF654DC928C4316293 /* FBSDKSystemAccountStoreAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 384AB7595557A39CB10CBD9CB467D24D /* FBSDKLiking.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD323F793AB7CDD39EB4D804B4D375B /* FBSDKLiking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3853FC6B534F1D3B97A5038666B97DA3 /* SOAP11Header.h in Headers */ = {isa = PBXBuildFile; fileRef = E229D8176F4CEC52ACE0B7DD090CD054 /* SOAP11Header.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 385E8CF0234426575581CCA6F53DD434 /* FBSDKGameRequestFrictionlessRecipientCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C931FD6874CA306EC6486FD08D6E0AF /* FBSDKGameRequestFrictionlessRecipientCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387B78488B01402C1A6A04A4485972AA /* FBSDKShareUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 19557DF0E158ABDD908E6E12B73E7785 /* FBSDKShareUtility.m */; }; + 3723F9F27EC35F88F58EA3BF27AC7338 /* PicoCacheEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A43D550109E09F95DD446D60D99C10 /* PicoCacheEntry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 375E8C355CB9A979E9F03DAEE9703171 /* FBSDKShareOpenGraphAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7389C2E951B60B7DC2FC736BCE2CA4 /* FBSDKShareOpenGraphAction.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3763DC15F50037130B37AFA9785E680D /* SOAP12Faultreason.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CE684E607AFC1CFD0F514DB536B97F /* SOAP12Faultreason.m */; }; + 384AB7595557A39CB10CBD9CB467D24D /* FBSDKLiking.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1A23D9DB8064D490EB64DF17E1702C /* FBSDKLiking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3853FC6B534F1D3B97A5038666B97DA3 /* SOAP11Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C391BBBED993C1AF3B869B0E59BE5DE /* SOAP11Header.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 385E8CF0234426575581CCA6F53DD434 /* FBSDKGameRequestFrictionlessRecipientCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 01CEEAE2517300FA734CB255C0D037B2 /* FBSDKGameRequestFrictionlessRecipientCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387B78488B01402C1A6A04A4485972AA /* FBSDKShareUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F19678FFEA615255AD53723B79938D08 /* FBSDKShareUtility.m */; }; 3889F62AA2888DB03BBCA7D588BF6255 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E52CFB5C20763A830341CDF43564E66C /* Photos.framework */; }; - 38EF43F03EBACFE40F480F4F8BC20FD5 /* BFURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C8F47E5144DC8935E946E23C6D16070 /* BFURL.m */; }; + 38EF43F03EBACFE40F480F4F8BC20FD5 /* BFURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 61EBA468B01BB0E791068FE5B9F2BC1F /* BFURL.m */; }; + 3981B9E63BA2904A0114C751B1F55EEB /* FBSDKContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EDE840EB634CCF8D1DD6034BB7F3E5D4 /* FBSDKContainerViewController.m */; }; 39CC77EEA7D338BAC4838DF5A0042FA1 /* BSImagePicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 1DAB82B06E436E004842E183C76B2507 /* BSImagePicker.bundle */; }; - 39E4FA2B5D0B8EFD4F9B953111DA1CFC /* BFWebViewAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = C9965D39BCC0F34498A187EE769956D9 /* BFWebViewAppLinkResolver.m */; }; - 3A01CE59DF9D68D5F2623F88E522A33E /* FBSDKGameRequestFrictionlessRecipientCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F867D48DD2E43C581E8112360E73F64 /* FBSDKGameRequestFrictionlessRecipientCache.m */; }; - 3A31EE2CDC26FC7889C0059514E91C3D /* FBSDKButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 975515A6E522EEF8B1D5CEC7BCC5679B /* FBSDKButton.m */; }; + 39E4FA2B5D0B8EFD4F9B953111DA1CFC /* BFWebViewAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = D0EBC10F2E43657830DD218CC71E6D2B /* BFWebViewAppLinkResolver.m */; }; + 39EA32E18C764A782707D24DBF221E92 /* FBSDKURLOpening.h in Headers */ = {isa = PBXBuildFile; fileRef = 69FB3482169453D0CCB7C8DC98027EB4 /* FBSDKURLOpening.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A01CE59DF9D68D5F2623F88E522A33E /* FBSDKGameRequestFrictionlessRecipientCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 992577582CDA1F836F3DE4A99AA4B357 /* FBSDKGameRequestFrictionlessRecipientCache.m */; }; 3A33BD9CFBB44FE323E109E255C76F49 /* Pods-Vendoo-VendooTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7F2F67EFB8A8B31FE8ED6A9104C3B0 /* Pods-Vendoo-VendooTests-dummy.m */; }; - 3ABF5C6E772B5706FEC84D0F880E9061 /* PicoXMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = E32563002394581385A3D32A16C7719A /* PicoXMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3AC3D4A319B72CA8EC9EE10DE609BF97 /* SOAP12Fault.h in Headers */ = {isa = PBXBuildFile; fileRef = D65C597C7BFEA9ACB22F9D23F518616A /* SOAP12Fault.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B629068F4BE1D7821957056F25E33C1 /* Locksmith-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8AFE5EB7076EFE8F34B0E147AA970B4 /* Locksmith-dummy.m */; }; - 3D6D69351FD8DF6501A8144FF882C074 /* BFAppLink.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B9210099E8B96F329A0B4B62A8832F /* BFAppLink.m */; }; - 3D75C1A03F08AB28F30D41A9E3E5389E /* FBSDKAccessTokenCacheV4.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C78B47AAD708C337C652098585D02D /* FBSDKAccessTokenCacheV4.m */; }; - 3DB7D1D261D974F55FDB4DD7AAC42861 /* FBSDKErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 410ACCE4C6EEFC8B50268F3ADB5D4A10 /* FBSDKErrorRecoveryAttempter.m */; }; - 3EA077D046DCD950DCAC4BCD2C1C3233 /* FBSDKShareUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DE6005FDBC23FF2787B3E3FF80C8EA /* FBSDKShareUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EA8F215C9C1432D74E5CCA4834AA8C0 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E83C4119367B3BB115800ABB3DFA47F /* ResponseSerialization.swift */; }; - 3F17A710798B958949B20EC8D0CCFAC0 /* FBSDKMessageDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A2D38C759F5C76D318AD4D8E4D3907 /* FBSDKMessageDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3FD0D93AD926C94818225AA013D70FDF /* FBSDKShareKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 207FA511B14970E71D1B9CB632BE129A /* FBSDKShareKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40014FF9B9A69253E2C34E8EAF771BA2 /* UIImageViewModeScaleAspect-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AAA9FA721AC86560C982C18A31F3D91 /* UIImageViewModeScaleAspect-dummy.m */; }; - 401C2DDD1436B4AD6B3A43D775389EA4 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E9300385F72720F6C95944F2CBADC1F7 /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 406804221AD8D7EC71E4CC582AF7B1C2 /* FBSDKAppGroupContent.h in Headers */ = {isa = PBXBuildFile; fileRef = E185BFAA94FAB3FD3156D77FF1CDC014 /* FBSDKAppGroupContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4081EA628AF0B73AC51FFB9D7AB3B89E /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 727549E62BD7A32551D9A4A495E77A99 /* Manager.swift */; }; - 4091FBB9624025711B56808DA069BB99 /* FBSDKAccessTokenCacheV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 3392A1562EEECDDCE5ABD3904BFAF496 /* FBSDKAccessTokenCacheV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 409F5BE5BDBB1D3850F4D62D5504D662 /* BFTaskCompletionSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F8DFF9AD2140B7424CF0E7B0C26DC7E9 /* BFTaskCompletionSource.m */; }; - 4126FC06B09C1514C4623BEF344EEDF2 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4852ABFCF4F0FA929A4EC5BC39C0B44F /* AFHTTPRequestOperationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4142B023AD5F064B77F97768E6CE29C5 /* Alamofire-SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B20BB03E7D279E9F725AD6385BF70F /* Alamofire-SwiftyJSON-dummy.m */; }; - 4151A1A3483D663770E5AC8E08E89474 /* FBSDKGraphRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AE174E4E8CAD8215E3889AD1FDF89D60 /* FBSDKGraphRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4157F58C771B24EB545FBB57552535B2 /* FBSDKGameRequestDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BB4A7B39E0E9479C628B1BA291C629 /* FBSDKGameRequestDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3A664C723C33E54F533E31F66EA22EC8 /* FBSDKProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = D1F1ACA67D2E8485E0B100101C598CD3 /* FBSDKProfile.m */; }; + 3AB4398C33E1A2E5438754250E432050 /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 2915E855DF5A68E33B8987E3B4C601F5 /* FBSDKBridgeAPIProtocolNativeV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ABF5C6E772B5706FEC84D0F880E9061 /* PicoXMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5067076AB83F35B4C05F2B94807AEA /* PicoXMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3AC3D4A319B72CA8EC9EE10DE609BF97 /* SOAP12Fault.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD30D72E3096CF62F4B9A44F14C4313 /* SOAP12Fault.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B18861D19FC85A3223E026A203F308F /* FBSDKAccessToken.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EE900E61F0CE55E2432E6ED0BE4B6C /* FBSDKAccessToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B629068F4BE1D7821957056F25E33C1 /* Locksmith-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FBE64C914B141164A2B089BDCB456F /* Locksmith-dummy.m */; }; + 3D6D69351FD8DF6501A8144FF882C074 /* BFAppLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 512118DAB504324A4C10C51634151339 /* BFAppLink.m */; }; + 3EA077D046DCD950DCAC4BCD2C1C3233 /* FBSDKShareUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D1ADDC1224132590604BCD92B1F976 /* FBSDKShareUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EA8F215C9C1432D74E5CCA4834AA8C0 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3AEB23FDFCB04745EE62B3C778A990F /* ResponseSerialization.swift */; }; + 3F046B457AF3D946EF13CF18AF9A57E1 /* FBSDKKeychainStoreViaBundleID.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E8743B04B1511510FDABFF1D5263370 /* FBSDKKeychainStoreViaBundleID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F17A710798B958949B20EC8D0CCFAC0 /* FBSDKMessageDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3181FD32AE9D274A1339FEDFED53A8D6 /* FBSDKMessageDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3FD0D93AD926C94818225AA013D70FDF /* FBSDKShareKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C2083636038F708756691CEEB0136D5E /* FBSDKShareKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 40014FF9B9A69253E2C34E8EAF771BA2 /* UIImageViewModeScaleAspect-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 284A86E55EA49FF60F6A65557E11C7BD /* UIImageViewModeScaleAspect-dummy.m */; }; + 401C2DDD1436B4AD6B3A43D775389EA4 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D317FB282FBED42C9208515739CFC633 /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 406804221AD8D7EC71E4CC582AF7B1C2 /* FBSDKAppGroupContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 71B3955871C5EB62A7901AC3695B4805 /* FBSDKAppGroupContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 40770650BDD2DBF27FDF899D1E20E1A3 /* FBSDKWebDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = D39494C59ECE7D64261B42AACDCFF7DB /* FBSDKWebDialogView.m */; }; + 4081EA628AF0B73AC51FFB9D7AB3B89E /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60EB7350A9933A50C654060F05888904 /* Manager.swift */; }; + 409F5BE5BDBB1D3850F4D62D5504D662 /* BFTaskCompletionSource.m in Sources */ = {isa = PBXBuildFile; fileRef = B90EFF130C0B2546D491AA3DC22E5A4F /* BFTaskCompletionSource.m */; }; + 4126FC06B09C1514C4623BEF344EEDF2 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A98E3C19B2AD7BA05839E94694A968 /* AFHTTPRequestOperationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4128E3A5C4A0660FAA0BD4ADB3936709 /* FBSDKBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 1430C1D53863E1D4281F89226B371606 /* FBSDKBase64.m */; }; + 4142B023AD5F064B77F97768E6CE29C5 /* Alamofire-SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 830A613563F181EF723A8F8B8EBD567C /* Alamofire-SwiftyJSON-dummy.m */; }; + 4157F58C771B24EB545FBB57552535B2 /* FBSDKGameRequestDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E24FA3C7957B4CBDFB2470C0A0AF62 /* FBSDKGameRequestDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4186787644AF6C98193CCF8C12E8D6B0 /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15711FB818776F1D8CB48B60128D6DA6 /* AFNetworking.framework */; }; - 41A00F5CF45C7D1B97225996C473293F /* OAuthSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BD02AC2B9FF3AEA022D757C1E6A92F8C /* OAuthSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 42643BE23BCFC5EB0F4E7ED31768B68A /* PicoDateConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3F89C1AD1AD2D15A12A3B25F5C0C9F /* PicoDateConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 41A00F5CF45C7D1B97225996C473293F /* OAuthSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C6661A5AF83DA7D7BD40895CBE1BA7E5 /* OAuthSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 42643BE23BCFC5EB0F4E7ED31768B68A /* PicoDateConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = D9DCFC9B97F93DCF4AE39617F7DB55A3 /* PicoDateConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 42890EFA1A9960C220BFA8647831E467 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */; }; 42F44AD72DA11C66072D46BEC5DF08B2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 4305C8D7E5269805600F23D8FEA37071 /* DateUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A22771953D292A59A20DAD8FF70F8F64 /* DateUtils.swift */; }; + 4305C8D7E5269805600F23D8FEA37071 /* DateUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = D57EB4A2DDB414E14577E3DADD9E84D5 /* DateUtils.swift */; }; 439ED7008937D5940809FFB6B19332C0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 43BC8D2611C04A47C0BE9FFB228E07A5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D120FCA90A26497DB58AD40797D5E66 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4433527C657120BBB1978008CABDB7B3 /* SOAP12Faultreason.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C5F06A3BDBC389FC4668700A485B26 /* SOAP12Faultreason.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 43BC8D2611C04A47C0BE9FFB228E07A5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 95898E7B47FB25FF6ED156CCAFD07456 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4433527C657120BBB1978008CABDB7B3 /* SOAP12Faultreason.h in Headers */ = {isa = PBXBuildFile; fileRef = D62730F80C040A16E2B57DF50BCA48F6 /* SOAP12Faultreason.h */; settings = {ATTRIBUTES = (Public, ); }; }; 443CD693458E72E577CD457C3F55D9DD /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */; }; - 4546E3FB56F3693D2893B773F71C3097 /* BSImagePicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CD33485C1C502613F59CF52A0AF56C00 /* BSImagePicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46485D36E37F397B7F56EE76B3382C85 /* Dictionary_Initializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59732171D966B182230711C2A962C3A2 /* Dictionary_Initializers.swift */; }; - 46E961BEA7247217652A5F012F82FECC /* FBSDKTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 082189F18A13ACF939C12C480EAE5E35 /* FBSDKTooltipView.m */; }; + 453CCFB95EFBBEFAF3653DA850ACB4C4 /* FBSDKAppEventsUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = BCE3E85EF30CCAF07D846FFD32109BCF /* FBSDKAppEventsUtility.m */; }; + 4546E3FB56F3693D2893B773F71C3097 /* BSImagePicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C86285910A7BB663217575F2A350EC /* BSImagePicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 46485D36E37F397B7F56EE76B3382C85 /* Dictionary_Initializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2FD166BBAE2AAEC3D6DD4E6AD075E58 /* Dictionary_Initializers.swift */; }; + 46E961BEA7247217652A5F012F82FECC /* FBSDKTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7B4C0E1CFE93A43E1381CAEC314B57D /* FBSDKTooltipView.m */; }; + 46F9BBEA50C3B8E2D2993356B4A37670 /* FBSDKTestUsersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7180B871CFDEC41DEE090DFD594853C5 /* FBSDKTestUsersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4709B3DC439F20AC0EE23258666AD2AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; 4740F7545240B7461849EFDC0F075166 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */; }; - 484BA6D52FA1AAB3CE29A0A41F3F6EAB /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; - 48D8F32EC0B32EEE9FA0B8F60E447887 /* FBSDKPaymentObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FCEA524CE985F9574ABDED0790C8315 /* FBSDKPaymentObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49239C6CF815B92F2DF5B5D79FB9B5AF /* FBSDKTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FE5C7BF10EBAD6F29B4122869155BC /* FBSDKTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B42AB3B0147E10869BABB83CC9D1770 /* FBSDKIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = ED48F8029AD4431700989A7222F7E972 /* FBSDKIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B4B2B87CA851CEDEDF6AC671EC8D862 /* FBSDKKeychainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 45D5C4E7D18866F0718F53294F8092B7 /* FBSDKKeychainStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C1AD82A4DEEE0D1D2B34913ABBBC311 /* FBSDKBridgeAPIProtocolWebV2.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A97717F4F7ECC0DEC471C7C302AF960 /* FBSDKBridgeAPIProtocolWebV2.m */; }; - 4C1D00D2AAB1C6C511FF8F5FC76698D1 /* FBSDKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = B34B8DDB4A0AB0AE10712A6E9AD3AD98 /* FBSDKColor.m */; }; - 4C49A4B4D6FB7CBBA27B18F0E001AE18 /* SOAP12Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 65943526BB25489F3C16E16622D1E779 /* SOAP12Header.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4C8A700F201D817E06260539577C0778 /* PicoClassSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = B10D7016FB6C94ABFB9F51BC7762EFC9 /* PicoClassSchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CA2747F836DF4225DB2BBBF3C9857E9 /* PicoBindingSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 986183AA529E912B1C2EC48417B8A8B1 /* PicoBindingSchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DA130F813859583C3363088029A470E /* _FBSDKLoginRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = F1765ACC268C5E65419329269F216130 /* _FBSDKLoginRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DCE84710050E8583735F97ADC84FCA7 /* BFAppLinkReturnToRefererController.m in Sources */ = {isa = PBXBuildFile; fileRef = D70416A9A53143F089245C8D1297E324 /* BFAppLinkReturnToRefererController.m */; }; - 4DE74A102F928A9E1177E7F5D3F1904B /* PicoStringConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D5C2FDDF0F88752AF5E4684ED9E4F0E /* PicoStringConverter.m */; }; - 4E23C0C3C5CF154075BDE3E79D2EAC43 /* SHA1.swift in Sources */ = {isa = PBXBuildFile; fileRef = B94FCF221AE2FCDF46BACAC60EEAA6B7 /* SHA1.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4E32C6B26518F18DC4AB3E225B86EE88 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C86C7E48E9DA6F8DFE5A2E31E43A7A /* AFSecurityPolicy.m */; }; - 4E94B8F460BF431A50D94814F7C8AF61 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 79CA30FE6F1DBFBF380140B5FB47263C /* UIActivityIndicatorView+AFNetworking.m */; }; - 4F093F6FBA6E6B060CF66145CF214E14 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6E22F1D0CC20210179A91B27BC34EC /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F3AF2A36297BA61978025EE89C7FE97 /* FBSDKAppEventsUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C7C0D3ADE9E5FDD958B1F54E512561 /* FBSDKAppEventsUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FC841A3903CBCDDF599E4C2A6B02238 /* TYMActivityIndicatorView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED6116A97A900E30653A427BC042E62 /* TYMActivityIndicatorView-dummy.m */; }; - 514B1324C72A235480C29BBC3AD1C250 /* BFAppLinkTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A626DB8AFDA446283E4671635902BC8 /* BFAppLinkTarget.m */; }; - 5182510A2DA1A6F9F44DAEDEDA45265F /* SOAP11Fault.m in Sources */ = {isa = PBXBuildFile; fileRef = E7A090313974760BAFE6E711F781CABA /* SOAP11Fault.m */; }; - 518927A77B9F0D1E5D960E22694EEFE7 /* BSImagePickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BEBBBF889045CD3EC3B7CDA99BC6C5C /* BSImagePickerViewController.swift */; }; - 518C27917941491F2434FDE54E13684E /* FBSDKWebDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BAD915B94B6D087A68C7166E45C7FD /* FBSDKWebDialogView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519324787413E43E08A6A85B7D0E72AF /* CameraCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C1B1BEC31288186EE8561AA7F71966C /* CameraCollectionViewDataSource.swift */; }; - 52681368D4EB6EE79BE9FEF151AC185F /* FBSDKShareDialogMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A92694D4C8888731C04E9642E31FE5A /* FBSDKShareDialogMode.m */; }; - 537E710078694948A4693E42674ED1B9 /* FBSDKAccessToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D38A4B06DBCE6241BF23EE59DA2EC00 /* FBSDKAccessToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53AE57B03773935906E27EAE7D903A75 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86C571A7C6CCB47DE0E45FFB6EBAFDAE /* Settings.swift */; }; - 53C50C8277DD48BD3D6B9A6CAF9B226A /* OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFE4210F32934A2DFD9AA6F34234CC /* OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 48B7B49F3456D2CB232DD0AE82276241 /* FBSDKGraphErrorRecoveryProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 647446655F272BCEB4BCA45BFAA5B179 /* FBSDKGraphErrorRecoveryProcessor.m */; }; + 49239C6CF815B92F2DF5B5D79FB9B5AF /* FBSDKTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 713D82839468147062E384DC624DF98E /* FBSDKTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 494A29BF9B430E07187F064CD2CA35DC /* FBSDKAppEventsDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 373ED965545DF6F70B86AF2F1AFC6F2A /* FBSDKAppEventsDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 497287C7FBED4DCF7FDCF28A851B0B45 /* FBSDKTimeSpentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 55A62C6D92EA7B9199A393B2D46D87D4 /* FBSDKTimeSpentData.m */; }; + 49D41882B2AC3AA1412543C573A449BC /* FBSDKSystemAccountStoreAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C907BBC5D50B128B81C9035A09DF6EF /* FBSDKSystemAccountStoreAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B82F506FE42EFE13E63A21F1F1CCC01 /* FBSDKBoltsMeasurementEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B1CD443F0CC0AAB2FC8F2E55C133F255 /* FBSDKBoltsMeasurementEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BA6F0F91FB75C8EE4CE8F4B8AAA2277 /* FBSDKMutableCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = F79D22EB3B698D4FD016A0F367923406 /* FBSDKMutableCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4C45976381F8783BB0418F3716B9819C /* FBSDKAccessTokenCacheV4.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B116E5EC462E3C9C8DABC90CC34D46D /* FBSDKAccessTokenCacheV4.m */; }; + 4C49A4B4D6FB7CBBA27B18F0E001AE18 /* SOAP12Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 933142069DFEC15DB540DA18EB6426A0 /* SOAP12Header.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4C8A700F201D817E06260539577C0778 /* PicoClassSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = A747347B4CD12E772F84D4E24B9AE0AE /* PicoClassSchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4CA2747F836DF4225DB2BBBF3C9857E9 /* PicoBindingSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 37766421CDDB8E71D920BE9105F6BAC1 /* PicoBindingSchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4D95E4B6A8C358484209E9E7FB800DA4 /* FBSDKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E75D266AF0A8C9F2146EF8DC48BE60B5 /* FBSDKMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DA130F813859583C3363088029A470E /* _FBSDKLoginRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 23774AA865667FB41934D5B732037AB9 /* _FBSDKLoginRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DCE84710050E8583735F97ADC84FCA7 /* BFAppLinkReturnToRefererController.m in Sources */ = {isa = PBXBuildFile; fileRef = 96041F19C0A9AAC29547D7CDAD4B6027 /* BFAppLinkReturnToRefererController.m */; }; + 4DE74A102F928A9E1177E7F5D3F1904B /* PicoStringConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C61F474B338CF7C1BB19CBE19535D81 /* PicoStringConverter.m */; }; + 4E23C0C3C5CF154075BDE3E79D2EAC43 /* SHA1.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA132A006301A8B6177F85F17BADF660 /* SHA1.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 4E32C6B26518F18DC4AB3E225B86EE88 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 172CD8CF2AB42ED5AA9D1E9C6D8F1E87 /* AFSecurityPolicy.m */; }; + 4E94B8F460BF431A50D94814F7C8AF61 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4B4A571530C5B386D44E09F6F2BC3E /* UIActivityIndicatorView+AFNetworking.m */; }; + 4EB769CCAF8F8E9AA7414A46EC625526 /* FBSDKBridgeAPIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F9DC77084128672A7D9F4F4BB6C440 /* FBSDKBridgeAPIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F093F6FBA6E6B060CF66145CF214E14 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D5767A65705FCE62957183552C2E52 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F460FF3009054F235D91A0FF3A6B77D /* FBSDKSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = F8697C57258D8F99E93ECBF0FB63E899 /* FBSDKSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4FC841A3903CBCDDF599E4C2A6B02238 /* TYMActivityIndicatorView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71110B4517006E80554B2E500D3A76E6 /* TYMActivityIndicatorView-dummy.m */; }; + 514B1324C72A235480C29BBC3AD1C250 /* BFAppLinkTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F4A5FEC445C887BF0DF9085B09B11F /* BFAppLinkTarget.m */; }; + 5182510A2DA1A6F9F44DAEDEDA45265F /* SOAP11Fault.m in Sources */ = {isa = PBXBuildFile; fileRef = 58CB0B9B46D79AA4C054584A02553BE8 /* SOAP11Fault.m */; }; + 518927A77B9F0D1E5D960E22694EEFE7 /* BSImagePickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8934360081AC8349300F70495B28FCF /* BSImagePickerViewController.swift */; }; + 519324787413E43E08A6A85B7D0E72AF /* CameraCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D34A7B1EBB475A43499DD37B00C1BF54 /* CameraCollectionViewDataSource.swift */; }; + 52011F7A021E6981D1A14346F69DF581 /* FBSDKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B83EE42D6C8ED73790BAB11C825457 /* FBSDKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52681368D4EB6EE79BE9FEF151AC185F /* FBSDKShareDialogMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F441FA0CFED6EBB0705B175EA032F31 /* FBSDKShareDialogMode.m */; }; + 53AE57B03773935906E27EAE7D903A75 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B225CE142617A39390D406EC015622 /* Settings.swift */; }; + 53C50C8277DD48BD3D6B9A6CAF9B226A /* OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2E71750D600AE44A9F739893F2C1C03 /* OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 543069E7AFC0805EF1CB25199D201424 /* UIImageViewModeScaleAspect.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35E922A51EACCBA7AE6AC58D002E4A0B /* UIImageViewModeScaleAspect.framework */; }; - 5493E80E04D895A735853EA349C4AAE3 /* BFCancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7C7CEED29FD3533FA87314D4AAD92E /* BFCancellationToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 55844A207DAD926A4DAFC046046450B5 /* FBSDKServerConfigurationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D9EA6CD3EA83023E3E99F37858D897 /* FBSDKServerConfigurationManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5611FBD348B8C8A4FFF9875FF2F5BDA6 /* FBSDKGraphRequestMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 7451DC440007CAE64F8E4F46AF67ADA2 /* FBSDKGraphRequestMetadata.m */; }; - 56C8D4F00869E61F210A24E0EE8F3A13 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = DD70A3643DC0CEFD5CBE01C0B6705477 /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 575E7CB2D6DE03AA64E69683F9FA9D0B /* PicoXMLRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A2711929C1B7BF4E7C006BB6829240 /* PicoXMLRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 57FA7FEEEF914BE0BF48A58ED1880B22 /* FBSDKAccessTokenCacheV3_21.m in Sources */ = {isa = PBXBuildFile; fileRef = 90589F272B98647EC0E23AFCCA91E6B8 /* FBSDKAccessTokenCacheV3_21.m */; }; - 59837E92C1E6B0650A77FC8664DF9DA9 /* FBSDKWebDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 601D3CA4BD4F7F6D295C4947E66295EB /* FBSDKWebDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59B4A11C6CEB352D03892AF9828AB52B /* FBSDKBridgeAPIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 4879AE8293911291B535A5FF6E44592C /* FBSDKBridgeAPIResponse.m */; }; + 5493E80E04D895A735853EA349C4AAE3 /* BFCancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 82052588172AD4C414701FA37E46E0C9 /* BFCancellationToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56C8D4F00869E61F210A24E0EE8F3A13 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CE976C4E67669F52BBCEF52C4FBC8C /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 575E7CB2D6DE03AA64E69683F9FA9D0B /* PicoXMLRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3061C2192D37EEAC3A9D7892087979E1 /* PicoXMLRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 59DFAD3C58F255C77985D4B9098F0B62 /* FBSDKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A9F7C3C878BFACD48F7A283070A478 /* FBSDKColor.m */; }; 59E32510D0201F13D14DF5CB41CD0E96 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */; }; - 5A40CE0717F4DFAF776F12F835401D72 /* FBSDKShareError.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DD31CF2A28813447CE2E93E7D2B6B9 /* FBSDKShareError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BC19E6E0F199276003F0AF96838BCE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A4E1C9F61C475D495D58BF2DD5AEFF /* Upload.swift */; }; - 5C9BDDBB790ACE3711E8AD09A13E0FB2 /* LocksmithSecurityClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5979CC154FB100FDC06A627A0912EF1C /* LocksmithSecurityClass.swift */; }; - 5CB05FBCB32D21E194B5ECF680CB6AE0 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDB6A7A2286F25B59DDAD3B2E68D208A /* Download.swift */; }; - 5DB28EB181DDB2482EAB7052C0FFDD4A /* FBSDKShareKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF6084BAFE5ED9FC99C7A0DAE908761 /* FBSDKShareKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA916E98A026DD4FC5E05EF9B921F0F /* FBSDKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A7615FFEDC1FB3348C7337D0FE0C71 /* FBSDKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F26B65B4A4711EB4BC2BC9BC48FF041 /* BFAppLinkReturnToRefererController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E0ED5376FAD457FCE98776DE572BCD /* BFAppLinkReturnToRefererController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5FA117E5597FFEB723A700BA077A7B6B /* SOAP12Body.m in Sources */ = {isa = PBXBuildFile; fileRef = 34DBB921CD25DBE5E18FEF70FED44E53 /* SOAP12Body.m */; }; - 6042E03938FE23B2CB265B549675C2F3 /* SOAP12Reasontext.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0FF05765511513470CC978B10207D2 /* SOAP12Reasontext.m */; }; - 605DA560C2D69698B1BA8DF3C5FF74C2 /* NSData+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9B5F2B450B68490F72E20AC3FDDF8A /* NSData+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 60A2123AE07346F415CA44359F873F10 /* FBSDKAppEventsUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BDF66743CD3E171F3466C6982B33AF /* FBSDKAppEventsUtility.m */; }; - 60CAF8D6E879B1585D61B55EE807A113 /* BFTask+Exceptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2847E87631E080F6DE4980B5438780DA /* BFTask+Exceptions.m */; }; - 60D1BCD436C3EBA8135B3AFC9130CB11 /* ComposedCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE82249BC48423C663A690EFFF728AA0 /* ComposedCollectionViewDataSource.swift */; }; - 612A5931CEEFDFA056FE645BDD784469 /* Locksmith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AEE765274745516CF2663BAD619AAA2 /* Locksmith.swift */; }; - 6167D4C5CA1DF7E209EE66CD5E706DB5 /* FBSDKLikeObjectType.h in Headers */ = {isa = PBXBuildFile; fileRef = FBBFE6AF49749C0490901A34948C12EB /* FBSDKLikeObjectType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61B3E8B44D6F2EA17EDE942B24371232 /* BSGridCollectionViewLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AE7EFCD4DFD967F80F5E666FCB9282 /* BSGridCollectionViewLayout-dummy.m */; }; + 5A40CE0717F4DFAF776F12F835401D72 /* FBSDKShareError.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B2FF3B208D34C4209C13F5364708EE /* FBSDKShareError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BC19E6E0F199276003F0AF96838BCE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FBC6CF60E2642DC57BB0CB06C13892A /* Upload.swift */; }; + 5C9BDDBB790ACE3711E8AD09A13E0FB2 /* LocksmithSecurityClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02A34F20776D0C30D28831194C07A2FD /* LocksmithSecurityClass.swift */; }; + 5C9EC73D0E19564C2109A6FB650614CE /* FBSDKSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = CBB0E75D9F2DA1452798FDA1CD7FD775 /* FBSDKSettings.m */; }; + 5CB05FBCB32D21E194B5ECF680CB6AE0 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2382C64C41BB3FA220C1C7FE22B3002D /* Download.swift */; }; + 5DB28EB181DDB2482EAB7052C0FFDD4A /* FBSDKShareKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 574CE8185F6E56277CBE7548C47970C4 /* FBSDKShareKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F26B65B4A4711EB4BC2BC9BC48FF041 /* BFAppLinkReturnToRefererController.h in Headers */ = {isa = PBXBuildFile; fileRef = E08DACAAD3232CA50F03B13A386AFE56 /* BFAppLinkReturnToRefererController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5FA117E5597FFEB723A700BA077A7B6B /* SOAP12Body.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F837176C8A8ADCEBF0D5EF3ED8BEBDD /* SOAP12Body.m */; }; + 6042E03938FE23B2CB265B549675C2F3 /* SOAP12Reasontext.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A97B7CFD7538DF6DF552A7C2FA8A1C5 /* SOAP12Reasontext.m */; }; + 605DA560C2D69698B1BA8DF3C5FF74C2 /* NSData+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 749F2D3A27A296B02B79C38664928E39 /* NSData+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 60CAF8D6E879B1585D61B55EE807A113 /* BFTask+Exceptions.m in Sources */ = {isa = PBXBuildFile; fileRef = C2C43B1166A56BC3F2EBB983B658C150 /* BFTask+Exceptions.m */; }; + 60D1BCD436C3EBA8135B3AFC9130CB11 /* ComposedCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEC8034F2C5D296D6EE86EE685AAEEA3 /* ComposedCollectionViewDataSource.swift */; }; + 612A5931CEEFDFA056FE645BDD784469 /* Locksmith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30DE14E146C77F25CB56ABC9A3269988 /* Locksmith.swift */; }; + 6155675E344237CFB2682A3490B076BB /* FBSDKMonotonicTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B097E11F39423A0981DA61A73AD317E /* FBSDKMonotonicTime.m */; }; + 6167D4C5CA1DF7E209EE66CD5E706DB5 /* FBSDKLikeObjectType.h in Headers */ = {isa = PBXBuildFile; fileRef = FD589BC85EFE1E870864DBE31214F300 /* FBSDKLikeObjectType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61B3E8B44D6F2EA17EDE942B24371232 /* BSGridCollectionViewLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 985347AA4358FE406E7AE4CCC22A12C1 /* BSGridCollectionViewLayout-dummy.m */; }; + 61CEC8866A6D2572089A904EA0F83F61 /* FBSDKMath.m in Sources */ = {isa = PBXBuildFile; fileRef = F219D5C60EC65751E95EA1C8AAD34831 /* FBSDKMath.m */; }; 6200682BC2425BD28680140B8EF3851E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 626752EF7EB05FDEFB7DDBA7CE66B57D /* PicoKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 812DD1515DD556A3A49D9EC899A4ED72 /* PicoKit-dummy.m */; }; - 62E8346F03C03E7F4D631361F325689E /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0386A7DC808534C0548BC11C07B7B9A /* Response.swift */; }; - 639F646ABB9A9E4D3666B6CDD155BDBD /* PicoXMLReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D7031B071EF194F113DD5232C9B52A /* PicoXMLReader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 64D1DE8EA4BAACC7B802D787788E3F88 /* SOAP11Envelope.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B07AA5EBDF3A432722AEA054F7AE702 /* SOAP11Envelope.m */; }; - 652EE84BA55F2A6BD325768B753565D8 /* BFExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = B11102A8441AC1AA0813A59FC1535D98 /* BFExecutor.m */; }; - 653C036B94D8543FB8FB1FDD38C7FFAA /* RequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D7AFF33D7BD46B127501BFA1A1F3FCF /* RequestSerializer.swift */; }; - 65AD76A5209F07993BCCF096FA03E254 /* FBSDKLikeControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C273A675675AFA07126712D2EA3173 /* FBSDKLikeControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6607F176EF0C2BDF9BCC417DD295D59D /* FBSDKBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 179F7B8C1F165CEA1130EABEEC849EB9 /* FBSDKBase64.m */; }; - 66533D7A594AA93C8C43EF1BCE668A74 /* FBSDKAppInviteContent.h in Headers */ = {isa = PBXBuildFile; fileRef = B90E27BE66B999EC2CDAC5B19354AE2B /* FBSDKAppInviteContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6745F3DFC6CCC37EA42C4930668DA40F /* FBSDKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA328E4B9D90899E6BC7FC9780CD385 /* FBSDKColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67C9843DC2B4557A9EE0C5D01604A0E7 /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A38272687E05C4229D23CB5DE59A4FD /* FBSDKBridgeAPIProtocolNativeV1.m */; }; - 6817DE148CDBD0D314AFC83255A645E4 /* FBSDKLoginTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B7F40A3681BE0DE011323E347C40F0 /* FBSDKLoginTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 683FC99BAEA8DDE9EBEE2EC93F949B36 /* FBSDKLoginManagerLoginResult+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D620CA6670E89627877735C51B3F6CF3 /* FBSDKLoginManagerLoginResult+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 626752EF7EB05FDEFB7DDBA7CE66B57D /* PicoKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5532DA336DCD3D611AC368D9A223817A /* PicoKit-dummy.m */; }; + 62A35225EE3C0267303CF46D18D50044 /* FBSDKConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6622A3A26DC48DF4080CC70D6A8E6CD1 /* FBSDKConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62E8346F03C03E7F4D631361F325689E /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B2D6B0395EC4DD61DFBE193203CD69 /* Response.swift */; }; + 6331364DCD208207D120923C0614A16D /* FBSDKAccessTokenCacheV3_21.m in Sources */ = {isa = PBXBuildFile; fileRef = 3650AD7E952BF7100B63991A57883BCF /* FBSDKAccessTokenCacheV3_21.m */; }; + 639F646ABB9A9E4D3666B6CDD155BDBD /* PicoXMLReader.h in Headers */ = {isa = PBXBuildFile; fileRef = E6480232EB96F2819CB3BCC5F0F73690 /* PicoXMLReader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 64D1DE8EA4BAACC7B802D787788E3F88 /* SOAP11Envelope.m in Sources */ = {isa = PBXBuildFile; fileRef = DA62BAE7BB85018E087EF3FA7C100C8C /* SOAP11Envelope.m */; }; + 652EE84BA55F2A6BD325768B753565D8 /* BFExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = B7E4C2544A661BB83AE834122300425D /* BFExecutor.m */; }; + 653C036B94D8543FB8FB1FDD38C7FFAA /* RequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A901F83EBEAF145244494EF7D6CB240A /* RequestSerializer.swift */; }; + 65AD76A5209F07993BCCF096FA03E254 /* FBSDKLikeControl.h in Headers */ = {isa = PBXBuildFile; fileRef = D27DCF962F745B174BD504543C4C801E /* FBSDKLikeControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 66533D7A594AA93C8C43EF1BCE668A74 /* FBSDKAppInviteContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2ED7E70F73B3C1767C61CB8848FE16 /* FBSDKAppInviteContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 66ECC384971FF9D783161F240FB96CB7 /* FBSDKKeychainStoreViaBundleID.m in Sources */ = {isa = PBXBuildFile; fileRef = 04B2CD3D3801849D84B5A9E493B186E5 /* FBSDKKeychainStoreViaBundleID.m */; }; + 6817DE148CDBD0D314AFC83255A645E4 /* FBSDKLoginTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD3183F52CE592128325219D88BC80E /* FBSDKLoginTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 683FC99BAEA8DDE9EBEE2EC93F949B36 /* FBSDKLoginManagerLoginResult+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EC778C88065DFE2000487B345F672483 /* FBSDKLoginManagerLoginResult+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68C148EE56D18F37FF7AAB71AF7F585C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 68F25493DF29423FEA798D2247A6C918 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E9F653A2B9096D9B942AF36AF450D5 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6A8B92B5BDFBEE6BD3F70901FB71A0B1 /* BFTask+Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EADAF8354E076C200F01AD3E52A05201 /* BFTask+Exceptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68F25493DF29423FEA798D2247A6C918 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4160851FE654599E47943F042571E6 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A37B6504924D65B10568589A7185B11 /* FBSDKAccessTokenCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 671AC4CDFE356DA36FFAF78D6E33070E /* FBSDKAccessTokenCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A8B92B5BDFBEE6BD3F70901FB71A0B1 /* BFTask+Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1DE87C8F229D16BAFF51F1CD2388BD /* BFTask+Exceptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6B091151AE965C9F5462FDD25CB5551B /* Pods-Vendoo-VendooUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F360CE6486A747945443BA0C06AC2C99 /* Pods-Vendoo-VendooUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B7DD32A130E3052BBB254E95E8897F5 /* FBSDKGameRequestContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DAB4E6850F562A49891BD2F721134D0 /* FBSDKGameRequestContent.m */; }; - 6BC497E6FA97D13CEFE6919C46F7EFF4 /* FBSDKLikeBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1696EFC8EA369560ED9338FA360ECD1B /* FBSDKLikeBoxView.m */; }; - 6C0346EF4F131C59680FB8DA3200AE1F /* SOAP12FaultcodeEnum.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FDF3E2A68787915419418623FAE5E4A /* SOAP12FaultcodeEnum.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6CBA87B13DCF3BB31FBC3F1CC4BBB7C6 /* FBSDKTriStateBOOL.m in Sources */ = {isa = PBXBuildFile; fileRef = 1485CD0D6CC46C66362314FFA0A959A6 /* FBSDKTriStateBOOL.m */; }; + 6B7DD32A130E3052BBB254E95E8897F5 /* FBSDKGameRequestContent.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC71964908DC3CC914637F79EA96CF9 /* FBSDKGameRequestContent.m */; }; + 6BC497E6FA97D13CEFE6919C46F7EFF4 /* FBSDKLikeBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72442121717D1628561BB98E53FB727C /* FBSDKLikeBoxView.m */; }; + 6C0346EF4F131C59680FB8DA3200AE1F /* SOAP12FaultcodeEnum.h in Headers */ = {isa = PBXBuildFile; fileRef = A083A10B54D386144A719D8A962051FB /* SOAP12FaultcodeEnum.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6C44D31EB0D12B10AEFA9430E0231820 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E4B8CBC5FAB360816FCBC9A92CAF25E /* _FBSDKTemporaryErrorRecoveryAttempter.m */; }; + 6CA76726D74BC974AC720E390CD78ED9 /* FBSDKCoreKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 517F2B91D47EC674D57663E5FCFC9C5C /* FBSDKCoreKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6DE785F0B2E1ED7669E819E49BA7DBA9 /* AeroGearHttp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4BD9D1803DACCD677E16D897C4986A4 /* AeroGearHttp.framework */; }; - 6E2B6054F217E3D01C59665D011B09B1 /* BFMeasurementEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E41D020269E4E75B44C7D9C75652F71 /* BFMeasurementEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EAAB8106D2D1D7625489FAF35223DBB /* AccountManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 886D7D03EBAC732A6A21ABD7EBCF211A /* AccountManager.swift */; }; - 6EF01843152A0624110E6E8CAB0BCA51 /* FBSDKContainerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEFAD237F62111CE519B3B3D8CEB628 /* FBSDKContainerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F59181990A639365B6BDCE65407275A /* FBSDKBridgeAPIRequest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 831F01F23D3F1DC8A1E13167976B0163 /* FBSDKBridgeAPIRequest+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F852F8B67F8A20BB296716E1AEE0AB7 /* FBSDKShareKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5193101046966C83A1A42EAA37AE6E /* FBSDKShareKit-dummy.m */; }; - 6F8F81979B066F27456733EB3BDD21FF /* FBSDKBridgeAPIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3C7FB15CC8A499B4E316FCF04D2E2FF /* FBSDKBridgeAPIRequest.m */; }; - 6FB287DB5361328A1AAFC6D644E94B07 /* FBSDKLogo.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7056B94E9F7C98902BD400A22CD9DB /* FBSDKLogo.m */; }; - 6FBD31B0BB27AAEFFFFDB275DD3AE781 /* FBSDKGraphErrorRecoveryProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FDCFC0010E47AC0BE5AE3E177D32528 /* FBSDKGraphErrorRecoveryProcessor.m */; }; - 6FDE95FB21B7F5E1EC7A9F49489DAC62 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E3B4BBF0885812ABC85A381066A943 /* AFURLConnectionOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7002E8961D24E86FD580DBAE8ECB8D5E /* FBSDKApplicationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A25AEEBB73C1A6F99CE31001CC8E7D5 /* FBSDKApplicationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7008126788B83DF17DEFE2568CA741A3 /* FBSDKCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF0F9821ABBDAACF5F415C842360459 /* FBSDKCrypto.m */; }; - 71A7E055D787374AA8F2EC002811AED3 /* SOAP12SupportedEnvType.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E46430AB0156C611FF7A4E3D4882A8 /* SOAP12SupportedEnvType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7333194276505D454DACD2603FEE0271 /* BFCancellationTokenRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = EB76ABEEC84D94281BBA33F8A707F52B /* BFCancellationTokenRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7384AFE0F0221D2843EF6451D653C441 /* FBSDKError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF40AE913CA0B12932E513EA49D973D /* FBSDKError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74022FE229C24EF067CBA98969CEE134 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A10466265173AB31436F0B7210B31F86 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E2B6054F217E3D01C59665D011B09B1 /* BFMeasurementEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA748AD3826125B2309C0E846ECDC37 /* BFMeasurementEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EAAB8106D2D1D7625489FAF35223DBB /* AccountManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53B15506F2A78DED777AB0971457590B /* AccountManager.swift */; }; + 6F852F8B67F8A20BB296716E1AEE0AB7 /* FBSDKShareKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A4FBD8B410E9E96539BAFB9D8A80081 /* FBSDKShareKit-dummy.m */; }; + 6FDE95FB21B7F5E1EC7A9F49489DAC62 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EA754B3A028704735298B9BF19A39296 /* AFURLConnectionOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71A3F252248185B6F92BC9186474CF1E /* FBSDKWebDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E96EE9608779D338859C3849A7E3CCE /* FBSDKWebDialogView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A7E055D787374AA8F2EC002811AED3 /* SOAP12SupportedEnvType.h in Headers */ = {isa = PBXBuildFile; fileRef = 53C4E8CF7470A7ECC205F50CE312F67B /* SOAP12SupportedEnvType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 722857CD50502969E884507B2B7806FB /* FBSDKGraphRequestMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D6CE48B9F9CACF5BD4149F45C812D86A /* FBSDKGraphRequestMetadata.m */; }; + 7333194276505D454DACD2603FEE0271 /* BFCancellationTokenRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = CCEDCA4188B6DAC9C404C7A3AF525E01 /* BFCancellationTokenRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74022FE229C24EF067CBA98969CEE134 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4B1C4CAE23CFE4D34D8DC798AD81CF /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7480883DDFB8F42068AFF34CAFA4183A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 74D81A016D09E77EC6592AF70252A6FD /* add_photo@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6064ECECE29155F4247517D0C00AF3A5 /* add_photo@3x.png */; }; + 74D81A016D09E77EC6592AF70252A6FD /* add_photo@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = BB38ED156886CB26B74967F0C4F9C319 /* add_photo@3x.png */; }; 75BAFB5D292A5AC28EBAC6EA8D73CFC6 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; 760438A92935D95218DB06E2E51ADA11 /* Pods-Vendoo-VendooTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E48063F76B420F3E35DAD13047D42C79 /* Pods-Vendoo-VendooTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 763D43357E0BE90EA6462FC331E8302F /* FBSDKUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 998D15982DC46B745B0595086744C788 /* FBSDKUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 763F76FF18569C1C701FA8B251DA3AFE /* FBSDKLoginManagerLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B27C96616209DB1E8C988C7A289AFC29 /* FBSDKLoginManagerLogger.m */; }; - 767C65F9CCCCA6B6E0A43C04594899BC /* FBSDKLoginConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 75B013B5CC469E61C3A5FCE922726DCD /* FBSDKLoginConstants.m */; }; - 76C1FA68EFCD242119622AE2CEB4D24F /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1EEE58FCE4838280DE4790FDDCC978 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76C72D9FA8C86EBBC7E3E4AF7F0B4BB5 /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D0010F5E558D2E0DD1C452C881BBAA6F /* UIImage+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76F96A14F0A8DBF44BD7E419DAF7B877 /* FBSDKLikeButtonPopWAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 273630BE380A291388E4950457CF8180 /* FBSDKLikeButtonPopWAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 771AD42E937BEEC7A076A4BF17648EF8 /* FBSDKButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BDD86C6317DD2E1A2D61337F22A55DE /* FBSDKButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 77BF46EE1E54C91A7080408F8767A3DF /* FBSDKShareVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 032369198D27ED73A6270FE2BA6EA7E0 /* FBSDKShareVideo.m */; }; - 78086867BF7BBED7E16245632C4E84CA /* FBSDKLoginError.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA9834FAC9B8FF918BDD38196090F4B /* FBSDKLoginError.m */; }; - 7996B7702DB8A5159CD112BE8CFA5224 /* FBSDKCoreKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D407F1FAF969C893C8548A561838CA /* FBSDKCoreKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7999F436677B92F6DDA1C3D45B67762F /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2374B3C414371278389E8BD50D6C01 /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 79D287D48B2A81896F365CA21F0B27D6 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5C411FA498BF0C8663F9BA74B398FC /* UIWebView+AFNetworking.m */; }; - 79F94D1ECF73B695F68BBBF32E3FECDA /* TYMActivityIndicatorView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F91B1466145C07925698D1F7162CB9 /* TYMActivityIndicatorView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A58F060AC2558071BD5B0B15AE596C6 /* PicoWritable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0422CFF19F0CCFB878B807ABC01C7866 /* PicoWritable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B48852C4D848FA2DA416A98F6425869 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63D541600AB0BC0B46F7A0D8896AC894 /* ServerTrustPolicy.swift */; }; - 7BB98E50240143972C28AA9A13EBC3D5 /* BFAppLinkResolving.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AF52AC3FBAF8F0E6DD211EC27DCCB7 /* BFAppLinkResolving.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C01D468C87DE13E87024F391334136E /* PhotoCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 487DE7F49F11B7D2AC55EA1944166AAF /* PhotoCollectionViewDataSource.swift */; }; - 7C0A600BF8CCA0567E34D7525B1E3885 /* FBSDKSettings+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFDB9B82E6870E8F4E1F563CB761F2B4 /* FBSDKSettings+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C708C62615F289B6A8B75A24FE22879 /* SWRevealViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D923143858CA62956A9EF95B09F354D /* SWRevealViewController-dummy.m */; }; - 7C7E248D341E116E1A7B8C16A8F58C6B /* BFTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A460517F9FC1CD644C63D90CA376D69 /* BFTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7D68A3720CC3692C203FAAD224FAB14A /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34FF6B5D4B9E52421A24E3412E1278E9 /* Config.swift */; }; - 7D81ACFEF8FF06EEE9898A0FA03B0E99 /* TYMActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 657944D0882FE5E3659E6739B34E4AC3 /* TYMActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7624340250C98C860968CB3CE965DB10 /* FBSDKServerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CF747078C75A9D322D6D54646F946BBE /* FBSDKServerConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 763F76FF18569C1C701FA8B251DA3AFE /* FBSDKLoginManagerLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8440EBD3104FBD8FFDE088073125AFE0 /* FBSDKLoginManagerLogger.m */; }; + 765D6270928B1D3D4A3662561E5C1A11 /* FBSDKIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACE998D41526CE7C774B1DF98EF1437 /* FBSDKIcon.m */; }; + 767C65F9CCCCA6B6E0A43C04594899BC /* FBSDKLoginConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = CBFA5A620C46C051E6F87C8B7CFF5BF9 /* FBSDKLoginConstants.m */; }; + 76BE7FCD0B1E5F1143211AC0E1C8169D /* FBSDKGraphRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = E50CA9D3CAC4277F213EB2CE740F6637 /* FBSDKGraphRequest.m */; }; + 76C1FA68EFCD242119622AE2CEB4D24F /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C28443FE1B08EC27CB75A33D9C094B7 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76C72D9FA8C86EBBC7E3E4AF7F0B4BB5 /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C6724F16F5795CAD19B413E097A61130 /* UIImage+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76F96A14F0A8DBF44BD7E419DAF7B877 /* FBSDKLikeButtonPopWAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB238066DCCE7713E1B30B8DAB5B9FA /* FBSDKLikeButtonPopWAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77BF46EE1E54C91A7080408F8767A3DF /* FBSDKShareVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = B8936B9D91297AD2089196C777FD7F3C /* FBSDKShareVideo.m */; }; + 78086867BF7BBED7E16245632C4E84CA /* FBSDKLoginError.m in Sources */ = {isa = PBXBuildFile; fileRef = F182DC4D01A6F4D337DDE7CAA80E8879 /* FBSDKLoginError.m */; }; + 7811ACFF0D495E36145314F50695E6FB /* FBSDKAccessTokenCacheV3_21.h in Headers */ = {isa = PBXBuildFile; fileRef = A7786E8F84AAC0ED9A5F0943B3791069 /* FBSDKAccessTokenCacheV3_21.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F2DFD0001D91AE4AD449C3244FB44D /* FBSDKBoltsMeasurementEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = D6AE172E9ADEB0901EDD89F9D078F717 /* FBSDKBoltsMeasurementEventListener.m */; }; + 7999F436677B92F6DDA1C3D45B67762F /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A0794389E8BFA7DB077B10FDDEC57D /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79D287D48B2A81896F365CA21F0B27D6 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 13CB1FA37E1CA867819AB54CF99BA3E3 /* UIWebView+AFNetworking.m */; }; + 79F94D1ECF73B695F68BBBF32E3FECDA /* TYMActivityIndicatorView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 641911AFD95B862873D0DF97FC94B94E /* TYMActivityIndicatorView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A58F060AC2558071BD5B0B15AE596C6 /* PicoWritable.h in Headers */ = {isa = PBXBuildFile; fileRef = C84640E84123682719DCE1D4DE3A88D0 /* PicoWritable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A66154FF8B8CAD9887477157E2EE695 /* FBSDKCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B896BCD91B716DC30E3ED980093EC0 /* FBSDKCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B48852C4D848FA2DA416A98F6425869 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FF1E518119DEB300F48FD1D92CC0554 /* ServerTrustPolicy.swift */; }; + 7BB98E50240143972C28AA9A13EBC3D5 /* BFAppLinkResolving.h in Headers */ = {isa = PBXBuildFile; fileRef = 6229510BDF0DA0019D2EB763FB95FD77 /* BFAppLinkResolving.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C01D468C87DE13E87024F391334136E /* PhotoCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9190E4A2144304CA16736182E069C70E /* PhotoCollectionViewDataSource.swift */; }; + 7C3C789C4C4F8688A60A682EC2036D7D /* FBSDKBridgeAPIProtocolWebV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFF000CBA384E107EBCA5E1358A9BBA /* FBSDKBridgeAPIProtocolWebV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C708C62615F289B6A8B75A24FE22879 /* SWRevealViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1D7C9953DE734B726C69D64122D8D5F /* SWRevealViewController-dummy.m */; }; + 7C7E248D341E116E1A7B8C16A8F58C6B /* BFTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE46316993C53B5E6274DA9F4A6E104 /* BFTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7D68A3720CC3692C203FAAD224FAB14A /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE18E5580BBB13A7DA169642350B8147 /* Config.swift */; }; + 7D81ACFEF8FF06EEE9898A0FA03B0E99 /* TYMActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = F1C2898D0AC0043B1CB05FD4112E74E1 /* TYMActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 7D8F17E4DCB3809E8BD5AB5CBF4DAD24 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; 7E4FFCA3E9CBDF739BAC1B866B13E17B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A9EB92AC1D944731F800A2630030A9DA /* UIKit.framework */; }; - 7E9100394CBFFADF64B26C6F4373F78E /* FBSDKAppInviteDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = FD8F5E8625B631F1FAE445F5514F36A4 /* FBSDKAppInviteDialog.m */; }; - 7ED5EB3F1C101076506DB68E0BC5B6AB /* FBSDKAppEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9BED0D6C773E3725A004F799012C45 /* FBSDKAppEvents.m */; }; - 7F70DD03F9ACE65B00724DCA0309602D /* FBSDKAppEventsState.m in Sources */ = {isa = PBXBuildFile; fileRef = 13E485FD2622941556EC545D8E597CD9 /* FBSDKAppEventsState.m */; }; - 7FB067C07D2C78201A78245B76CC17E9 /* PicoClassSchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 6365223D2EE04FC4D1CBF866F038B308 /* PicoClassSchema.m */; }; - 808E738E1648120C1045BB75BB8AC058 /* FBSDKCheckmarkIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = F76E54B8245E01726AF6EF16AD3827E4 /* FBSDKCheckmarkIcon.m */; }; - 808ECA8D577A4288E2F06046DE517EED /* Albums.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A7535F846CF37530222EBC3F982229D3 /* Albums.storyboard */; }; + 7E9100394CBFFADF64B26C6F4373F78E /* FBSDKAppInviteDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 08868D332E9A307BCDD76B67933CD4F3 /* FBSDKAppInviteDialog.m */; }; + 7FB067C07D2C78201A78245B76CC17E9 /* PicoClassSchema.m in Sources */ = {isa = PBXBuildFile; fileRef = D812467F81B8AA497BC37E03A16E1432 /* PicoClassSchema.m */; }; + 808E738E1648120C1045BB75BB8AC058 /* FBSDKCheckmarkIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = F39AA9E920379DBB3184A314F5C45AB4 /* FBSDKCheckmarkIcon.m */; }; + 808ECA8D577A4288E2F06046DE517EED /* Albums.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F3A7188D7281E637DF8E97E65D90A844 /* Albums.storyboard */; }; 80B976E03ABBC93F3D35CD0380D59E88 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */; }; - 811303DF3449C2B3B67CE2B601C0ACD0 /* SWRevealViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2F303A3598169884F80D7E47D14E6F /* SWRevealViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 812CC9954198FB632F3670E2D554898F /* FBSDKShareConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = BD896B3E9F6212E57F7DFA89C796A56A /* FBSDKShareConstants.m */; }; - 8170C4AC05E84ED31A9D33A4CD205D2C /* BFWebViewAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A40D0DDD7DC17526BD52BCF79500DB7 /* BFWebViewAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81A1CBDACA3848828BD69C8EFE2C8D7C /* AeroGearOAuth2-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FDDEF84189F43CFB074278587F13019 /* AeroGearOAuth2-dummy.m */; }; - 82008ED885D5AB3464812191AB960057 /* FBSDKShareVideoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = A95B66EEBACD15151751D10533D6728B /* FBSDKShareVideoContent.m */; }; - 828A250670EEC2897DACA767080A8CA7 /* FBSDKLoginManagerLoginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 75717B0EE6927EDD4C83D0DA97D0FAD0 /* FBSDKLoginManagerLoginResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 82CE83B84A5A559972A93E174AD6411A /* OAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70576938AE450669B1DB018253E1AC6D /* OAuth2Module.swift */; }; - 8347B4DF59FC5B188430E56C185F2364 /* Dictionary+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B23270B90154C8717C59ED97E384A6D /* Dictionary+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 8357FE41949BE1FCF43C1D2879DB6A29 /* PicoCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 552F8C6AFBDAC976539CCE95279EFB00 /* PicoCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8493A1022392AFF1965FC3FAB4607414 /* SOAP11Detail.m in Sources */ = {isa = PBXBuildFile; fileRef = D672054D42DA9801632183EF1C590B71 /* SOAP11Detail.m */; }; - 85E8D739830AC6F6E98D7B43A2932099 /* String+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACF40FC7D507D88B3E42184744763A9D /* String+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 86627AB26AAD2D5D5B60FD98BF9F3BE1 /* FBSDKConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E09A4D2744DCD15D59FFBEC09F06FE /* FBSDKConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 86A4C9883826DA7856397C1EE3441257 /* FBSDKShareLinkContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A78489641F4A18BFD6D66C4D6E6C758 /* FBSDKShareLinkContent.m */; }; - 86ACEBDE1686451F2370C05812756E23 /* FBSDKConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B81CC9EF67BDCEF23158C3FFEAA9F5A /* FBSDKConstants.m */; }; - 86C7B4DC7245C1E31565C74EBC34B5A8 /* FBSDKLoginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4331801A35FEB709F666C93CD2F86E /* FBSDKLoginManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 871DEEBCCD0B2F702C162DF9F6AD1F30 /* OAuthSwiftCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5723F2733FF874F7D39410C656B6D874 /* OAuthSwiftCredential.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 878FB8F86BAE97E0179D51D1569FBB60 /* BSImagePickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DEE2A1DC3205A63F646221427149EBC /* BSImagePickerSettings.swift */; }; - 87FB0D874B72B2C3475F51AB24F61817 /* FBSDKAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF8C76E844CB9E2F51EE0CA89497C4F /* FBSDKAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 885EA75AEF9C1C5631087D67494599F1 /* FBSDKLikeControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 41480A800CA8D057E4E67FE080FADDE1 /* FBSDKLikeControl.m */; }; + 80DC9A0369F4F2263C024EFDB1E73EE4 /* FBSDKOrganicDeeplinkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E41C0152BC921D4AC9B6D87D389D8D /* FBSDKOrganicDeeplinkHelper.m */; }; + 811303DF3449C2B3B67CE2B601C0ACD0 /* SWRevealViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C25EC2E440052EE94EC320E7B078256 /* SWRevealViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 812CC9954198FB632F3670E2D554898F /* FBSDKShareConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 201D4DBC404971D6752E70BDEF1D72D0 /* FBSDKShareConstants.m */; }; + 8170C4AC05E84ED31A9D33A4CD205D2C /* BFWebViewAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = C3A341A807134877850AD294194F9CF3 /* BFWebViewAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81A1CBDACA3848828BD69C8EFE2C8D7C /* AeroGearOAuth2-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EC01DCFCC4530268DFE406D097270678 /* AeroGearOAuth2-dummy.m */; }; + 81FDC061E5AC74936F536C7704926B2F /* FBSDKTriStateBOOL.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D961BB58853D24F700F6704AB7BF748 /* FBSDKTriStateBOOL.m */; }; + 82008ED885D5AB3464812191AB960057 /* FBSDKShareVideoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F026AA9D124A3205922BA305780C7F /* FBSDKShareVideoContent.m */; }; + 828A250670EEC2897DACA767080A8CA7 /* FBSDKLoginManagerLoginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = FB07DEFFE137B3AABE7C362797093718 /* FBSDKLoginManagerLoginResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82CE83B84A5A559972A93E174AD6411A /* OAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2FA13DCA5DDC6B6D77ED17F8ED7BB59 /* OAuth2Module.swift */; }; + 8347B4DF59FC5B188430E56C185F2364 /* Dictionary+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEEE4B1E8958126C54B40ACA56D0169 /* Dictionary+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8357FE41949BE1FCF43C1D2879DB6A29 /* PicoCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A87F95DC8203D14B80793CACF1ACF1 /* PicoCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 835AA610077197F037D055C1A48006F8 /* FBSDKOrganicDeeplinkHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 667491E91CFC2F668ACD3FC9705E8267 /* FBSDKOrganicDeeplinkHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8493A1022392AFF1965FC3FAB4607414 /* SOAP11Detail.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A628B6C9BA20CFDBAC57EF7555C30D6 /* SOAP11Detail.m */; }; + 85E8D739830AC6F6E98D7B43A2932099 /* String+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193CF8FE6A437E2F5A48AC8BB33A1AC2 /* String+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 86A4C9883826DA7856397C1EE3441257 /* FBSDKShareLinkContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1F991094F696B84A482E0D877166D8 /* FBSDKShareLinkContent.m */; }; + 86C430A858B0BBD373E0D33ED948CB2A /* FBSDKConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F58A7609C810B149F5829F5CE6C1C6B5 /* FBSDKConstants.m */; }; + 86C7B4DC7245C1E31565C74EBC34B5A8 /* FBSDKLoginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C58868F6EFAF5E600300FA7D336D544D /* FBSDKLoginManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 871DEEBCCD0B2F702C162DF9F6AD1F30 /* OAuthSwiftCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAF07E693A6AF15C0FFA931C466133C6 /* OAuthSwiftCredential.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 878FB8F86BAE97E0179D51D1569FBB60 /* BSImagePickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEC3B1B9BBDD0062CE508687146F41C7 /* BSImagePickerSettings.swift */; }; + 878FFF34B876888F8102C8748CA5350B /* FBSDKDialogConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D0AEA58B60BDDF19F600990C4A30640D /* FBSDKDialogConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87B967838FEAC041D4E66F302AD0D45B /* FBSDKBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6762DBC29BFF429D71E53C052696B8 /* FBSDKBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 881E572AF750505FE7362B3580A6422A /* FBSDKErrorRecoveryConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 160E5A71B22B8B1A18E97BA919B5F144 /* FBSDKErrorRecoveryConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 885EA75AEF9C1C5631087D67494599F1 /* FBSDKLikeControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 38EDA3D1F656F3D3694F14675525A11C /* FBSDKLikeControl.m */; }; + 8882B054D62AAD6C9682B857A338DC11 /* FBSDKBridgeAPIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F2393AE4A2F59F53531D0BEBE3E84C8 /* FBSDKBridgeAPIResponse.m */; }; + 88B1A3A8E4D30F1BE8C28A84AED31EBD /* FBSDKViewImpressionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = DF614CE1B00F6AED7D8B4B7FF7780A92 /* FBSDKViewImpressionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892A266BC8D285F22E625625249E757A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 89553EB9F15F76B70F62E8F69BB1684C /* AlbumTableViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D80E1C76A1D754C95364D1348D4C126D /* AlbumTableViewDataSource.swift */; }; + 89553EB9F15F76B70F62E8F69BB1684C /* AlbumTableViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD78F5FCB8D4F937BFC951D5EAA34932 /* AlbumTableViewDataSource.swift */; }; 89B59BD52908BA3B2EEED23398CF79E6 /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */; }; - 89D320F81D7E49E88352493C2FEB0714 /* PicoSOAPClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 728250A42897ED5C6F6E4620AAC65540 /* PicoSOAPClient.m */; }; - 89DB4F68F200EACC31577431D7AAB64A /* FBSDKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AC85F823B6A43EA175D2E6FAF7318FF4 /* FBSDKMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B01AE7A2B6926117AF7AA7F921DB708 /* PicoConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE72FEA2F43AED48946AFC19793F24B /* PicoConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B661D874626A9D1A8B4C34B6A17C479 /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 868DCF6FDE1015433F1DDF2E38D64C1E /* SwiftyJSON.swift */; }; - 8BB11C8D9F58C1E81A26BD7EE74093D1 /* FBSDKShareAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BEA5EC0AB6FAB0B19DCAF3A724F4124 /* FBSDKShareAPI.m */; }; - 8BB5E13770325286C85E5205E0966FD7 /* PicoSOAPReader.h in Headers */ = {isa = PBXBuildFile; fileRef = C1118BB5F6DDA46AAAB877C937B1F35A /* PicoSOAPReader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8BF401C38065E3AC9BD840243F4DD820 /* FBSDKAppGroupAddDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 0840F65EC8E68957C520055A54DB2D44 /* FBSDKAppGroupAddDialog.m */; }; + 89D320F81D7E49E88352493C2FEB0714 /* PicoSOAPClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC593BF6CC7AAD5D815612BE37B2D6D /* PicoSOAPClient.m */; }; + 8B01AE7A2B6926117AF7AA7F921DB708 /* PicoConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4549489BDB508FBA017742B2DF350A31 /* PicoConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B661D874626A9D1A8B4C34B6A17C479 /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A1AA8C24BE2B88B96B70AD3C912F4E1 /* SwiftyJSON.swift */; }; + 8BB11C8D9F58C1E81A26BD7EE74093D1 /* FBSDKShareAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = AAFDFDDE872EA0BB05E999E32C04383A /* FBSDKShareAPI.m */; }; + 8BB5E13770325286C85E5205E0966FD7 /* PicoSOAPReader.h in Headers */ = {isa = PBXBuildFile; fileRef = CD70D3777B3D418D3209786B47918E43 /* PicoSOAPReader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8BF401C38065E3AC9BD840243F4DD820 /* FBSDKAppGroupAddDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 60CA845C2D440E3DE8D118AB6EAA2B9F /* FBSDKAppGroupAddDialog.m */; }; 8C207B123C54270F58E604A28E300A59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 8C7CABBE4EC64C461AF9AE36EA44C050 /* FBSDKShareMediaContent.h in Headers */ = {isa = PBXBuildFile; fileRef = B1FC4DD456599D262758B5E9C8B2DC0B /* FBSDKShareMediaContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C874B306AE5A045C9B7FD91B2CC8D31 /* PicoConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAE2D13588C432E6B57CBCD939C6B4B /* PicoConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D7EA0A6E5D522BC65CACC0BA7D23B0E /* SelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D9D0DA1ACDA3CDC1B76D9B740A1879 /* SelectionView.swift */; }; - 8DA408A27B20CFD43FDA70C8FC647AC9 /* FBSDKLogo.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EA5490BD2D8F3B93640F57466D86F1 /* FBSDKLogo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DA9AA49F47C0E5D647CF3C96180843B /* PicoXMLReader.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E2FF3863A99E97ACD3D94F345939F3 /* PicoXMLReader.m */; }; - 8E678F3A93AF7E81BD5B4DE16E9FAC71 /* FBSDKMessageDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = FE27E73AB9D1AB7B10C63C2322C0AA58 /* FBSDKMessageDialog.m */; }; - 8EB11202167FCDDF1257AAAB1D1FB244 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1498D3AB8502D993842832DE34046C3 /* Alamofire.swift */; }; - 8EDDCAE539DCE9EA7BCC1895C4C4A567 /* FBSDKSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E1044C75CB962E20676E677131B7087 /* FBSDKSettings.m */; }; - 8F07671E7B41068F6BDBBEF4E39D322A /* PicoConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 6985E24A3958AF81630E6675F2B49884 /* PicoConstants.m */; }; - 8F51C91CAE6EA947E9C861F49919BF22 /* PicoXMLClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6642E596F792AF16DC5C1AB3B08BEC72 /* PicoXMLClient.m */; }; - 8FD9899D436F154F3491C5D308B57B32 /* FBSDKSharingContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 97ECE805E43DC2A61EB23ABF06EB1EA6 /* FBSDKSharingContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C7CABBE4EC64C461AF9AE36EA44C050 /* FBSDKShareMediaContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C69E366BEBF527B7F1AF310931A8A7 /* FBSDKShareMediaContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C874B306AE5A045C9B7FD91B2CC8D31 /* PicoConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC4E5A663C0014AB450F143CC83F3D8 /* PicoConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D2CACA43E62A632A30B1915BC71B71B /* FBSDKAppEventsStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CABEA739FE0AE210EFF74FA03EC0792 /* FBSDKAppEventsStateManager.m */; }; + 8D577F5FA92B50A7BB0443FA1B54DFE8 /* FBSDKAccessTokenCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B91A3F7B4257AF8B4D55A0D2B00B4F /* FBSDKAccessTokenCaching.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7EA0A6E5D522BC65CACC0BA7D23B0E /* SelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224EF1E0BE2877039FB4B94A04308D90 /* SelectionView.swift */; }; + 8DA9AA49F47C0E5D647CF3C96180843B /* PicoXMLReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D1AE81796DC5124809B3890F6B175A /* PicoXMLReader.m */; }; + 8E678F3A93AF7E81BD5B4DE16E9FAC71 /* FBSDKMessageDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = ADB0920F0C6F8F66D375388494BEE0CB /* FBSDKMessageDialog.m */; }; + 8EB11202167FCDDF1257AAAB1D1FB244 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96B851599575E2E0F9CD816FCED76611 /* Alamofire.swift */; }; + 8F07671E7B41068F6BDBBEF4E39D322A /* PicoConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C06F5719DBF3249A009D906F77DD55 /* PicoConstants.m */; }; + 8F51C91CAE6EA947E9C861F49919BF22 /* PicoXMLClient.m in Sources */ = {isa = PBXBuildFile; fileRef = BA479F4FE94277EA3120D5F7E1B990FE /* PicoXMLClient.m */; }; + 8FD9899D436F154F3491C5D308B57B32 /* FBSDKSharingContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B51A6BF0322300A5842DABA3C1397E /* FBSDKSharingContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8FFE0CA5DFE3379BBDA253EBFF2D07E2 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */; }; - 9008E52F56E5C0AE4CC4747B573D404C /* SOAP12UpgradeType.h in Headers */ = {isa = PBXBuildFile; fileRef = 268C0B06B14A4BCDE90E3F5E70B93A61 /* SOAP12UpgradeType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 903E8BA75D09A05881EB2DD3F622CCF4 /* PicoDateConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4ECE6267F2839D6ACCA3EBEF29942E9 /* PicoDateConverter.m */; }; - 911E724303BA23E8A474DD386FAC9C2B /* PicoSOAPWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEA5BCBA51E22D7D5ADBCA12734090C /* PicoSOAPWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 917B32BDBDF0928BAFF4201C924BA155 /* FBSDKUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = DF2271DD0897F59E56F8E7966E5AC243 /* FBSDKUtility.m */; }; + 9008E52F56E5C0AE4CC4747B573D404C /* SOAP12UpgradeType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE12FFDA530FF3488C11F9B8D176B30 /* SOAP12UpgradeType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 903E8BA75D09A05881EB2DD3F622CCF4 /* PicoDateConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = CE4B6983282888AEA552E71CF6E31064 /* PicoDateConverter.m */; }; + 911E724303BA23E8A474DD386FAC9C2B /* PicoSOAPWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D385E8BB079D515E729AEA5090ED4D /* PicoSOAPWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 91C09AC2A52ED69A27C8D923139A006F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 928AA17E8C87D9559CEC0F3EFD75EACD /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */ = {isa = PBXBuildFile; fileRef = C58103D81E9C42491AA9266AE753D199 /* FBSDKBridgeAPIProtocolNativeV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 932C49EB7BA256473D43C610DA6BF386 /* FBSDKProfile+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BA5CB60B2E0632713031C09DA8FF35 /* FBSDKProfile+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93CB179F47B5E343CCF361D181638E2E /* FBSDKShareDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 359E31341B1154FBF255EEACA441C5CC /* FBSDKShareDialog.m */; }; - 93D03012CEB9E4EE27E6DB43412D6FF4 /* SOAP11Body.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C5F771D232A4C7C5491ADB514E62CB /* SOAP11Body.m */; }; - 945C9834347A969CDD4FB9A5AB9FF0E0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF1E12CC3EB15DB99FCE3C4F8364295 /* AFURLSessionManager.m */; }; - 9469DF81ECB494E84675969B5E13374C /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 383EB2C549433904BE20DE9CF33B6800 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 956CD88D16E0E4A464C3B382FAEEBFAD /* SOAP12Detail.h in Headers */ = {isa = PBXBuildFile; fileRef = F10E09F24A3B6BA2E4BD36FCBAB32383 /* SOAP12Detail.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 96247D22CC837A06A450BB49F1D2F79E /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED18EAECBF26A7A58C5BCC9ADFED3D0 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9769B82453864B392235EDCAA2D87D47 /* UntrustedMemoryOAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7432AAACA1A0F6AF9BE4E9B44472450A /* UntrustedMemoryOAuth2Session.swift */; }; - 97CD6CF37BB5BE78C2A234AC897802B7 /* FBSDKLikeBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8179B84003C81BB0751EE43A1DCABA9 /* FBSDKLikeBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9817C864118A1756B997A687DC14B84A /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1422D5F425FF8918E84920784D3551D /* SwiftyJSON-dummy.m */; }; - 98AF6E202E68E9B4F22202842DC0D619 /* FBSDKSharePhotoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = BA7B9A6B84F8456FE9697EFA139611D6 /* FBSDKSharePhotoContent.m */; }; - 98CCDEA46756A3A8A0FC9B9472E682B2 /* PhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AE0BBD7A0874B2672F5EC0AF4575B96 /* PhotoCell.swift */; }; - 9991B7ED54593BD5F26EF68DC59E1D4B /* FBSDKLikeActionControllerCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DA75AB0F3BE8C976FD171BC3ACF4FD4D /* FBSDKLikeActionControllerCache.m */; }; - 99AC88D23F7F3D5E609540D9EED14123 /* OAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5DE4D754EE820BB60C454F9F10447F9 /* OAuth2Session.swift */; }; - 99BCC2F48031C4DF19C25EC274DB057F /* FBSDKSharing.h in Headers */ = {isa = PBXBuildFile; fileRef = C489FB9E0E070EC28E945BF04E301177 /* FBSDKSharing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 99FA28E0A77EBF35E1C94E6C5851DB44 /* BFCancellationTokenSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC5191945366DAC35747F2456E28998 /* BFCancellationTokenSource.m */; }; + 926730F2DB9401169D6D4C546BDFDCCB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 92D2355637AB086051E9F16001AE7F3B /* FBSDKDynamicFrameworkLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CA0B137E7412D18B7FB8CD2101CAA45 /* FBSDKDynamicFrameworkLoader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 93CB179F47B5E343CCF361D181638E2E /* FBSDKShareDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EACF8725C6388E98F1AE858899605C /* FBSDKShareDialog.m */; }; + 93D03012CEB9E4EE27E6DB43412D6FF4 /* SOAP11Body.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD4E1575F3248B8734677F17536F00E /* SOAP11Body.m */; }; + 945C9834347A969CDD4FB9A5AB9FF0E0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE772E1233B4FCBAEBFC60D50D2F4C32 /* AFURLSessionManager.m */; }; + 9469DF81ECB494E84675969B5E13374C /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0319E11B04CF83F03018A52A1B70A418 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 956CD88D16E0E4A464C3B382FAEEBFAD /* SOAP12Detail.h in Headers */ = {isa = PBXBuildFile; fileRef = C0ADAA6DA3AA7B912E11408314681B3C /* SOAP12Detail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 96247D22CC837A06A450BB49F1D2F79E /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A1448D48335AAE4B529604752B89B8A /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9769B82453864B392235EDCAA2D87D47 /* UntrustedMemoryOAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19D706458CBB3CAA76E5E5827A9E9BB2 /* UntrustedMemoryOAuth2Session.swift */; }; + 97CD6CF37BB5BE78C2A234AC897802B7 /* FBSDKLikeBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 322547E7E04FA5908825574BBFE285B2 /* FBSDKLikeBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9817C864118A1756B997A687DC14B84A /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3C0C7B56E945E5783FD1836162E7D7 /* SwiftyJSON-dummy.m */; }; + 98AF6E202E68E9B4F22202842DC0D619 /* FBSDKSharePhotoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = CADFC76B44850C7946B50E9820B70ACC /* FBSDKSharePhotoContent.m */; }; + 98CCDEA46756A3A8A0FC9B9472E682B2 /* PhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E710A0B01CE73B1EBF047D08A33B860 /* PhotoCell.swift */; }; + 992769DF4C822CA5A78904E29E27F5E4 /* FBSDKCloseIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 488E13EB7B965538D660B1FC0F4D525E /* FBSDKCloseIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9991B7ED54593BD5F26EF68DC59E1D4B /* FBSDKLikeActionControllerCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1412E8DACE8DE3F85C8D36EF981DE70E /* FBSDKLikeActionControllerCache.m */; }; + 99AC88D23F7F3D5E609540D9EED14123 /* OAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = D98A44FCC328A7E6E5DEBEAA316E434B /* OAuth2Session.swift */; }; + 99BCC2F48031C4DF19C25EC274DB057F /* FBSDKSharing.h in Headers */ = {isa = PBXBuildFile; fileRef = A6A7313EE0477F6F6B8E4BD936890B10 /* FBSDKSharing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 99FA28E0A77EBF35E1C94E6C5851DB44 /* BFCancellationTokenSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B262302BC70CCCE70E413574FCB85D6 /* BFCancellationTokenSource.m */; }; 9AA1F38B13D6C8E732014B430FD80EC3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - 9AE3BB10BC5F5D2AE74A19D30917617A /* FBSDKDialogConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = EB342C66340F0F9CC8BC06EA44FB9716 /* FBSDKDialogConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AEF21BC71A0C2AF841513A013F197EC /* FBSDKApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 72245D286497643AEC39CFD51C055F36 /* FBSDKApplicationDelegate.m */; }; - 9B045FC64D2A32D380593AEA86A28904 /* Bolts.h in Headers */ = {isa = PBXBuildFile; fileRef = D5230F3C993EF53931931F6A58EBBECD /* Bolts.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9B209880BF6C678EBB9FE3B5E1AFED77 /* PicoDataConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05511F985C1A4179E3E9024B07BE3DCB /* PicoDataConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9BA81C3A00FBFB0269E1F502C7CA7111 /* SOAP11Envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7CC12D5F3E06BF8E801CE52A7A74D4 /* SOAP11Envelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9C54F07A5D6128AEA08BE4131CCCF746 /* FBSDKPaymentObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 1659A098D97B7F23B12651594133C44F /* FBSDKPaymentObserver.m */; }; - 9DF0BDC4A549EEFB599696F517AF5E93 /* SOAP12UpgradeType.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A478018630430D50CB7CF361E5AB164 /* SOAP12UpgradeType.m */; }; - 9E40001D7D2CAC32039C59FC0208A7CA /* Bolts-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5458EC8B29B93BCD0F4DB01B9B129A /* Bolts-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E795055729E8F398250A5687BB00AE2 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 144D5484885E6C90AB797898C08E7374 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9ED4B168116CB499803EC612E1DB1396 /* FBSDKGraphRequestConnection+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A9A8FCBE779F8A7ACE59BD1AE2066F /* FBSDKGraphRequestConnection+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F311BFDD71F019984158BF9906299F2 /* PicoBoolConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC243D2E1C4F2FC292C0E39E689B5F0D /* PicoBoolConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F756E533FBC1ECD87F8F13FE411BD51 /* PicoBindingSchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 2811C81F012D28F9EE3BED52201D1727 /* PicoBindingSchema.m */; }; - A0DF7E397B57D50B5E89228082DB4361 /* FBSDKShareMediaContent.m in Sources */ = {isa = PBXBuildFile; fileRef = C1ACB5EDF85279E3FD1D9AEBB80F4CEF /* FBSDKShareMediaContent.m */; }; - A1A522460FB8F634AEA3F48F9C0FC7D4 /* NSDate+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = B827D1699F32E2F4CAC5D644CFF639D1 /* NSDate+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A1A90659ED5B7540845C8185F8606FB9 /* FBSDKTypeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D03884E6D124364437EC429FFB2DF62 /* FBSDKTypeUtility.m */; }; - A234CD03F89584D0547A5D7D999E03C5 /* PicoSOAPReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E305ED98B2F8952D7CDA42A7ADFBE9 /* PicoSOAPReader.m */; }; - A28B68F8AF4A8ED3F8DEDF23CFCA8FEC /* FBSDKAccessTokenCacheV3.h in Headers */ = {isa = PBXBuildFile; fileRef = 037BEC0658766E3CC7D1521E3D8314B5 /* FBSDKAccessTokenCacheV3.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2F0870136D90D9CE7905634CBEC46C2 /* SOAP12Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 09523AB3CD75B683590559B093F010C0 /* SOAP12Body.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3CE342B34D0DAA7BE2AA45BEF94CAFC /* BFAppLink_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1217C16EE78E51CB579D919EFC117D8C /* BFAppLink_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A411DDDACF2FE64E4123D2654049E331 /* BFMeasurementEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BC96B2330EF98C37540EB7E74CDE2055 /* BFMeasurementEvent.m */; }; - A4229F7353B5AF589AD6BF2EAC31F1E7 /* UIButton+NoAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7F5C2E34CDB1EC74E0074099A8FF35 /* UIButton+NoAnimation.swift */; }; - A484BD167B628487BBAAA674F5DB7B1A /* FBSDKCloseIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DCDACB474AC3ADD768D6B1C3DC646FE /* FBSDKCloseIcon.m */; }; - A54F557F6175E445E98C30B98B5A3AD6 /* FBSDKSharePhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = A43EB3A8DCD0A4C27452C8900575B96D /* FBSDKSharePhoto.m */; }; - A6245406942E1B12CA6B3037098E854F /* PicoXMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F86ECA1EA6EDABB24AF66849570899 /* PicoXMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A69128071A53DBC4882CC8DC76782334 /* FBSDKLoginTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADAAE793D80602C9B4C2663F838B071 /* FBSDKLoginTooltipView.m */; }; - A7D274ABDE3D32AE032C1B43FCD12B81 /* SOAP12Faultcode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DA66CAE047B220F692A33AB8BBA621 /* SOAP12Faultcode.m */; }; - A7E04563503B066374A95EDAFD8104DA /* FBSDKURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 98DBA61E57524B271DACDBF349DC5DB6 /* FBSDKURLConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A877EB9CF2930345DD962B4BC0D24959 /* BFTaskCompletionSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4F3DD6A7BF4185DFE772EA964B09F7 /* BFTaskCompletionSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A8E32D941D75EC298C7E256A3C6D31D4 /* Int+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C65B098C671D17C341DD62FC173ECFB /* Int+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A972F072AE0487FC7C5135B086C51F7D /* OAuthWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17AEA9A9B2375BC5CE57EA3B2727844A /* OAuthWebViewController.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AA0B9C265F96CA310C674C330D4C5592 /* Locksmith.h in Headers */ = {isa = PBXBuildFile; fileRef = B9791ABFFE20ED94BF192C7531A3A38F /* Locksmith.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA314156AC500125F4078EE968DB14C6 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = A185AC5E050F21355385EA759FE5EEF1 /* Result.swift */; }; - AA3B76EE5D2EDCFC6BBC162662C9AB3F /* SOAP12Reasontext.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF43C2EA6C705C1E7948DBEF8197450 /* SOAP12Reasontext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AB221C6A426CC9274B00DEB45A2A7693 /* FBSDKBridgeAPIProtocolWebV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 59294C30161CC7DA8F58614411D98259 /* FBSDKBridgeAPIProtocolWebV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABBC769244D3C1F076C3A7ABA6F2F330 /* FBSDKAppEventsDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F403D913349292156367832BB68EDEBA /* FBSDKAppEventsDeviceInfo.m */; }; - ABE45433C4D5440C9B6331AF3C825B52 /* FBSDKGraphRequestDataAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DAE8DD5362B98E2BC36A88BA93AEEA /* FBSDKGraphRequestDataAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC31F8B2FE473098E961C569C9F7216A /* NSIndexSet+NSIndexPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 012FC612A0C3FCDAB9DA9A4656CA3831 /* NSIndexSet+NSIndexPath.swift */; }; + 9B045FC64D2A32D380593AEA86A28904 /* Bolts.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0C32B9766C24D6965E5D6E61970D76 /* Bolts.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B209880BF6C678EBB9FE3B5E1AFED77 /* PicoDataConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F074202B8FC6B7D7D56B4283D6C913 /* PicoDataConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9BA81C3A00FBFB0269E1F502C7CA7111 /* SOAP11Envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = 5339061BB4B4F2F0C45118854A1A077D /* SOAP11Envelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C1E5F739BBF75CF3CB13A9DCD1EBBB5 /* FBSDKUIUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FECAB965701806D681C868C59C0823F /* FBSDKUIUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D960DFA8001A7569CCCD7E28087E166 /* FBSDKDialogConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 039AB69203818026871E385413BD62B2 /* FBSDKDialogConfiguration.m */; }; + 9DF0BDC4A549EEFB599696F517AF5E93 /* SOAP12UpgradeType.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A10C682C58ECEBF06CDB1A4456190BD /* SOAP12UpgradeType.m */; }; + 9E042750F110357AFDC50C196B95312D /* FBSDKAccessTokenCacheV3.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0F172255B6C439501CF421093B3C5F /* FBSDKAccessTokenCacheV3.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E40001D7D2CAC32039C59FC0208A7CA /* Bolts-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDD79E1FB0A9F7F08852F4365AFC6BE /* Bolts-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E795055729E8F398250A5687BB00AE2 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = A9DD1D17658DC5A6D73CD0E88F5D22CA /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9EB705A7B645FD8F577485B85740DD5C /* FBSDKAppLinkUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF6677817A07E000D1EBAECA32952BD /* FBSDKAppLinkUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F311BFDD71F019984158BF9906299F2 /* PicoBoolConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 83626CD5D098BBE028979A7EB83CE112 /* PicoBoolConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F756E533FBC1ECD87F8F13FE411BD51 /* PicoBindingSchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B84576C09BC2BF20C14AF748C9CBBBC /* PicoBindingSchema.m */; }; + A0DF7E397B57D50B5E89228082DB4361 /* FBSDKShareMediaContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7FD5B09A112AD2C2CBCAF3A88785B4 /* FBSDKShareMediaContent.m */; }; + A1A522460FB8F634AEA3F48F9C0FC7D4 /* NSDate+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FCCD05992C6EB92262237C9B9C5516D /* NSDate+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A234CD03F89584D0547A5D7D999E03C5 /* PicoSOAPReader.m in Sources */ = {isa = PBXBuildFile; fileRef = CE0968D9085FD092BC938C5E21F64285 /* PicoSOAPReader.m */; }; + A2BA59DFF1F34B3939EE149F397FC810 /* FBSDKMaleSilhouetteIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFEF3E09D8AF55E082F0A5ADDE0BE62 /* FBSDKMaleSilhouetteIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2F0870136D90D9CE7905634CBEC46C2 /* SOAP12Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C779E912258AD1658DD397B739EC40A /* SOAP12Body.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3CE342B34D0DAA7BE2AA45BEF94CAFC /* BFAppLink_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30625FCE2DCA2DE514F3AAE1CBA40A22 /* BFAppLink_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A411DDDACF2FE64E4123D2654049E331 /* BFMeasurementEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = A1D80FADBE30DE510D5C42F23A60FD71 /* BFMeasurementEvent.m */; }; + A4229F7353B5AF589AD6BF2EAC31F1E7 /* UIButton+NoAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5591981F324B3C92329972D4891714 /* UIButton+NoAnimation.swift */; }; + A4B4F91D6EBF8FE964A5BAC7E12B5A3B /* FBSDKBridgeAPIProtocolWebV2.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6716AE596C0F58A7D47936CFAE9736 /* FBSDKBridgeAPIProtocolWebV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A54F557F6175E445E98C30B98B5A3AD6 /* FBSDKSharePhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 001B13036A37B063BB1CAD904F029CD1 /* FBSDKSharePhoto.m */; }; + A6245406942E1B12CA6B3037098E854F /* PicoXMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = DE5A2A24BA7DBBE04350D595A97CFB16 /* PicoXMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A69128071A53DBC4882CC8DC76782334 /* FBSDKLoginTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = F490B7DC1305E9A66122A47F3CB85757 /* FBSDKLoginTooltipView.m */; }; + A770F5CEA719136A936FDB05A9189B47 /* FBSDKGraphRequestMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 2243EA0A134A72759F45E32D3104E68D /* FBSDKGraphRequestMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D274ABDE3D32AE032C1B43FCD12B81 /* SOAP12Faultcode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95F713A97F80C87CB1775F88C248120D /* SOAP12Faultcode.m */; }; + A81091E2470EEAB6E79A3107477B137A /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 75E7A1449EBFD7ADADCF6869057BC447 /* FBSDKBridgeAPIProtocolNativeV1.m */; }; + A85B3F05DA9720CF770E0B0890F944AE /* FBSDKErrorConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A705D8A48421013F5568907F7037BFE /* FBSDKErrorConfiguration.m */; }; + A877EB9CF2930345DD962B4BC0D24959 /* BFTaskCompletionSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 00EEBF80693871C1EF789A2413AB207F /* BFTaskCompletionSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A8E32D941D75EC298C7E256A3C6D31D4 /* Int+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE6BEB51F81397963E78C4D03F07E720 /* Int+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A947972E2EBE74B9B8A75B9F07817BC8 /* FBSDKButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CB20D758435A182C1BC140A9F484DA /* FBSDKButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A97007C0361F790136D35C6A9FB2CB61 /* FBSDKGraphRequestConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AE806C1661967AFF98E95273B6A735 /* FBSDKGraphRequestConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A972F072AE0487FC7C5135B086C51F7D /* OAuthWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3A304153BBB0D6E6BEDD37B54B54005 /* OAuthWebViewController.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A9A8ED995CD370E24382EBDCC334824C /* FBSDKMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 03EC4B6660D8E598C5DF9D6B829E4213 /* FBSDKMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA0B9C265F96CA310C674C330D4C5592 /* Locksmith.h in Headers */ = {isa = PBXBuildFile; fileRef = 51FAC9A6B889BC3DE78E109AAC5CD9CE /* Locksmith.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA314156AC500125F4078EE968DB14C6 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34FCB6A8D2BE9277C60E9AB560757B66 /* Result.swift */; }; + AA3B76EE5D2EDCFC6BBC162662C9AB3F /* SOAP12Reasontext.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E64A6433C0BD85B2192C41AE6F609D /* SOAP12Reasontext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AB2420047887F93F8E53D89FC87DAC70 /* FBSDKAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2EEDCE662E55172F3C1864B53C7174 /* FBSDKAppLinkResolver.m */; }; + AB28AF04EF21BE2C5DBB9956D21D33FE /* FBSDKCoreKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F5274546D33BA3A430208D3379A688B0 /* FBSDKCoreKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB50A198C25516A19902265B3257AD01 /* FBSDKSettings+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF2C84EE33EFA3775C4EC8132EEF767 /* FBSDKSettings+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC31F8B2FE473098E961C569C9F7216A /* NSIndexSet+NSIndexPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC0B0503711DC6ECFCF4ED191D053CB /* NSIndexSet+NSIndexPath.swift */; }; AC7C6289920D865E6FBFC20F0DC4F252 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */; }; - AD52B349A273F0EB40F823990A40D2CD /* FBSDKLoginConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 976B4D03A9321B412230E9EF4529F3F8 /* FBSDKLoginConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADF19C953CE2A7D0B72EC93A81FCCC26 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F220BFDFE04C5E44BF4CD17A497DA847 /* Alamofire-dummy.m */; }; - AE4CF87C02C042DF13ED5B21C4FDC1E0 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD5B2058DE2B16BC3F1B5A7B04E40F /* Stream.swift */; }; - AE88CF4A135C8C1E79FEBB43EE2B38F8 /* BFAppLinkReturnToRefererView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1E2CED915287AA3461F6300AB4951A /* BFAppLinkReturnToRefererView_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B005B379F2878E1CDA454C1A87879442 /* FBSDKKeychainStoreViaBundleID.m in Sources */ = {isa = PBXBuildFile; fileRef = 31197CF960F9C2232A1DDCAB3F8DB68A /* FBSDKKeychainStoreViaBundleID.m */; }; - B0311FBDE031798111EC0E5DB55540BA /* FBSDKOrganicDeeplinkHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B23EEC9EF98E18BA78C2574CB347939 /* FBSDKOrganicDeeplinkHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B03FBE8B4AA2B23CB920A248BB98AB3E /* SOAP12SupportedEnvType.m in Sources */ = {isa = PBXBuildFile; fileRef = 45183A70E1DF80AA4424A99EBDD072BD /* SOAP12SupportedEnvType.m */; }; - B1033B9D20ABC4D28DD47AE664FDFDBE /* FBSDKBridgeAPIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B80A07D9D7AFB969E72F14412BEB388B /* FBSDKBridgeAPIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B10C7D17E533337E2B74970B679D6B3A /* OpenIDClaim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F710E23B17AD395719BE3EAAC633F4 /* OpenIDClaim.swift */; }; - B13DC7A0E6506DF7327E2AABA60FAE4F /* SOAP12Subcode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6C6609F47675D67542BFBA691F142A /* SOAP12Subcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B237CE69F2373005B527EFF9204AA06B /* PicoKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AF82297E8079D5C3248A0A2E6836E27C /* PicoKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B34BBDBBA5577DEAB2F973B1CC7E2FD1 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34179205B39B7F983FC2D11EE089F0CB /* Utils.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - B42A49260E02658534FF92164B6FC311 /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 0131DEFA58ED7F61883CE8CCFC049AF1 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B52E11D4E947E41CE3A1E3221AB1BA6B /* FBSDKBoltsMeasurementEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 3873EE2B52B1DF5A7434C81CD98CE17B /* FBSDKBoltsMeasurementEventListener.m */; }; - B534C8C1D32294DB54F3C5CFFD5AAA9B /* FBSDKLoginButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 36135C08380EB61B7ED8884350600F98 /* FBSDKLoginButton.m */; }; + AD0899D6ABCF37C9F9D97138417110BE /* FBSDKBridgeAPIRequest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C18B35EACEA52367E3B3591D09F71C /* FBSDKBridgeAPIRequest+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD2ABA129A8954FACEAA003AADE854AD /* FBSDKGraphRequestConnection+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8FC5E769497DDD932001E3FC3D6D31 /* FBSDKGraphRequestConnection+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD40B6A9112D9F9FF37E9F91351B3FE0 /* FBSDKWebDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 91669085EDED3715E0D5F6125CAF8A15 /* FBSDKWebDialog.m */; }; + AD52B349A273F0EB40F823990A40D2CD /* FBSDKLoginConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5D8E8AC711AD1657B41F814CF1F82E /* FBSDKLoginConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ADF19C953CE2A7D0B72EC93A81FCCC26 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1282C5ED9E863E94BF29966D8EB115BD /* Alamofire-dummy.m */; }; + AE4CF87C02C042DF13ED5B21C4FDC1E0 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 207394D180556A2249071C99776304B7 /* Stream.swift */; }; + AE88CF4A135C8C1E79FEBB43EE2B38F8 /* BFAppLinkReturnToRefererView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 467B491B9F55217B819CE2A968521D57 /* BFAppLinkReturnToRefererView_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEA845413EC59501F797ECA70581BF9C /* FBSDKURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = B512F8DD69DB7C1EBF6CB020456E81AF /* FBSDKURLSessionTask.m */; }; + AF29430A1EC422777D052F142CD8F311 /* FBSDKUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 352EB84AE5E7C6D488C23CF41B9723E1 /* FBSDKUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B03FBE8B4AA2B23CB920A248BB98AB3E /* SOAP12SupportedEnvType.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD9578D60357F0F29413DDFBBAF6C7E /* SOAP12SupportedEnvType.m */; }; + B06E5A4AFB7F7EB6F77B350300CFA011 /* FBSDKAudioResourceLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB4C33333E54A77C6B35E65602B4534 /* FBSDKAudioResourceLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0DAA7C1965DB77C16D6A593F0A673E0 /* FBSDKBridgeAPIProtocolType.h in Headers */ = {isa = PBXBuildFile; fileRef = 632C14ECDE3A6D07DAAEAFB6EB5B0756 /* FBSDKBridgeAPIProtocolType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B10C7D17E533337E2B74970B679D6B3A /* OpenIDClaim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8971F9F37156B85B767F07DE25942A1C /* OpenIDClaim.swift */; }; + B13DC7A0E6506DF7327E2AABA60FAE4F /* SOAP12Subcode.h in Headers */ = {isa = PBXBuildFile; fileRef = C64AC2AF64F84E02FB32E63FE4241683 /* SOAP12Subcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B237CE69F2373005B527EFF9204AA06B /* PicoKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B7865BB9A08B078AF048C1ABBCBA23E7 /* PicoKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B3353F7D8F7E912F9721A2B2B9CABCEE /* FBSDKApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C9CF78AFF5B72F7F16449403AF59980D /* FBSDKApplicationDelegate.m */; }; + B34BBDBBA5577DEAB2F973B1CC7E2FD1 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E9D12AF46145888EE10F157BC6C892B /* Utils.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + B3D8BB81BEC226923CA9B80B952294A0 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; + B42A49260E02658534FF92164B6FC311 /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC994DDECE13D2A7DCE3816C1D4F047 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B4A5C6CDFF9F5F2A03E456E3BB57F8FC /* FBSDKWebDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = FA024AE9AE5B17FE3F9F3BA167B45325 /* FBSDKWebDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B534C8C1D32294DB54F3C5CFFD5AAA9B /* FBSDKLoginButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C6CC44BF3488C2EBE101350D5C0327C5 /* FBSDKLoginButton.m */; }; B5F7715229A56E39CAC95B07A83E9B86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - B66A8B13B1A4DB797713351204E9754F /* FBSDKError.m in Sources */ = {isa = PBXBuildFile; fileRef = BB69CDD045397A0C3BBD4BA9E14DC9EB /* FBSDKError.m */; }; - B70C33F5EB2E85CA0E4425B1A253BAFF /* PicoBoolConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = FCAA36A134D55C201B7C9F0B1FB78EE7 /* PicoBoolConverter.m */; }; - B713790B233CC21726C5E02E7DA44516 /* FBSDKAccessTokenCacheV3_21.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F1953D06394C717AE56AEF0BDDB4FA /* FBSDKAccessTokenCacheV3_21.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6EC50FC61AB099EC644EF9706BF5E0D /* FBSDKPaymentObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E79CAD12662F8E74E4001911EC74414 /* FBSDKPaymentObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B70C33F5EB2E85CA0E4425B1A253BAFF /* PicoBoolConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA72F1F50853417E570AE73C82F23DA /* PicoBoolConverter.m */; }; B733DCA91152DD923CC8317FBE6177AA /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 31513EB23B093A6F2C70644F9587813B /* SwiftyJSON.framework */; }; - B74D40AC59FF4E03D30024F6CFE94BD1 /* FBSDKLikeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E92C48C304CFB5DB7E4C56850F571D /* FBSDKLikeButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B7AA8DD951A2A0FD0DC01B4EC91C8153 /* FBSDKGraphRequestConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 88800517C0B4F604753E9AFF3E380BAD /* FBSDKGraphRequestConnection.m */; }; + B740CB9EA2FDE25A6A15738285AC112D /* FBSDKViewImpressionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0D7D2619673A2CCC2447E2CDE2C676 /* FBSDKViewImpressionTracker.m */; }; + B74D40AC59FF4E03D30024F6CFE94BD1 /* FBSDKLikeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A0A86C95239E50BA9957EAFC9A0189 /* FBSDKLikeButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B7BD82689B9DBF97AB3B82B5B7DACC2A /* FBSDKLogo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E7DDC41A24040C06634E3929F74198C /* FBSDKLogo.m */; }; B80E99999E2A245B701DC0731CB02ABC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - BAF4FD69C4FE6323B1FC7B7B24032673 /* JsonRequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF4FEBFDAA5E7131CB46C2415B06035 /* JsonRequestSerializer.swift */; }; - BB82DC2891A35AC22DD6D5CE4CAE4364 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = C1656555CF10DA82E136D8067B87620E /* UIButton+AFNetworking.m */; }; - BB938660E9F573C5569C0B2F76443DCE /* PicoBindable.h in Headers */ = {isa = PBXBuildFile; fileRef = DB866DB9DE8C316714FABD3690C1FB6F /* PicoBindable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC3B56D2ACA3877977DC9B7A85E9F214 /* HMAC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10151E0C079192034F4E43D1C6EA2B70 /* HMAC.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BC82780C5FED62B06DC51F6DCA0491B5 /* BFURL_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8A83F328DA69E4AD4AACB2E781F811 /* BFURL_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCAB58F8DE87B33E128B5C090EEB3E8E /* FBSDKShareAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B46725242B6A8D8B1BEF0CB4200A3D8 /* FBSDKShareAPI.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD2ECAD3E71F4EE83864E6F14B67FBC2 /* FBSDKAccessTokenCacheV3.m in Sources */ = {isa = PBXBuildFile; fileRef = C07887C7B74DD6446A7AE9876C719B95 /* FBSDKAccessTokenCacheV3.m */; }; + B86D15D17C38ED13C9E92B7A45BF4DC0 /* FBSDKAppEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FE75F9CE788049FC380C97CC8B5833 /* FBSDKAppEvents.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BA5C8C591879845F1C6E9E25FBC947CD /* FBSDKAppEventsDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 14BD137F1F334C986D612C1146877C3E /* FBSDKAppEventsDeviceInfo.m */; }; + BAF4FD69C4FE6323B1FC7B7B24032673 /* JsonRequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19A858CB6E7BF06F16102CE64336889 /* JsonRequestSerializer.swift */; }; + BB82DC2891A35AC22DD6D5CE4CAE4364 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB6B2E273A1EBF66D39DCC9CFD3A65C /* UIButton+AFNetworking.m */; }; + BB938660E9F573C5569C0B2F76443DCE /* PicoBindable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A49025A6681123C28C8013B0D51A40C /* PicoBindable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC3B56D2ACA3877977DC9B7A85E9F214 /* HMAC.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3EBCD45D75CF51861CE00CA24401018 /* HMAC.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BC82780C5FED62B06DC51F6DCA0491B5 /* BFURL_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BACA8E248ADA1A39F0C3E10FC7E8880 /* BFURL_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCAB58F8DE87B33E128B5C090EEB3E8E /* FBSDKShareAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 96256A10B1A5A6BC4A03A29715BCDF2B /* FBSDKShareAPI.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD2D4E29D27FB687EFA5D6A5348B7D8E /* FBSDKLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B9E332B79385264F8B7852737CE4938F /* FBSDKLogger.m */; }; BD3FB5E4DDA22FF3B8E50FC29E9BCA73 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - BE41196F6A3903E59C3306FE3F8B43FE /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDDEC727D8DAF0DA2BBFB591ED21B56F /* Notifications.swift */; }; - BF4DC48AD7D41C37CA8108D7590BA3DE /* OAuth2WebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA12066C10BAF4B75F5321914140A8CB /* OAuth2WebViewController.swift */; }; - BF4FE2CA55E25E91654D4090767397C0 /* StringResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991BCEC0B65FED6B7FD2C418B7F2462E /* StringResponseSerializer.swift */; }; - BF9787C62584C694E9263666FD94139F /* FBSDKMonotonicTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 6715DBC39B429F89E9D03F7BC03F2176 /* FBSDKMonotonicTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03AF5706175CAF471B117C5C5F60775 /* AlbumsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE89C747E695A6E4A2EA0E44966C2F7A /* AlbumsViewController.swift */; }; - C05225EA8ACCF663097C4EC96E8E9887 /* BFAppLinkReturnToRefererView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE21D887507B6EF0FD3663F5B97CE311 /* BFAppLinkReturnToRefererView.m */; }; - C087B9B3A493BC8232CBA4DB1CB47A67 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F666F4AD6771C67E12F920EE14503EB1 /* AFNetworkReachabilityManager.m */; }; - C0C062FB06B5A469FCABC55C619ABB2F /* FBSDKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = FDEE1A982BF65E50670F7668F193DBC3 /* FBSDKInternalUtility.m */; }; - C0DB70AB368765DC64BFB5FEA75E0696 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 295C05B50FFE2CCBBD4D128933A88FDF /* ParameterEncoding.swift */; }; - C1EEA41ECBE43FAF3E230A70F481C0D9 /* FBSDKTestUsersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A43CAD01E6E600EA142DEA4770099EA9 /* FBSDKTestUsersManager.m */; }; - C2B409E16419D1783D04BA380DCBDDF5 /* PicoPropertySchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 522C992A032A2E406FD63462F865D592 /* PicoPropertySchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BE41196F6A3903E59C3306FE3F8B43FE /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DAAED79E3269FC96BDBA2AFF6409347 /* Notifications.swift */; }; + BF07C002A875E226FDF05FF39FF950A6 /* FBSDKProfilePictureView.m in Sources */ = {isa = PBXBuildFile; fileRef = B144FAF591DED2315CFC6271711C290B /* FBSDKProfilePictureView.m */; }; + BF4DC48AD7D41C37CA8108D7590BA3DE /* OAuth2WebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D54AA3DDBF4BCD8608941F6A4FB71587 /* OAuth2WebViewController.swift */; }; + BF4FE2CA55E25E91654D4090767397C0 /* StringResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7A4D9C93632C55CA16093730E3873E7 /* StringResponseSerializer.swift */; }; + C03AF5706175CAF471B117C5C5F60775 /* AlbumsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4331B18A8846B65FD09B3EAD8BCD71E3 /* AlbumsViewController.swift */; }; + C05225EA8ACCF663097C4EC96E8E9887 /* BFAppLinkReturnToRefererView.m in Sources */ = {isa = PBXBuildFile; fileRef = C782341A3A33C6F765EA007D5D93FF17 /* BFAppLinkReturnToRefererView.m */; }; + C087B9B3A493BC8232CBA4DB1CB47A67 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 414F8441A3420657D9995AC2FE29E8DB /* AFNetworkReachabilityManager.m */; }; + C0DB70AB368765DC64BFB5FEA75E0696 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C3F6CD242A3136EFA8BD6714E7B2FAB /* ParameterEncoding.swift */; }; + C127C5AFB0E89365FB38A7B42FD9B551 /* FBSDKAppEventsState.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B664650CF811898A7E47EB1E21DED05 /* FBSDKAppEventsState.m */; }; + C14F7D3CC388177330229D8197AAC8D2 /* FBSDKServerConfigurationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB21D4ED4DC9E17465E14881DBC7D4F4 /* FBSDKServerConfigurationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C184E8C2D214F748E3D6A1E2218D2A19 /* FBSDKKeychainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C38A0BEE1751EDDB79D5C7C5AD96F40D /* FBSDKKeychainStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2B409E16419D1783D04BA380DCBDDF5 /* PicoPropertySchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 451E1AF77E26258AE5123C751DE2FCA7 /* PicoPropertySchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; C2E1AFA724DFDA82D234F25BC9D623FB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */; }; - C382AD64490D77D61B1A4318A031DC7C /* FBSDKTimeSpentData.h in Headers */ = {isa = PBXBuildFile; fileRef = A15B02EF19E187B02A55F3C1ECAD08BF /* FBSDKTimeSpentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C39613DBB90FF65789612725FC595542 /* FBSDKAppInviteDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = AA19B9FCEAB5C854FF3C8FDF93BA2343 /* FBSDKAppInviteDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C3EE5FD470BF4FD80D834166E6C5E8EA /* HttpRequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095E0A3472702B8830A756EDD556D632 /* HttpRequestSerializer.swift */; }; - C51B4865E5186E9BF6DB6BEFC9517EF1 /* FBSDKHashtag.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAB3635919B2B67D51AF7B9E62C78C4 /* FBSDKHashtag.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C51B96A7E543F72CD7925968E35DC041 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E27C526A9DC03AC25201A7B5842662EE /* AFNetworking-dummy.m */; }; - C52665EDC9F106BD8B2418D97AAEC357 /* FBSDKGraphRequestPiggybackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66DBCB3C69D5BEC6307565074B290069 /* FBSDKGraphRequestPiggybackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C583FF6D5F3A73498E46D8D80B21E3DB /* FBSDKLoginKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FEAE5B025211278744F393C5B0C36EB /* FBSDKLoginKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C67694443EB6C1977F2510638E94F687 /* TrustedPersistantOAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D15177C9B13D89F5AAF4A67DC7B8931 /* TrustedPersistantOAuth2Session.swift */; }; - C682BB7427AE5EF8582DC373EBBBA2E8 /* FBSDKCoreKit.h in Headers */ = {isa = PBXBuildFile; fileRef = F53B4CC4415CE07123BF063BBB373F7C /* FBSDKCoreKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6C6E82D44C8E6F311129D11D9BB3C78 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E0E604595694E7875598C8C51087F04B /* PhotoCell.xib */; }; - C6CDABE1AEBB5DC4A35A6B221BB98D13 /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F3045CE36007174B5AE014116FB12A5 /* AFURLConnectionOperation.m */; }; - C6F65A56D2A83EF7D2445EB1BC64B8D4 /* FBSDKMath.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9C731E16EF98A744EA0140D9B661A9 /* FBSDKMath.m */; }; - C70AC3CB2D21E9466D55F37D6167DBA5 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE3A0AEEA51C049E1C8A8C2335A32D2 /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C7B655603FB1089A5E2D28FCE12DF12F /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC4358A4E9F5CD0E977BA79631BAD3F3 /* AFHTTPRequestOperationManager.m */; }; - C7B6DD7C0456C50289A2C381DFE9FA3F /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8EAA1D518760505308ED46344A40B55 /* MultipartFormData.swift */; }; - C8A2479793F6D05DE6D8FA164EB7C00D /* Bolts-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFB9B16A8846AA57E02117247CFAA15F /* Bolts-dummy.m */; }; - C8CFDFCD0A8A590398560534407636B4 /* SOAP12Envelope.m in Sources */ = {isa = PBXBuildFile; fileRef = B557F414AD4CD70507913B3D559F93EC /* SOAP12Envelope.m */; }; - C9239042BAF0562154A942D3598BEFAA /* FBSDKShareDialogMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D08394BB3C986C1BFA07FFBB2E4B874 /* FBSDKShareDialogMode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9A879CF614BAB80706EA977904B0BB9 /* FBSDKShareError.m in Sources */ = {isa = PBXBuildFile; fileRef = D524E45F72B7D5706A8E8FC890847D37 /* FBSDKShareError.m */; }; - C9B57D939AB4480C7A93482A12D87C4B /* FBSDKLoginCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 784FB02CAF784BEDDCEA4B30A3ABF477 /* FBSDKLoginCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9BD44D9DC9D9E459BCB805875DC2306 /* FBSDKLikeActionController.m in Sources */ = {isa = PBXBuildFile; fileRef = B3A88E6CEBA5538C50D867C2EA9552F5 /* FBSDKLikeActionController.m */; }; - CA08081E0B27DF4B55A911DD597BAD73 /* FBSDKApplicationDelegate+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97397E57104D5D6DEC9FE2ECE449F708 /* FBSDKApplicationDelegate+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C39613DBB90FF65789612725FC595542 /* FBSDKAppInviteDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 330FEF1100FFC4446231D88FA09EF1A8 /* FBSDKAppInviteDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C3BA284DD88441E67D4E270EFCA1A080 /* FBSDKAccessTokenCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B125F284A5E7490F94E6125F37AB30C /* FBSDKAccessTokenCache.m */; }; + C3EE5FD470BF4FD80D834166E6C5E8EA /* HttpRequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B7A1572F19175303D904A980B89E8B6 /* HttpRequestSerializer.swift */; }; + C43BCEC6C63918E923BB2BC2485E6B98 /* FBSDKBridgeAPIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3088A10D14D0AA0DEDB8211CF5E32878 /* FBSDKBridgeAPIRequest.m */; }; + C51B4865E5186E9BF6DB6BEFC9517EF1 /* FBSDKHashtag.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BD42E8BA677F5A489C3108E0C0838D /* FBSDKHashtag.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C51B96A7E543F72CD7925968E35DC041 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13BCCE81892E6B9456CBAA4E9B012EF9 /* AFNetworking-dummy.m */; }; + C583FF6D5F3A73498E46D8D80B21E3DB /* FBSDKLoginKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 50FADBB02B12E0D145E0C472ABC70E5F /* FBSDKLoginKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C67694443EB6C1977F2510638E94F687 /* TrustedPersistantOAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80DFB72E328430E9F69E94BF5D90DD8F /* TrustedPersistantOAuth2Session.swift */; }; + C679FD190AF1FB48912CB446761112F2 /* FBSDKMaleSilhouetteIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E5DCDA2F21884E7A487387385395C5 /* FBSDKMaleSilhouetteIcon.m */; }; + C6C6E82D44C8E6F311129D11D9BB3C78 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9034582F1E5055076AD18B3B73A91B3F /* PhotoCell.xib */; }; + C6CDABE1AEBB5DC4A35A6B221BB98D13 /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A54F4EC5B23C73A9818BD80F36A19287 /* AFURLConnectionOperation.m */; }; + C6F4C6BD5EAB253BEECDDFCFF9BF50B1 /* FBSDKAccessTokenCacheV3_17.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FA5AC8897E0F8AD9C3C3C1DDDD2517 /* FBSDKAccessTokenCacheV3_17.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C70AC3CB2D21E9466D55F37D6167DBA5 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A852A821BBA4837E2F24FDB715EBCA /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C7B655603FB1089A5E2D28FCE12DF12F /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 72539655BD88854832A7A61DE5DA2076 /* AFHTTPRequestOperationManager.m */; }; + C7B6DD7C0456C50289A2C381DFE9FA3F /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4A27BC37602D4069AC6CDBF98BCEEF7 /* MultipartFormData.swift */; }; + C7C5D399380BA65F6F67F0C0C6122F97 /* FBSDKButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E87254FC0A6F38FB6A9C1F635D6712 /* FBSDKButton.m */; }; + C7DAA4567E3B64C06BAD3DF17E635D40 /* FBSDKAudioResourceLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = D69A7F3ED5486C969970813B24E51A4B /* FBSDKAudioResourceLoader.m */; }; + C7E099EE12E508A46CE2DBE5AA13C4CA /* FBSDKServerConfigurationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C37F9F0310090296790EAD37B6231B84 /* FBSDKServerConfigurationManager.m */; }; + C877B62645108E070DA0B379160A1A55 /* FBSDKIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8203477FCE0A0D183D7B03DB5F881B78 /* FBSDKIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C885AA57B89190ED816C2D893B855658 /* FBSDKGraphRequestPiggybackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E16E03402073A874C8813B023873FAC1 /* FBSDKGraphRequestPiggybackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8A2479793F6D05DE6D8FA164EB7C00D /* Bolts-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA5BE7C4697AB71A97FD3E275DF4B0D4 /* Bolts-dummy.m */; }; + C8CEE4AAADEA0E70E94DF926E35B645C /* FBSDKServerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D79FE1BFB1530D5930A6A515DAE55FD /* FBSDKServerConfiguration.m */; }; + C8CFDFCD0A8A590398560534407636B4 /* SOAP12Envelope.m in Sources */ = {isa = PBXBuildFile; fileRef = FB3F09AAE4CA7AA0F9DB68AC8C0BB90A /* SOAP12Envelope.m */; }; + C8FC64FA5FBEE8C4D47723CC40A4DC21 /* FBSDKServerConfiguration+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EE473C4FBABFD1D223F9CFE1FAF757B8 /* FBSDKServerConfiguration+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90902EF283215237A2DFF6446C2EE23 /* FBSDKTimeSpentData.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC44ED9454A624BC95A6D8EB937B699 /* FBSDKTimeSpentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9239042BAF0562154A942D3598BEFAA /* FBSDKShareDialogMode.h in Headers */ = {isa = PBXBuildFile; fileRef = FF20245B99135141FEAED1052DD1423E /* FBSDKShareDialogMode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9A879CF614BAB80706EA977904B0BB9 /* FBSDKShareError.m in Sources */ = {isa = PBXBuildFile; fileRef = AB48598B489DA1DEA9F0A9DE6428E970 /* FBSDKShareError.m */; }; + C9B57D939AB4480C7A93482A12D87C4B /* FBSDKLoginCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = E0FC3A9DFF5D282B919350D08CA64D28 /* FBSDKLoginCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9BD44D9DC9D9E459BCB805875DC2306 /* FBSDKLikeActionController.m in Sources */ = {isa = PBXBuildFile; fileRef = D5B3029BCD5B7B247B673665A938E523 /* FBSDKLikeActionController.m */; }; CA7846F048F40D61DD3100BA17B5C26C /* Pods-Vendoo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2E9185EE51467D606FBA66D243AA42 /* Pods-Vendoo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CAC55489C107050F90C74EC7E0618EDB /* OrderedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0C1767521D7661349467F04D1AE8BB /* OrderedDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CB51AB19914745F2250D9DB0D5C3C806 /* UIApplication+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0744F82A6C9E3539065BDBFB5D12A9E /* UIApplication+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CB67930A4314E6E46A903F3489EB7608 /* FBSDKShareOpenGraphContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 598683C00218E1CF2B8D6DF6063D3969 /* FBSDKShareOpenGraphContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC2443BEF39BB4254C340BAA445BCBD5 /* LocksmithInternetAuthenticationType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 287B2FC046CD7E5286E13024FA041690 /* LocksmithInternetAuthenticationType.swift */; }; - CCEA26201F74E01FD9621E1CACAD85A8 /* GridCollectionViewLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512B061CCD4719F2DB8CF067B61BB903 /* GridCollectionViewLayout.swift */; }; + CAC55489C107050F90C74EC7E0618EDB /* OrderedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = F6AAF5D1E559441C9219B44AE1194DE3 /* OrderedDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB1C55E3A0AF0A192EE3A4C969AF6710 /* FBSDKDynamicFrameworkLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C22B1D7B1BD5BCED20E4B3DEF77419 /* FBSDKDynamicFrameworkLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB507243BA4BCD86AB0B04C3C3FDF911 /* FBSDKGraphRequest+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B18595F0972A3AB16887A321CEA63E /* FBSDKGraphRequest+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB51AB19914745F2250D9DB0D5C3C806 /* UIApplication+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 018B6A2A607AA9D54157177041BD539F /* UIApplication+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CB67930A4314E6E46A903F3489EB7608 /* FBSDKShareOpenGraphContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A79D3619A7BB66A35F7D3F56AE85E00 /* FBSDKShareOpenGraphContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CC2443BEF39BB4254C340BAA445BCBD5 /* LocksmithInternetAuthenticationType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6423F7738ED7B01D28D8518ADE03D6EF /* LocksmithInternetAuthenticationType.swift */; }; + CC355D758AE08E115071B2FF0CBD04C4 /* FBSDKAccessTokenCacheV3.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0C067D3F96CB7516A0FED4ABE3F6D2 /* FBSDKAccessTokenCacheV3.m */; }; + CCEA26201F74E01FD9621E1CACAD85A8 /* GridCollectionViewLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EA513C8771FA4D3227AC42B9A417A25 /* GridCollectionViewLayout.swift */; }; CD38B0DFE4C5503D3A4A913BB30EAB74 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - CDE764570B1C9BED83BD2F23533A3097 /* BFAppLinkReturnToRefererView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD0CBE8E2D4D32170E3B8904D57E899 /* BFAppLinkReturnToRefererView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CDECDF26D5914B5118DA15DC06FABFDF /* FBSDKShareLinkContent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A5631680EF3178C439DDE980A1EE3898 /* FBSDKShareLinkContent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE0233C459CA5BF1F081257EB3655004 /* FBSDKLikeObjectType.m in Sources */ = {isa = PBXBuildFile; fileRef = B6CB8CE0FC24F09A6F44117F43DD0456 /* FBSDKLikeObjectType.m */; }; - CE2528225E7F88C8FB7A0C48448B72E6 /* PicoXMLClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEA0794FACCC4E189ED617A88D17555 /* PicoXMLClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE9BEE1CFB831D54829132A6B365EDAF /* UIImageViewModeScaleAspect.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7199A87E3366F1A836A8BEE11092CC /* UIImageViewModeScaleAspect.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CEDFE191DF66B8884828359B3494F8E9 /* UIAlertView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2F7EBA8867723F12C25840D1E88243 /* UIAlertView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CF051D17275C20E0FBF5736E3C8A0573 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 32DA793C1694801D6DD0DD16FED99266 /* UIProgressView+AFNetworking.m */; }; - CFBFD1949A464FA701704CB507D5074D /* MultiPartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70771279652CFA5CE255D71FEEF81F8 /* MultiPartData.swift */; }; - CFDAC1FC6D948576796D48F01601D00B /* FBSDKShareDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 47958682789C056D40BF7CF6F9573F85 /* FBSDKShareDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D0379DD1F84E1FA4302325370FC583C9 /* FBSDKCoreKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E71829FF290118344E90D187DAB55969 /* FBSDKCoreKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D05E51C8CEED91610DDE599FA220A58F /* FBSDKGameRequestDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 36E7B859CCB46F89F12DA7DC11793B6E /* FBSDKGameRequestDialog.m */; }; - D14B90EC47C350BCEA5F953586978228 /* XMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB1B89813CDD043CC410F5DFE0A6452 /* XMLWriter.m */; }; - D1D0521423FC9587DACE99599F3871BF /* FBSDKErrorConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A4FA97903758A3B2737BD06B92134C /* FBSDKErrorConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D20BAF8A10A6F2B9E2A7B6DD82C056F6 /* FBSDKShareOpenGraphObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CAB53B85B55094DB5D6A89759833D /* FBSDKShareOpenGraphObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D234B23ACC5F69B9BE581EC70C15F8DE /* LocksmithInternetProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 778B859863182A0F8ED549FE794E9B22 /* LocksmithInternetProtocol.swift */; }; - D24E773D3868F2EFFD2C78431689CD1D /* UIViewController+BSImagePicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 962CFAA54B4E9B6B2FAF786E86978FA7 /* UIViewController+BSImagePicker.swift */; }; - D2C51CD71E1F27983032A23C1077A600 /* UIImageViewModeScaleAspect.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DC59837CE442B112C29429512ECB06 /* UIImageViewModeScaleAspect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2E7CA26EBA86717C6F9EF5F4988903C /* FBSDKWebDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB5B13D0786F0EDE912B10169B689A5 /* FBSDKWebDialogView.m */; }; - D347F65DE4E6C432B5182A7376869D0C /* FBSDKShareConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A41012D8C5AB02333B4B83045FA2747 /* FBSDKShareConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3B8A9EFB1AFEFE16BE8C7F4FE410F20 /* FBSDKSendButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C96B1B2AA428FF9D71E28986AD0FB079 /* FBSDKSendButton.m */; }; - D40315620E9D700DC73323A8CED6612F /* OAuthSwiftMultipartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8863DA4F57229E96C23A8B1C60634F18 /* OAuthSwiftMultipartData.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - D441FFFC4FE2E90573DBF2477DDF8B6E /* FBSDKOrganicDeeplinkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9561940BD63CEA1F00E7E114F5705B /* FBSDKOrganicDeeplinkHelper.m */; }; - D47A43CEEEBB4F2760D96D02FEEC879A /* PicoXMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F245EC157687963EDF650BBC4784FC /* PicoXMLWriter.m */; }; - D47F5FD0F654ACB03A3948DB29B7EE2E /* FBSDKErrorRecoveryConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C0B1F7EB452212E19F6C9997008B3A /* FBSDKErrorRecoveryConfiguration.m */; }; - D5A52B04EF08F7245C8D6B9E42BB906A /* FBSDKShareDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7A07AEB5BAB49571A15D937796AFA /* FBSDKShareDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5BAF5FC42E9BCD77EFC85D72EB2BA14 /* FBSDKContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CEEDEAA3B1D0E7F51C42A0FF4D04155F /* FBSDKContainerViewController.m */; }; - D6230D411F4CD1882D9E8AB2EE498ACD /* CameraCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9B3CA22AEC305112AA84ABC1273EE1DE /* CameraCell.xib */; }; - D68373BD1C186BFF96F83919F47FBC09 /* AlbumTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9142058C7DCDCDF7FDA0BE52E8088C1 /* AlbumTitleView.swift */; }; - D6961FE567A047B2EE394D527EF414E0 /* FBSDKGraphRequestPiggybackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CB0342EBAA4FFC79E61FB37A28AE1B0 /* FBSDKGraphRequestPiggybackManager.m */; }; - D6A93D87E6D9F0596FF0B0FADA862421 /* FBSDKCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAAF26C01B2BFD6C274E707708CFFE9 /* FBSDKCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7A3DDFC81E5F492259FDA6E57748A59 /* FBSDKDynamicFrameworkLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5171047B32E16A56212576AF9C927ACD /* FBSDKDynamicFrameworkLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7C1594DC6A0E38E33E8971C288A9F82 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9A787207342FCEA2EED4ABC8971410 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7E7CC8C8AB8DC9253A661C7374A9F93 /* FBSDKGraphRequestBody.h in Headers */ = {isa = PBXBuildFile; fileRef = 9030292F16ADD1982577B2FDD78186B9 /* FBSDKGraphRequestBody.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D80E3A1971AF7FDCE82F3241BA53B59B /* FBSDKLoginKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 94492FDA360876E5CDA95B99988E2B94 /* FBSDKLoginKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D86913E8F8A1CA01D792A1DFD3AE671C /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FAC2A080395962E19435E0617178AD /* AFHTTPSessionManager.m */; }; - D8E3EF0B890201C0DD54E9CF5527F88C /* BFAppLinkTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC70453D59F96B06BD9FF0FEF95CE0A /* BFAppLinkTarget.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D902EF709FC83BE17940BEF6CBB7F94C /* FBSDKViewImpressionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3240C489113EC7B1A848A55548D802 /* FBSDKViewImpressionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D922BBA12D7988EC41FB403F748BBFB8 /* AlbumCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B2C68E220839E29E6A84EBF102579FF /* AlbumCell.swift */; }; - D965808A254FA29240788115D19F782C /* FBSDKKeychainStoreViaBundleID.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8EB10B18921992E9989829B0393AC9 /* FBSDKKeychainStoreViaBundleID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D96FB769680B41AD1EAF2FDAF20F348A /* PicoXMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 2022303C12E152EA7B44B53848940E1C /* PicoXMLElement.m */; }; - D9B2E2CE9E2DF615FE197377486BB214 /* BFCancellationTokenRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 78707D42C9424E9D1BC3A19DE5C23E39 /* BFCancellationTokenRegistration.m */; }; - DA2F3DBB93F7A770AC12AA9769105CE3 /* FBSDKBridgeAPIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 66024A49B3EC28081C1692C2040D11D7 /* FBSDKBridgeAPIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA62B1DACA061A8DE4B7BE418CE33E5D /* FBSDKCloseIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 806C2D6BD79698DD3F5D505EC0EF3137 /* FBSDKCloseIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA9D0E08221846F34174BA9C7933C01 /* FBSDKErrorConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5072C8B1E1D466A2BB7524C239A94612 /* FBSDKErrorConfiguration.m */; }; - DB1AEDB35C8A2BCE2A7C466A5EBE874D /* PicoReadable.h in Headers */ = {isa = PBXBuildFile; fileRef = B5983DBD6749A5D349163E0E21E89AF8 /* PicoReadable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB83FFC19AAC1D048DD3B89367D5890D /* FBSDKMaleSilhouetteIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0949DB26EE5E98FA8179E03525183C /* FBSDKMaleSilhouetteIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB840EF5FD9645993A399CDE849E784C /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DA86555A9697F4831C5CAD6FC704BF5 /* AFURLResponseSerialization.m */; }; - DBC228F2E7B341A858EA328E1BB9F783 /* SOAP11Header.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECC5535112943F64CCB311287110ADB /* SOAP11Header.m */; }; - DBC229BB03500121A5EB2162F9DD1E30 /* PhotosViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0BA77DCD3D63BB0322E2C78E4B8CA8 /* PhotosViewController.swift */; }; - DD203F22883C5445DDA618371EEFEC07 /* FBSDKSystemAccountStoreAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D97429AD2D786FDD7A057B4B5BA31FB /* FBSDKSystemAccountStoreAdapter.m */; }; - DF4112FFA156222BF7053EF22A8827B9 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 754B56B34B29990770364603E688F08B /* AFHTTPRequestOperation.m */; }; - DF89CBE6455EE673C13371ABD62DBC51 /* FBSDKAppEventsDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3801A6586C20BA514D687E5CB9811FE3 /* FBSDKAppEventsDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFC29AA19504EF95C8902348017273A8 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7229378569C294E7ADDAEA7B3F9F1A62 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DFC3DF985B5065268315681B81A235DE /* BFURL.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F36C7E584CBFEE0C3DE0159BF1B826 /* BFURL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0095D397882896F3871DC2E380152D1 /* FBSDKSharePhotoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B653C67501AFD8AFDD3A405C0880A4 /* FBSDKSharePhotoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDE764570B1C9BED83BD2F23533A3097 /* BFAppLinkReturnToRefererView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DE3456C423B6914189CB5A9BAE2940 /* BFAppLinkReturnToRefererView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDECDF26D5914B5118DA15DC06FABFDF /* FBSDKShareLinkContent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5844E122C6EAEB6A480CDE62D846448F /* FBSDKShareLinkContent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0233C459CA5BF1F081257EB3655004 /* FBSDKLikeObjectType.m in Sources */ = {isa = PBXBuildFile; fileRef = 8122BB4305E407D61447DB744AFF6016 /* FBSDKLikeObjectType.m */; }; + CE2528225E7F88C8FB7A0C48448B72E6 /* PicoXMLClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B5EABB13CD2DD29B6C5BAF939FACCD /* PicoXMLClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE9BEE1CFB831D54829132A6B365EDAF /* UIImageViewModeScaleAspect.m in Sources */ = {isa = PBXBuildFile; fileRef = 35D36CBF71EC7E17004331C4126AD10B /* UIImageViewModeScaleAspect.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + CEDFE191DF66B8884828359B3494F8E9 /* UIAlertView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E16E4A0196F4DBF0877BB69D026523 /* UIAlertView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CF051D17275C20E0FBF5736E3C8A0573 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = A2CC2E8F698E17DAC27CBD3175480828 /* UIProgressView+AFNetworking.m */; }; + CFBFD1949A464FA701704CB507D5074D /* MultiPartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF12933570F80FED0925C27876FFD910 /* MultiPartData.swift */; }; + CFDAC1FC6D948576796D48F01601D00B /* FBSDKShareDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 94166A645490985426F053FBD0EB0F0F /* FBSDKShareDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D05E51C8CEED91610DDE599FA220A58F /* FBSDKGameRequestDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 8083E7364020A68A66B966B84E0F6EE8 /* FBSDKGameRequestDialog.m */; }; + D13FAADBAE2A868A59D2A9B267034EC2 /* FBSDKCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 349E6153E23B1E38396AD170BFE98515 /* FBSDKCrypto.m */; }; + D14B90EC47C350BCEA5F953586978228 /* XMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8684BE754366A1EAC01D7AD9E1755488 /* XMLWriter.m */; }; + D20BAF8A10A6F2B9E2A7B6DD82C056F6 /* FBSDKShareOpenGraphObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D7CC0B09DE9E90BFE79B8D14D0BFBE /* FBSDKShareOpenGraphObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D234B23ACC5F69B9BE581EC70C15F8DE /* LocksmithInternetProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1B465330778E216B708731B59E7099C /* LocksmithInternetProtocol.swift */; }; + D24E773D3868F2EFFD2C78431689CD1D /* UIViewController+BSImagePicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7369FDF8303C18BFC01D8B77285FB12 /* UIViewController+BSImagePicker.swift */; }; + D2C51CD71E1F27983032A23C1077A600 /* UIImageViewModeScaleAspect.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEEAD28482C6CDF1D99A4DE1C24ED7D /* UIImageViewModeScaleAspect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D303D8B7C86247B245A6E270DB4C6305 /* FBSDKProfilePictureView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E06CF563BEA4569F545734CB95BCED /* FBSDKProfilePictureView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D347F65DE4E6C432B5182A7376869D0C /* FBSDKShareConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 47381F3BEE25E40C0B809697A8CBF6BA /* FBSDKShareConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3B8A9EFB1AFEFE16BE8C7F4FE410F20 /* FBSDKSendButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DED2A540227FA95BE9A2F4ACB84E9F7 /* FBSDKSendButton.m */; }; + D40315620E9D700DC73323A8CED6612F /* OAuthSwiftMultipartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6BD0DADEFB7B7ECF43FFE5C22BC489 /* OAuthSwiftMultipartData.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D4538A58795159857537840B56F1AC1B /* FBSDKBridgeAPIProtocolWebV2.m in Sources */ = {isa = PBXBuildFile; fileRef = CC35817CC9C155BB5FCD1B6539097E1B /* FBSDKBridgeAPIProtocolWebV2.m */; }; + D47A43CEEEBB4F2760D96D02FEEC879A /* PicoXMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 409A4FCE599012C18433BAB02082F141 /* PicoXMLWriter.m */; }; + D5A52B04EF08F7245C8D6B9E42BB906A /* FBSDKShareDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0701C830C629BCA34DE60D87911D4CDC /* FBSDKShareDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6230D411F4CD1882D9E8AB2EE498ACD /* CameraCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 70F457F1438C91B35D050C98740288F3 /* CameraCell.xib */; }; + D68373BD1C186BFF96F83919F47FBC09 /* AlbumTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA6ADF9D4B80B839291C00D64FFD91D /* AlbumTitleView.swift */; }; + D74E0514F8C0B87B7E1D62172A1AFD86 /* FBSDKCoreKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 200BF9A23099783EF66C47AB0034F887 /* FBSDKCoreKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7C1594DC6A0E38E33E8971C288A9F82 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 746045D0BC534013A455BF59C15D9F10 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7E6959475A3102974DAA7D4DE44CD3F /* FacebookSDKStrings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 61F38B8FF542CF34787690048A98915B /* FacebookSDKStrings.bundle */; }; + D80E3A1971AF7FDCE82F3241BA53B59B /* FBSDKLoginKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3F760E392AA44CFC261B6AD790A0D5 /* FBSDKLoginKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D86913E8F8A1CA01D792A1DFD3AE671C /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35AAA9056B1BB2FDF22F4A1282B88461 /* AFHTTPSessionManager.m */; }; + D8E3EF0B890201C0DD54E9CF5527F88C /* BFAppLinkTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = BA95B470BFEEE2229F56E911C637B0D5 /* BFAppLinkTarget.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D903D18CE755D6F9CB04D54320B79755 /* FBSDKServerConfigurationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FA30E690C7ACAB9894B6428E1065D5AA /* FBSDKServerConfigurationManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D922BBA12D7988EC41FB403F748BBFB8 /* AlbumCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A942D1B15C6CBC802EBDF434543CDDD9 /* AlbumCell.swift */; }; + D96FB769680B41AD1EAF2FDAF20F348A /* PicoXMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = F42D7F297FBAD5439200429C252D066B /* PicoXMLElement.m */; }; + D9B2E2CE9E2DF615FE197377486BB214 /* BFCancellationTokenRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 447CD894B8CED3EE972C5B1699CAD835 /* BFCancellationTokenRegistration.m */; }; + DB1AEDB35C8A2BCE2A7C466A5EBE874D /* PicoReadable.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FE2D6084081C1E5B19A65FEB5B2F1B /* PicoReadable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB61D931DBA06BA1C856EF2AC3C45997 /* FBSDKButton+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = 66CE1D151EDAF1F694CC84F87932FF4D /* FBSDKButton+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB6BE7479662943E2E9FAD94D8DA0009 /* FBSDKSystemAccountStoreAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DD3C8296D75587381A70BE5A0360EBE4 /* FBSDKSystemAccountStoreAdapter.m */; }; + DB750A5DECB869C874B984A4DA8ED742 /* FBSDKAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = F67F8526A5D3D3B431855268C9780E08 /* FBSDKAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB840EF5FD9645993A399CDE849E784C /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FA60510D1A25F56E24AF24FC36B3F9E /* AFURLResponseSerialization.m */; }; + DBC228F2E7B341A858EA328E1BB9F783 /* SOAP11Header.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E4F79E73EE57B00EFC0DA73E64F4100 /* SOAP11Header.m */; }; + DBC229BB03500121A5EB2162F9DD1E30 /* PhotosViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4387D3414EB8B0BF8D4C38C55C5A208 /* PhotosViewController.swift */; }; + DBCFBC00B4F7EDF50738BDAC6ECDCAA5 /* FBSDKGraphRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F2663F5AAD58F5DDB8152233991CB7D3 /* FBSDKGraphRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC50B80F9D22C906C77EC515D52250AC /* FBSDKPaymentObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = E177E82668E0F94482653AB710D44420 /* FBSDKPaymentObserver.m */; }; + DF4112FFA156222BF7053EF22A8827B9 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C20915E828DAB39A928197ADDE81CD5 /* AFHTTPRequestOperation.m */; }; + DFC29AA19504EF95C8902348017273A8 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5E6F47FFE950104667598DA545B1A6 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DFC3DF985B5065268315681B81A235DE /* BFURL.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F23C14A9C76BFC201AC3B5DF5C99000 /* BFURL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0095D397882896F3871DC2E380152D1 /* FBSDKSharePhotoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8FEB850D665C585E9AE04C81F77D59 /* FBSDKSharePhotoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0D748922FE769746289B0CD735B7833 /* FBSDKGraphRequestBody.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFD4AB8527F87C2209F50D058AE1757 /* FBSDKGraphRequestBody.m */; }; E13F5F9A8FD28C1DDCC3AAF3A778B436 /* GDataXML_HTML.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B68653733D3131EABDCBB864E04AD74 /* GDataXML_HTML.framework */; }; - E14B37AEE6265EC234F3676302B0DED6 /* PreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD9887BB7AC33622204D53639F7A1E17 /* PreviewViewController.swift */; }; - E2538D972FF83B2B65506DFEF1DBF704 /* FBSDKShareLinkContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 32112D00215016946FAEEE2B94201268 /* FBSDKShareLinkContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E25FA70C34718EADF86156088FDB44B9 /* NSURL+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EB313A7713C337756FD509E928ECD8F /* NSURL+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E2F415ECE30EBBDF2E791FA0A12ECC29 /* FBSDKBridgeAPIProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BD3504B96359BD27FEBA4D8AD4E18A /* FBSDKBridgeAPIProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2FF4576C5740EDF6E0E2A62495A9E5C /* FBSDKLikeControl+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C6157ACA718F0F7E9454BDAFB56BC3 /* FBSDKLikeControl+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E33C52610245504BC91ADA56E67826B3 /* FBSDKSharingButton.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9F89F276D1597E6B7DBFFD42073256 /* FBSDKSharingButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E35B1DA23A573B53C34A49472A6B448D /* arrow_down@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA4F83C6113FDD8CDA96DA359763EB39 /* arrow_down@3x.png */; }; - E3998CCC046A80C9211440749CA6FA1F /* PicoSOAPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B1E889F5927ED22DF36A2A7140EEE7 /* PicoSOAPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E39ED3657FEE321A20AE105D8BE1A340 /* BFAppLinkNavigation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D94224C11E07BFE6398DA6B809C8ABA /* BFAppLinkNavigation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3AE71AF80F5D8A842E69202847A0710 /* FBSDKAppInviteContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EB3411A4897BE31E6C94EE384B01CB4 /* FBSDKAppInviteContent.m */; }; - E3F3CBC9723823D11DCF58CDFA25AA77 /* BFTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 561CE7829E757FDC6AC24B2794E98D95 /* BFTask.m */; }; - E42423F8227FE330F57E6CA7AA468D45 /* FBSDKServerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 215716BB207EFED998E747C8916018F9 /* FBSDKServerConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5FFE022FD6699990599EEA6529BC636 /* FBSDKBridgeAPIProtocolWebV1.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB067EADA78F19BE0B2C323DAC087BA /* FBSDKBridgeAPIProtocolWebV1.m */; }; - E6D504A4DEDA3BB58E7C6493EE96AFD9 /* FBSDKAppEvents+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E37232EA795BD54902F9DA507144E03 /* FBSDKAppEvents+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7783DA43E66A3CD931B178E31771E1C /* ResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B6A56C3289C34F84A3243B0C29EFF86 /* ResponseSerializer.swift */; }; - E7EDF8AFADD549527BAA0FF0B813C44C /* FBSDKProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1DA2F438778DFCB7E920B0ADEE002A /* FBSDKProfile.m */; }; - E7FA21C38D6A1CB113BE2DA22E73B845 /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = D9DD479673E8B396F89A7DAA2143A711 /* UIAlertView+AFNetworking.m */; }; - E810F45FC31110170657F41062B605CD /* SOAP12FaultcodeEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD1C7D4763119F0CC06ED45B5D6F786 /* SOAP12FaultcodeEnum.m */; }; - E94393E2BBDAA8E8BBFDF20A0E9F8512 /* Http.swift in Sources */ = {isa = PBXBuildFile; fileRef = C403253C46C7A568F5503C1533E1A6DD /* Http.swift */; }; - E9EEC6C8F1D68B18137981BE5EE2CF36 /* FBSDKAccessTokenCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E317B9D5CFF520B3690F6E5AD930138D /* FBSDKAccessTokenCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9FF502F63179B3E7EEA42FB3A31017A /* FBSDKMaleSilhouetteIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A6819D9457898F2A08A44231008DB20 /* FBSDKMaleSilhouetteIcon.m */; }; - EA9B123CC873F3B5BE785FDFA96B057F /* FBSDKTypeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = B57041BF243720546E2B3BBEBAB9A548 /* FBSDKTypeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE5D0F5B70E304DE8E8F3F5B14828B1 /* FBSDKGraphRequestMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 0210649A551E0AFEB3BE52532D0579EA /* FBSDKGraphRequestMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAF46061255D5EEB3DE0B27A11E0C97F /* GDataXML-HTML-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A6D2E098F2375395A4B9BF4B9221D0 /* GDataXML-HTML-dummy.m */; }; - EB2670466E38D34F603B6BC0313A6742 /* FBSDKAppEventsStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3219AEED0D229D413971C6A2DCEB389 /* FBSDKAppEventsStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC1A980B063554D6B4B8B75FCDEB777 /* FBSDKGraphRequest+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C1E065A6B3D67E434B973AE1123ACA /* FBSDKGraphRequest+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED4B859D28626B3B1E74BF97A7D3F4B3 /* AeroGearHttp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBBB1EB8362300197917511E324A727C /* AeroGearHttp-dummy.m */; }; - EDD254449CD8FF482448772C604D758A /* FBSDKLoginKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A024614035DD5EB6FBDE765EC32C7C /* FBSDKLoginKit-dummy.m */; }; - EF4FD235DD1FA69D7E3F07CE6BBE6A87 /* FBSDKSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 211FC4C7B1EDCEA8885F03EB57487C9D /* FBSDKSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EFCC14FC93C089D3303B86350EC7E255 /* FBSDKAppLinkUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = CB03DF2760683BF429AE919F41884E80 /* FBSDKAppLinkUtility.m */; }; - EFE92E8D3813DD26E78E93EEAF6D7E7E /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 547F0F61578EE093020B8127CFD6661D /* Request.swift */; }; + E14B37AEE6265EC234F3676302B0DED6 /* PreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C6DF59CA85E6A0D7A667C8D47C4C062 /* PreviewViewController.swift */; }; + E2084224DED264015ED724F9C76CE9D1 /* FBSDKGraphRequestDataAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 419C2160813EC7395FFBFC56C1B9F6DD /* FBSDKGraphRequestDataAttachment.m */; }; + E2538D972FF83B2B65506DFEF1DBF704 /* FBSDKShareLinkContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7E8B30154CF1205169F8B954F620EF /* FBSDKShareLinkContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E25FA70C34718EADF86156088FDB44B9 /* NSURL+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF32961903C9ADDD05A8E3C57EB657C4 /* NSURL+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E2C3319C291A2CF9EC84A6ACE989617F /* FBSDKAccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 33739B550CC4A08364FFF4248370E9FF /* FBSDKAccessToken.m */; }; + E2FF4576C5740EDF6E0E2A62495A9E5C /* FBSDKLikeControl+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 891545B8A3CE2232DC8B5BA5483072CA /* FBSDKLikeControl+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E33C52610245504BC91ADA56E67826B3 /* FBSDKSharingButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D087E9CA4CBB0BACBD263894534508 /* FBSDKSharingButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E35B1DA23A573B53C34A49472A6B448D /* arrow_down@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F681007FF47215BEC0AA7E78A76430BC /* arrow_down@3x.png */; }; + E3998CCC046A80C9211440749CA6FA1F /* PicoSOAPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB0BEA4A4B2EAFB0CCBBEF0095F471C /* PicoSOAPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E39ED3657FEE321A20AE105D8BE1A340 /* BFAppLinkNavigation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6F9B54119FC2F6EF39B44995028FD1 /* BFAppLinkNavigation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3AE71AF80F5D8A842E69202847A0710 /* FBSDKAppInviteContent.m in Sources */ = {isa = PBXBuildFile; fileRef = B8DC3995639C217520E3464C61FCACE9 /* FBSDKAppInviteContent.m */; }; + E3F3CBC9723823D11DCF58CDFA25AA77 /* BFTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D7806C43D330BBDC43982CBBA7E6DE0 /* BFTask.m */; }; + E5332D00D40DE3250A747DA0B0CCAB92 /* FBSDKGraphRequestConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FCFF7DE41501C360BAE4EF1FD7E676D /* FBSDKGraphRequestConnection.m */; }; + E6DE6F8659D111DCFAD553E961C182E6 /* FBSDKGraphRequestPiggybackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8CD5A7842DC1B0CBEE0A769781C2E19 /* FBSDKGraphRequestPiggybackManager.m */; }; + E6E30A8821FBC1CF0934F9352AF19D24 /* FBSDKTriStateBOOL.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D5D0D292FAE0B0E480828F0C597827 /* FBSDKTriStateBOOL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7608E1D974155F4B932D6183F0A7B7A /* FBSDKKeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C2B69CFBDB9AC3E4CC67945E8D1697B5 /* FBSDKKeychainStore.m */; }; + E7783DA43E66A3CD931B178E31771E1C /* ResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28BB183BD8FF92AD3E6D74CBCA24D080 /* ResponseSerializer.swift */; }; + E7FA21C38D6A1CB113BE2DA22E73B845 /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = FD83DE65A391E65594BE13AD87AF6F7F /* UIAlertView+AFNetworking.m */; }; + E810F45FC31110170657F41062B605CD /* SOAP12FaultcodeEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ED54AF2A1C0F991D0F1DF1881D846BE /* SOAP12FaultcodeEnum.m */; }; + E877B228583F698EA6DED79611528F7E /* FBSDKMonotonicTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A0CAC32EA114EFCEE3397692BBF0E3 /* FBSDKMonotonicTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E94393E2BBDAA8E8BBFDF20A0E9F8512 /* Http.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBDB496D61682669999C4E90ECDB9E98 /* Http.swift */; }; + EAF46061255D5EEB3DE0B27A11E0C97F /* GDataXML-HTML-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 437BD695A6FD61CBA57F49CBEB1DF70F /* GDataXML-HTML-dummy.m */; }; + EBDFB9500C57F9D901114505D1C2E6C4 /* FBSDKErrorRecoveryConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 024C6B01C6E24A3B0CD04FCA6E89437D /* FBSDKErrorRecoveryConfiguration.m */; }; + ED4B859D28626B3B1E74BF97A7D3F4B3 /* AeroGearHttp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B57E9DB65D55F43451B95735B294A1 /* AeroGearHttp-dummy.m */; }; + ED83C408C030422AEC3908B9F909E8CC /* FBSDKTypeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2A3DC052387A2523692FFDE7037CBF /* FBSDKTypeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDD254449CD8FF482448772C604D758A /* FBSDKLoginKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B301065F53BB17F51590DE94ADBAF719 /* FBSDKLoginKit-dummy.m */; }; + EFE92E8D3813DD26E78E93EEAF6D7E7E /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 710687F25B543757A7FB0983E5E2B292 /* Request.swift */; }; EFE98DF46B15DDE171B61A3F52D70D8A /* BSGridCollectionViewLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C1AA7FFD701C1A7D3F654C6E8FC6EF4 /* BSGridCollectionViewLayout.framework */; }; - EFFD6E269F82360F54906FD396256E9C /* FBSDKAppEventsState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9116DB6971CA6E1FF43A462B21D1B7A3 /* FBSDKAppEventsState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F11BC473EEC07CA5407557FEED884280 /* SOAP12Envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = FC702CB7B4E400D11C8330D914F6641A /* SOAP12Envelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F12275031D131B6A70A0195761B1C7CA /* FBSDKVideoUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 240B369BAE1858571F81882692762672 /* FBSDKVideoUploader.m */; }; - F133C9F1A15818518D0FB10A4ED0DD09 /* FBSDKButton+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9F13F9E8CAAACFF78326E45C40599F /* FBSDKButton+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1375F74031F3731A3D9F42A66A6327D /* FBSDKLikeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 120C755E2F74CF17A20BEC02328DE095 /* FBSDKLikeButton.m */; }; - F1A619BA53B94B8F18245C7A7F17D52F /* FBSDKProfilePictureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79ABEA5584C4377DCDDAFFAA0E036696 /* FBSDKProfilePictureView.m */; }; - F26DEEAD3638F33F87903B3B59BF61A6 /* FBSDKCoreKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 717768FA09DE50DE39982007A3BB92FC /* FBSDKCoreKit-dummy.m */; }; - F294B75539C74EDB0B55D2350874A225 /* FBSDKLoginButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D88B095A3E16088F69F7946ABFEEB71 /* FBSDKLoginButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2E9945B7494E20ED7DC4720A2B8CDC9 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B67245E41A4AF1938E37858C3C72D44 /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3009CD67ED84A44BC23B854E9329601 /* SOAP12Header.m in Sources */ = {isa = PBXBuildFile; fileRef = 943A6529529ECC1F684DA2A4FEB226B9 /* SOAP12Header.m */; }; - F3959192ABF7A0AE04D1FB636B8A4CE2 /* FBSDKServerConfiguration+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6772F2DEDFB439091E0C61DA3CEC95 /* FBSDKServerConfiguration+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F8771CF43018CF648DF325FD6546E5 /* FBSDKSharePhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0B831082C42B3020735802E52BC8FE /* FBSDKSharePhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F4FBE138C1813F7970EA297413404BEA /* Alamofire-SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A971778971AA4D5CF1381782196B511 /* Alamofire-SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F55BD406E6304124C7FFEAE2418CD046 /* PicoConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E21F8FBBB65AE846CC06CAC959D4D8 /* PicoConfig.m */; }; - F5F9597A3167E2AE7937E6CF4BD09AB8 /* FBSDKLoginCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D89B9EE45612459A887A379DB0C6C2 /* FBSDKLoginCompletion.m */; }; - F6163445CF35DF3EB671996F08D78344 /* TYMActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 480EAF767C67AE676AFEBA2B2C72DD95 /* TYMActivityIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F61EBE50A04A7BDA0A9DD179F193012B /* OAuthSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9EC1EC3B939DC697CE92B67649E662F /* OAuthSwift-dummy.m */; }; - F6A635CE6CDD2D57711CCEC692128382 /* FBSDKShareButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C98B3727457492BB0D47AF3DADE79F9 /* FBSDKShareButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6B493A91D4972846A91292F2241F636 /* arrow_down@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8A9747642FF9076856DC777306ADCBF2 /* arrow_down@2x.png */; }; - F7581524FBA63576F76650BAC9B15C04 /* FBSDKLoginKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF02B199B8D42DE42D826C56B971B1C /* FBSDKLoginKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F759176BF99FB3C01BA3EEE8C6A40D2A /* BFAppLink.h in Headers */ = {isa = PBXBuildFile; fileRef = D619A54243FC9B2160AA5D4B6C5CD555 /* BFAppLink.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7673DECA5A9B28885631BF36103936A /* PicoXMLRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7CF4F7D74D9A0BB6F4222611D6C64F /* PicoXMLRequestOperation.m */; }; + F046C25AECD212B3F8430A2EA457C80B /* FBSDKAccessTokenCacheV3_17.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AD8462BC721F141E3D722442D1F72E3 /* FBSDKAccessTokenCacheV3_17.m */; }; + F11BC473EEC07CA5407557FEED884280 /* SOAP12Envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = 090419E6F854BFF0E1B9A850299FF78B /* SOAP12Envelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F12275031D131B6A70A0195761B1C7CA /* FBSDKVideoUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DEF3170C8B804A5D1EA200137D7BD46 /* FBSDKVideoUploader.m */; }; + F1375F74031F3731A3D9F42A66A6327D /* FBSDKLikeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 01D65C9D849C0D378B55D3405227EA75 /* FBSDKLikeButton.m */; }; + F294B75539C74EDB0B55D2350874A225 /* FBSDKLoginButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F3842FC1C68E33505984100066E7A3DD /* FBSDKLoginButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2A76CF8550D617A7845594D12B2BC54 /* FBSDKTestUsersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E29F947759DD700FDD4F067D92399D5 /* FBSDKTestUsersManager.m */; }; + F2E9945B7494E20ED7DC4720A2B8CDC9 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D283DB6521D2F241FB53832CAAB51E9F /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3009CD67ED84A44BC23B854E9329601 /* SOAP12Header.m in Sources */ = {isa = PBXBuildFile; fileRef = 99360848EB61B858946726FEBFF40D79 /* SOAP12Header.m */; }; + F4F8771CF43018CF648DF325FD6546E5 /* FBSDKSharePhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 96CC1650BF4FB3366E452A5366A50EC6 /* FBSDKSharePhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F4FBE138C1813F7970EA297413404BEA /* Alamofire-SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 96397070BF268DF785F1A9FB6DAAAF96 /* Alamofire-SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F54CD48DE0D95FB475A76DC0BE00EDEC /* FBSDKURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECEEE593931D24B8922E3810A6D6A64 /* FBSDKURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F55BD406E6304124C7FFEAE2418CD046 /* PicoConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8F2A147E46504579F90A9C658C6521 /* PicoConfig.m */; }; + F5F9597A3167E2AE7937E6CF4BD09AB8 /* FBSDKLoginCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = C035D07B1CE0ED5D0B63A0B5AA350523 /* FBSDKLoginCompletion.m */; }; + F6163445CF35DF3EB671996F08D78344 /* TYMActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FEDC39E5CBF30ABCC802286452401F /* TYMActivityIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F61EBE50A04A7BDA0A9DD179F193012B /* OAuthSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 689CA61A2D5A47E6F7144D8E5ED6EA12 /* OAuthSwift-dummy.m */; }; + F6A635CE6CDD2D57711CCEC692128382 /* FBSDKShareButton.h in Headers */ = {isa = PBXBuildFile; fileRef = E6235927DC181F87310675A4E49BC8D3 /* FBSDKShareButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6B493A91D4972846A91292F2241F636 /* arrow_down@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9D6992FC69DF59B52E07277E48745B26 /* arrow_down@2x.png */; }; + F70816F8F114A222C2F279FD9CD97067 /* FBSDKAppEventsState.h in Headers */ = {isa = PBXBuildFile; fileRef = 105DD0A1280AF6E90E96C3949DEB58B3 /* FBSDKAppEventsState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7581524FBA63576F76650BAC9B15C04 /* FBSDKLoginKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F9AFB9F0CAAF11A8A48E56B1EFC071 /* FBSDKLoginKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F759176BF99FB3C01BA3EEE8C6A40D2A /* BFAppLink.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F1D78FC46F846D22935DDB8F395D48 /* BFAppLink.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F7673DECA5A9B28885631BF36103936A /* PicoXMLRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 37A95F35F48B7A9D92D4BAA3ABA71E42 /* PicoXMLRequestOperation.m */; }; F7BCC0CB8DFB22AB34ECE9BC5C72DD2B /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */; }; - F83D82020F9347F75495D09AA4F295AE /* BFMeasurementEvent_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B32366F1FB0F564EAF9203EA84A59435 /* BFMeasurementEvent_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F86F451F6AA6FB408A6DB5A117CB96BE /* FBSDKTriStateBOOL.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE788501ADB377A8157DE39AFD5A8B5 /* FBSDKTriStateBOOL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8FB7A9780E2A40ACDA1F21C5969B527 /* FBSDKViewImpressionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = EC88F0E7D91840D2776494E7DCDFEA1C /* FBSDKViewImpressionTracker.m */; }; - F96355379B033320F4514495D1B81128 /* PicoNumberConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 293280C88802CCE9D78CD1E4253F3654 /* PicoNumberConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F968CDDC661EA2C602666CE712CEB7A4 /* FBSDKShareVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C9163A29E6B760F9AABFC94E3688AE /* FBSDKShareVideo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F983A211639EA43476CEB54995E32C35 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 476CC038C9ACA70BB8A6166B222BCAD4 /* Utils.swift */; }; - F98D25A874AA92FABCBF4A434A573933 /* FBSDKMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1230D4DFFC0A1487CBEA467F6A300C4C /* FBSDKMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9B9A77D836E30A07D84E3C3AB5FAE7A /* FBSDKVideoUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BB47AAE0B85BB22104E949B5F979C3 /* FBSDKVideoUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9BA81C41C3DDABA6BEC897850E45D8D /* _FBSDKLoginRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = B14E14A70D93E17D007755A845A6F035 /* _FBSDKLoginRecoveryAttempter.m */; }; - F9EC825DE6BCCD6AF4C67B4D855F6673 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - FA158C22016D2FC0737B76CFDDB52D0C /* FBSDKLikeDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E163856F56716D12F898C0A82D64649 /* FBSDKLikeDialog.m */; }; - FA16BCB39DED31DEB5EE3BBADB13E204 /* FBSDKBridgeAPICrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B4E1E26A52262A705E7EAA60D4F3C0 /* FBSDKBridgeAPICrypto.m */; }; - FA5911BDD42D4D5735385D2761FC41A7 /* FBSDKAccessTokenCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D1135C708CFABDCEF0A3508501EA2D /* FBSDKAccessTokenCache.m */; }; - FA8D0725E732D1778567F836BF2424D7 /* KeycloakOAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E5EE933149C0FF460A4687AE134384A /* KeycloakOAuth2Module.swift */; }; - FAFAF3B263C62E610796FC8125B073C8 /* FBSDKErrorRecoveryConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA6133139D645A886D2696A5332348C /* FBSDKErrorRecoveryConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB7B76F9942AE0F7DEC11FAAEE4739B7 /* FBSDKLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E86011139202C985DE4BDA1418B15737 /* FBSDKLogger.m */; }; - FBE9ECC4946A8FAF7DB8B42B4D547C1D /* FBSDKAudioResourceLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CE3B4D504E1D4AEB468003967B2EBE94 /* FBSDKAudioResourceLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC0C60F5ACDB5830427EE4D4D29415C6 /* AlbumTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 878672475429BDB481207467B7AAE1A6 /* AlbumTitleView.xib */; }; - FC4C7FA94B9B25828BC94A10E24CC21B /* FBSDKBoltsMeasurementEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B63504FA5832B525F19DF6594AC6FB9D /* FBSDKBoltsMeasurementEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC7F0A1FFB2641FAB705A0CF9EFC1303 /* FBSDKShareKit.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A0E7CCC37A109F70EFE4BD2BB09E92 /* FBSDKShareKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F83D82020F9347F75495D09AA4F295AE /* BFMeasurementEvent_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 09888EEE1E11D1346C8670CF6C2CBA5C /* BFMeasurementEvent_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F85354C1D0CE284186E33D11A7705121 /* FBSDKLogo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2646E59E684B9D22F3D77EF53A53F05E /* FBSDKLogo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8C37640F70CF5E8A10A24292746AB07 /* FBSDKErrorConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = EB38EA42488CDFA9A25D5C88E5EC448C /* FBSDKErrorConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F96355379B033320F4514495D1B81128 /* PicoNumberConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = AA43C3D10F97C543F17F070A89A48AD9 /* PicoNumberConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F968CDDC661EA2C602666CE712CEB7A4 /* FBSDKShareVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = BC85A65D48AFFCEB54A64A125C296A2D /* FBSDKShareVideo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F983A211639EA43476CEB54995E32C35 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001ED1E1D09FB853BDAF73FC1B8F377F /* Utils.swift */; }; + F9B9A77D836E30A07D84E3C3AB5FAE7A /* FBSDKVideoUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3759E9DFBEB8BE48F07D1736D3A314 /* FBSDKVideoUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9BA81C41C3DDABA6BEC897850E45D8D /* _FBSDKLoginRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 85710F2EA4587DF63AB8AF807AABA0D9 /* _FBSDKLoginRecoveryAttempter.m */; }; + FA158C22016D2FC0737B76CFDDB52D0C /* FBSDKLikeDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 360F8AB5707BC9F13F682FB8D7E43621 /* FBSDKLikeDialog.m */; }; + FA8D0725E732D1778567F836BF2424D7 /* KeycloakOAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3E514985143085EC34A63D2163049B4 /* KeycloakOAuth2Module.swift */; }; + FC0C60F5ACDB5830427EE4D4D29415C6 /* AlbumTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D5A2446AA7887850C1169F52EE23F6D5 /* AlbumTitleView.xib */; }; + FC200A9381A95330335EF014E5C6C189 /* FBSDKAccessTokenCacheV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 060A914FBFB6819B5A0BB54ECA30C236 /* FBSDKAccessTokenCacheV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC7F0A1FFB2641FAB705A0CF9EFC1303 /* FBSDKShareKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 283A5783856350F1C4A7C5B513AFDC55 /* FBSDKShareKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; FC92F9CE355F65C3815CDAFBC4003B2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; - FD7525FCB49FB135D59559C8A7D13D65 /* FBSDKLikeButtonPopWAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 557568B70198CCB91B18F73222FBD415 /* FBSDKLikeButtonPopWAV.m */; }; - FE9045BA12AD90F3D0F121FFAE699AD5 /* FBSDKMutableCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 688D4D0BE6D044686882A32AACB60D78 /* FBSDKMutableCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FF0354628483B192A13C84851E9D523F /* FBSDKLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F70D5CBD03BBE49AB8DC112573F8844 /* FBSDKLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF9662F15F1A4003E60BDF39D8E24B7E /* PicoSOAPWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = F59560067A0BF43C1DC254FA93DF5B7F /* PicoSOAPWriter.m */; }; - FFAFCCCDBDD5C1802FA84670D0134481 /* SOAP12NotUnderstoodType.m in Sources */ = {isa = PBXBuildFile; fileRef = 254A8C0C0E243EE779478F2BABD0F2F8 /* SOAP12NotUnderstoodType.m */; }; - FFC1D9EC2ECD8BE8F5658955D44621FD /* SOAP12Subcode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CC5A36875AFC0238B595A727AA19879 /* SOAP12Subcode.m */; }; - FFE20D61C3C5166CE50B2FA4BE2BC271 /* FBSDKShareOpenGraphObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F9001E7D084976BD80994B7BE41383 /* FBSDKShareOpenGraphObject.m */; }; + FD07C2C9130217F82A4AF1110643C643 /* FBSDKErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1151176DC631DC8880B0DFE75E589247 /* FBSDKErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD7525FCB49FB135D59559C8A7D13D65 /* FBSDKLikeButtonPopWAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D65B31F5D7FE4EA3E9E19E69C68C7EB /* FBSDKLikeButtonPopWAV.m */; }; + FF9662F15F1A4003E60BDF39D8E24B7E /* PicoSOAPWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C2CE74AF731BB4E3D687268087D61A8 /* PicoSOAPWriter.m */; }; + FFA2811F11EE13BDAF14CAEC92A3AFFD /* FBSDKTypeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C49E937EB70ECD27872633533F1CC1 /* FBSDKTypeUtility.m */; }; + FFAFCCCDBDD5C1802FA84670D0134481 /* SOAP12NotUnderstoodType.m in Sources */ = {isa = PBXBuildFile; fileRef = 08033C10521E7D136E0CA79E36FCAF3B /* SOAP12NotUnderstoodType.m */; }; + FFC1D9EC2ECD8BE8F5658955D44621FD /* SOAP12Subcode.m in Sources */ = {isa = PBXBuildFile; fileRef = 040B1C87CFA5083D92259ADC456C1CB7 /* SOAP12Subcode.m */; }; + FFE20D61C3C5166CE50B2FA4BE2BC271 /* FBSDKShareOpenGraphObject.m in Sources */ = {isa = PBXBuildFile; fileRef = CF1F13EF21629FB7D6F3FEB9EC65C7BB /* FBSDKShareOpenGraphObject.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ + 00BDD9385D6AB29672E898F5EED64330 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; + remoteInfo = Bolts; + }; 037A460543B9CC550E0C8E9D9F424F34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -725,7 +735,7 @@ isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteGlobalIDString = 3C5685456B3ED2A700DBD8CC7DE83D96; remoteInfo = FBSDKCoreKit; }; 32F1A6CE07342E424DE342C9D5C9B5CC /* PBXContainerItemProxy */ = { @@ -840,13 +850,6 @@ remoteGlobalIDString = 79C040AFDDCE1BCBF6D8B5EB0B85887F; remoteInfo = Alamofire; }; - 7BDFEC0F5B0693C2D315E9D3973E276E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; - remoteInfo = Bolts; - }; 7C347AA735D81929ECF37A0B1848CC5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -1012,7 +1015,7 @@ isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteGlobalIDString = 3C5685456B3ED2A700DBD8CC7DE83D96; remoteInfo = FBSDKCoreKit; }; C06A237F2852CAE7C244B71783CCAF1C /* PBXContainerItemProxy */ = { @@ -1054,7 +1057,7 @@ isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteGlobalIDString = 3C5685456B3ED2A700DBD8CC7DE83D96; remoteInfo = FBSDKCoreKit; }; DFB7D8638BEFDCC4CCF33BEB67F1B89B /* PBXContainerItemProxy */ = { @@ -1068,7 +1071,7 @@ isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteGlobalIDString = 3C5685456B3ED2A700DBD8CC7DE83D96; remoteInfo = FBSDKCoreKit; }; E477007BAEE3D7F6DFFC145E026F964B /* PBXContainerItemProxy */ = { @@ -1089,7 +1092,7 @@ isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteGlobalIDString = 3C5685456B3ED2A700DBD8CC7DE83D96; remoteInfo = FBSDKCoreKit; }; EECE245E01E5CF005C6A194B77804CD3 /* PBXContainerItemProxy */ = { @@ -1137,747 +1140,750 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00A4FA97903758A3B2737BD06B92134C /* FBSDKErrorConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h; sourceTree = ""; }; - 012FC612A0C3FCDAB9DA9A4656CA3831 /* NSIndexSet+NSIndexPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSIndexSet+NSIndexPath.swift"; path = "Pod/Classes/Extension/NSIndexSet+NSIndexPath.swift"; sourceTree = ""; }; - 0131DEFA58ED7F61883CE8CCFC049AF1 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; - 0153AE17D43D9366820D16273D0C2232 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 0187BE1EE97858C5A1A6C7BD4099CA4B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 01E0ED5376FAD457FCE98776DE572BCD /* BFAppLinkReturnToRefererController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererController.h; path = Bolts/iOS/BFAppLinkReturnToRefererController.h; sourceTree = ""; }; - 01F36C7E584CBFEE0C3DE0159BF1B826 /* BFURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL.h; path = Bolts/iOS/BFURL.h; sourceTree = ""; }; - 0210649A551E0AFEB3BE52532D0579EA /* FBSDKGraphRequestMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestMetadata.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h; sourceTree = ""; }; - 023F4374BD9F7B4F8555090AA7A8267E /* BSImagePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-prefix.pch"; sourceTree = ""; }; - 02C6157ACA718F0F7E9454BDAFB56BC3 /* FBSDKLikeControl+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeControl+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeControl+Internal.h"; sourceTree = ""; }; - 02F16D93F7CBC4DDFC72FC03A0E42E82 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Source/Error.swift; sourceTree = ""; }; - 032369198D27ED73A6270FE2BA6EA7E0 /* FBSDKShareVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideo.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.m; sourceTree = ""; }; - 037BEC0658766E3CC7D1521E3D8314B5 /* FBSDKAccessTokenCacheV3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.h; sourceTree = ""; }; - 03E21F8FBBB65AE846CC06CAC959D4D8 /* PicoConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConfig.m; path = Pod/Core/PicoConfig.m; sourceTree = ""; }; - 0422CFF19F0CCFB878B807ABC01C7866 /* PicoWritable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoWritable.h; path = Pod/Core/PicoWritable.h; sourceTree = ""; }; - 04C630A21B0B22B553420BCFFF34A307 /* FBSDKBridgeAPIProtocolWebV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h; sourceTree = ""; }; - 05511F985C1A4179E3E9024B07BE3DCB /* PicoDataConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoDataConverter.h; path = Pod/Core/Converter/PicoDataConverter.h; sourceTree = ""; }; - 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AeroGearOAuth2.xcconfig; sourceTree = ""; }; - 06BB4A7B39E0E9479C628B1BA291C629 /* FBSDKGameRequestDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.h; sourceTree = ""; }; - 07AF52AC3FBAF8F0E6DD211EC27DCCB7 /* BFAppLinkResolving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkResolving.h; path = Bolts/iOS/BFAppLinkResolving.h; sourceTree = ""; }; - 082189F18A13ACF939C12C480EAE5E35 /* FBSDKTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.m; sourceTree = ""; }; - 0840F65EC8E68957C520055A54DB2D44 /* FBSDKAppGroupAddDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupAddDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.m; sourceTree = ""; }; + 000E1042A47DE50562D5C1A4C6FF9974 /* BSImagePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-prefix.pch"; sourceTree = ""; }; + 001B13036A37B063BB1CAD904F029CD1 /* FBSDKSharePhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhoto.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.m; sourceTree = ""; }; + 001ED1E1D09FB853BDAF73FC1B8F377F /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = AeroGearHttp/Utils.swift; sourceTree = ""; }; + 0033E553A9E291E0E59A579251A15AF3 /* GoogleParsingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleParsingUtilities.framework; path = Frameworks/GoogleParsingUtilities.framework; sourceTree = ""; }; + 00468CA987B4A935546FE35CE63FFAF8 /* BSImagePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSImagePicker-dummy.m"; sourceTree = ""; }; + 00EEBF80693871C1EF789A2413AB207F /* BFTaskCompletionSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTaskCompletionSource.h; path = Bolts/Common/BFTaskCompletionSource.h; sourceTree = ""; }; + 00F2D185A2B217B695F3DB73006C1BF7 /* PicoSOAPClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPClient.h; path = Pod/WebService/PicoSOAPClient.h; sourceTree = ""; }; + 0138C9B7102F27F16C0EA83C4AD3A4F2 /* FBSDKBridgeAPICrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPICrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.h; sourceTree = ""; }; + 018B6A2A607AA9D54157177041BD539F /* UIApplication+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+OAuthSwift.swift"; path = "OAuthSwift/UIApplication+OAuthSwift.swift"; sourceTree = ""; }; + 01B48A95E8FB5968F6B1C53766017131 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = Analytics/Sources/Firebase.h; sourceTree = ""; }; + 01B57E9DB65D55F43451B95735B294A1 /* AeroGearHttp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AeroGearHttp-dummy.m"; sourceTree = ""; }; + 01CEEAE2517300FA734CB255C0D037B2 /* FBSDKGameRequestFrictionlessRecipientCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestFrictionlessRecipientCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.h; sourceTree = ""; }; + 01D65C9D849C0D378B55D3405227EA75 /* FBSDKLikeButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.m; sourceTree = ""; }; + 0218CA0C9863F7D010FD6F8827528123 /* FBSDKAppLinkUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.m; sourceTree = ""; }; + 024C6B01C6E24A3B0CD04FCA6E89437D /* FBSDKErrorRecoveryConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m; sourceTree = ""; }; + 024ED946C43252B6F56278263E703AA9 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; + 02A34F20776D0C30D28831194C07A2FD /* LocksmithSecurityClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithSecurityClass.swift; path = Source/LocksmithSecurityClass.swift; sourceTree = ""; }; + 0319E11B04CF83F03018A52A1B70A418 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + 039AB69203818026871E385413BD62B2 /* FBSDKDialogConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDialogConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m; sourceTree = ""; }; + 03D5767A65705FCE62957183552C2E52 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + 03EC4B6660D8E598C5DF9D6B829E4213 /* FBSDKMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMath.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h; sourceTree = ""; }; + 03FA5AC8897E0F8AD9C3C3C1DDDD2517 /* FBSDKAccessTokenCacheV3_17.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_17.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.h; sourceTree = ""; }; + 040B1C87CFA5083D92259ADC456C1CB7 /* SOAP12Subcode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Subcode.m; path = Pod/SOAP/SOAP12/SOAP12Subcode.m; sourceTree = ""; }; + 04B2CD3D3801849D84B5A9E493B186E5 /* FBSDKKeychainStoreViaBundleID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStoreViaBundleID.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m; sourceTree = ""; }; + 060A914FBFB6819B5A0BB54ECA30C236 /* FBSDKAccessTokenCacheV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV4.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.h; sourceTree = ""; }; + 06D5D0D292FAE0B0E480828F0C597827 /* FBSDKTriStateBOOL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTriStateBOOL.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h; sourceTree = ""; }; + 0701C830C629BCA34DE60D87911D4CDC /* FBSDKShareDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDefines.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h; sourceTree = ""; }; + 078AE6D25BDE890AECD4ADDEBC3676A0 /* SOAP12NotUnderstoodType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12NotUnderstoodType.h; path = Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h; sourceTree = ""; }; + 08033C10521E7D136E0CA79E36FCAF3B /* SOAP12NotUnderstoodType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12NotUnderstoodType.m; path = Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m; sourceTree = ""; }; 08605C3156BFC50AC0F7824EF800A43A /* Pods-Vendoo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-resources.sh"; sourceTree = ""; }; 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; - 08B653C67501AFD8AFDD3A405C0880A4 /* FBSDKSharePhotoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhotoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.h; sourceTree = ""; }; - 08E86A9CEAE1073F8EB06D095899EC8E /* SOAP12Fault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Fault.m; path = Pod/SOAP/SOAP12/SOAP12Fault.m; sourceTree = ""; }; - 093DAF379B09CB9CC8C2594730E6C861 /* GDataXML-HTML-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GDataXML-HTML-prefix.pch"; sourceTree = ""; }; - 09523AB3CD75B683590559B093F010C0 /* SOAP12Body.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Body.h; path = Pod/SOAP/SOAP12/SOAP12Body.h; sourceTree = ""; }; - 095E0A3472702B8830A756EDD556D632 /* HttpRequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpRequestSerializer.swift; path = AeroGearHttp/HttpRequestSerializer.swift; sourceTree = ""; }; - 09C5F06A3BDBC389FC4668700A485B26 /* SOAP12Faultreason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Faultreason.h; path = Pod/SOAP/SOAP12/SOAP12Faultreason.h; sourceTree = ""; }; + 08868D332E9A307BCDD76B67933CD4F3 /* FBSDKAppInviteDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.m; sourceTree = ""; }; + 08B04DD27056BC2367665B1F2FDDB4F1 /* FBSDKBridgeAPICrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPICrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.m; sourceTree = ""; }; + 08B2D6B0395EC4DD61DFBE193203CD69 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + 090419E6F854BFF0E1B9A850299FF78B /* SOAP12Envelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Envelope.h; path = Pod/SOAP/SOAP12/SOAP12Envelope.h; sourceTree = ""; }; + 09888EEE1E11D1346C8670CF6C2CBA5C /* BFMeasurementEvent_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent_Internal.h; path = Bolts/iOS/Internal/BFMeasurementEvent_Internal.h; sourceTree = ""; }; 0A04452A724860D85F3FC806E0147F14 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0A478018630430D50CB7CF361E5AB164 /* SOAP12UpgradeType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12UpgradeType.m; path = Pod/SOAP/SOAP12/SOAP12UpgradeType.m; sourceTree = ""; }; + 0A10C682C58ECEBF06CDB1A4456190BD /* SOAP12UpgradeType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12UpgradeType.m; path = Pod/SOAP/SOAP12/SOAP12UpgradeType.m; sourceTree = ""; }; + 0A5067076AB83F35B4C05F2B94807AEA /* PicoXMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLWriter.h; path = Pod/Core/PicoXMLWriter.h; sourceTree = ""; }; + 0A6762DBC29BFF429D71E53C052696B8 /* FBSDKBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBase64.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h; sourceTree = ""; }; 0A8A9F7077071AC139E54B95C669CBE2 /* Pods-Vendoo-VendooUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-VendooUITests-dummy.m"; sourceTree = ""; }; + 0B4B1C4CAE23CFE4D34D8DC798AD81CF /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = ""; }; 0B5E34F5C87CFA9E2E41449FFC06ACE1 /* Pods_Vendoo_VendooUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo_VendooUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0BA69F359686D0DF13E8908891278F2B /* FBSDKAccessToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessToken.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m; sourceTree = ""; }; - 0BDD86C6317DD2E1A2D61337F22A55DE /* FBSDKButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKButton.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h; sourceTree = ""; }; - 0C486B4727AFE0A4797C33C8E2765A92 /* OAuthSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-prefix.pch"; sourceTree = ""; }; - 0CC5A36875AFC0238B595A727AA19879 /* SOAP12Subcode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Subcode.m; path = Pod/SOAP/SOAP12/SOAP12Subcode.m; sourceTree = ""; }; - 0CD0CBE8E2D4D32170E3B8904D57E899 /* BFAppLinkReturnToRefererView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView.h; path = Bolts/iOS/BFAppLinkReturnToRefererView.h; sourceTree = ""; }; - 0D1EC6AEDA20BD0303DE7A08B08C8E8D /* SWRevealViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWRevealViewController.m; path = SWRevealViewController/SWRevealViewController.m; sourceTree = ""; }; - 0D9C8E01DB21AAF105C10CF909B18718 /* FBSDKGraphRequestConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.h; sourceTree = ""; }; - 0DA6D2F389AF14019E8BA74FF2690A20 /* GDataXMLNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDataXMLNode.h; path = Pod/Classes/GDataXMLNode.h; sourceTree = ""; }; - 0DB476976DBD8C5481E989BDDB475605 /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperation.h; path = AFNetworking/AFHTTPRequestOperation.h; sourceTree = ""; }; - 0DCDACB474AC3ADD768D6B1C3DC646FE /* FBSDKCloseIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCloseIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m; sourceTree = ""; }; - 0DF0F9821ABBDAACF5F415C842360459 /* FBSDKCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m; sourceTree = ""; }; - 0E3CC35EBB907779C52E2BA419C652C7 /* FBSDKGraphRequestDataAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestDataAttachment.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.m; sourceTree = ""; }; - 0E9E12C665A69B68F3CF98C3E7E2289C /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = ""; }; - 0EFE3877D6773C11887700B43A5A1BC2 /* ResourceBundle-BSImagePicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-BSImagePicker-Info.plist"; sourceTree = ""; }; - 0FA328E4B9D90899E6BC7FC9780CD385 /* FBSDKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKColor.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h; sourceTree = ""; }; - 0FAD2E1B6781BFA7E28D456F1CAED86C /* FBSDKShareKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-prefix.pch"; sourceTree = ""; }; - 0FBD5B2058DE2B16BC3F1B5A7B04E40F /* Stream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stream.swift; path = Source/Stream.swift; sourceTree = ""; }; - 0FDCFC0010E47AC0BE5AE3E177D32528 /* FBSDKGraphErrorRecoveryProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphErrorRecoveryProcessor.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.m; sourceTree = ""; }; - 0FDF3E2A68787915419418623FAE5E4A /* SOAP12FaultcodeEnum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12FaultcodeEnum.h; path = Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h; sourceTree = ""; }; - 0FF02B199B8D42DE42D826C56B971B1C /* FBSDKLoginKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-umbrella.h"; sourceTree = ""; }; - 10151E0C079192034F4E43D1C6EA2B70 /* HMAC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HMAC.swift; path = OAuthSwift/HMAC.swift; sourceTree = ""; }; - 10A4E1C9F61C475D495D58BF2DD5AEFF /* Upload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Upload.swift; path = Source/Upload.swift; sourceTree = ""; }; + 0BBD41CC7E7BD8BBFB53C61E172181F5 /* FBSDKShareOpenGraphValueContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphValueContainer.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.m; sourceTree = ""; }; + 0C1EE52701EF5123B696725EB3225F45 /* FBSDKLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogger.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h; sourceTree = ""; }; + 0C3F6CD242A3136EFA8BD6714E7B2FAB /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + 0D5E61D9AAE2825876056C5946837448 /* FBSDKError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKError.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h; sourceTree = ""; }; + 0F837176C8A8ADCEBF0D5EF3ED8BEBDD /* SOAP12Body.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Body.m; path = Pod/SOAP/SOAP12/SOAP12Body.m; sourceTree = ""; }; + 0FA138DE081CDD324D5B069BC604820B /* FBSDKLoginManagerLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLogger.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.h; sourceTree = ""; }; + 1045BDCE4D5F66B2ACDA03A29A39367C /* FBSDKShareOpenGraphContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.m; sourceTree = ""; }; + 105DD0A1280AF6E90E96C3949DEB58B3 /* FBSDKAppEventsState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsState.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.h; sourceTree = ""; }; + 10D55C7A2541A1D5961911FADA235CCB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 1151176DC631DC8880B0DFE75E589247 /* FBSDKErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h; sourceTree = ""; }; 1195C4D4C4A323222EE46F4260672DC0 /* Pods-Vendoo-VendooTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-VendooTests-acknowledgements.markdown"; sourceTree = ""; }; - 11A2711929C1B7BF4E7C006BB6829240 /* PicoXMLRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLRequestOperation.h; path = Pod/WebService/PicoXMLRequestOperation.h; sourceTree = ""; }; - 11E9F653A2B9096D9B942AF36AF450D5 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; - 11F710E23B17AD395719BE3EAAC633F4 /* OpenIDClaim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpenIDClaim.swift; path = AeroGearOAuth2/OpenIDClaim.swift; sourceTree = ""; }; - 120C755E2F74CF17A20BEC02328DE095 /* FBSDKLikeButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.m; sourceTree = ""; }; - 1217C16EE78E51CB579D919EFC117D8C /* BFAppLink_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink_Internal.h; path = Bolts/iOS/Internal/BFAppLink_Internal.h; sourceTree = ""; }; - 1230D4DFFC0A1487CBEA467F6A300C4C /* FBSDKMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMath.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h; sourceTree = ""; }; - 126AE26BF4C4370952DC6B3B8EF9B26A /* FBSDKShareKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKShareKit.modulemap; sourceTree = ""; }; - 12C1E065A6B3D67E434B973AE1123ACA /* FBSDKGraphRequest+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequest+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h"; sourceTree = ""; }; - 13E485FD2622941556EC545D8E597CD9 /* FBSDKAppEventsState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsState.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.m; sourceTree = ""; }; - 144D5484885E6C90AB797898C08E7374 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; - 1485CD0D6CC46C66362314FFA0A959A6 /* FBSDKTriStateBOOL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTriStateBOOL.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m; sourceTree = ""; }; - 14D5C9BBF76C567DFE57F34DBDE0602A /* FBSDKWebDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialog.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m; sourceTree = ""; }; - 154E3CF52EB5D09A7733CBB9D06C1EF5 /* AeroGearHttp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AeroGearHttp.modulemap; sourceTree = ""; }; - 1558E1357BE03000E98FFEE56D1E1DE3 /* AeroGearOAuth2-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearOAuth2-umbrella.h"; sourceTree = ""; }; + 1282C5ED9E863E94BF29966D8EB115BD /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + 12B896BCD91B716DC30E3ED980093EC0 /* FBSDKCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h; sourceTree = ""; }; + 12C8B4D86273676E4E854315C92CC366 /* FBSDKLoginManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManager+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManager+Internal.h"; sourceTree = ""; }; + 130C4946F08E6D653B107C20365B65C3 /* FBSDKCoreKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-prefix.pch"; sourceTree = ""; }; + 13BCCE81892E6B9456CBAA4E9B012EF9 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; + 13CB1FA37E1CA867819AB54CF99BA3E3 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; + 1412E8DACE8DE3F85C8D36EF981DE70E /* FBSDKLikeActionControllerCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionControllerCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.m; sourceTree = ""; }; + 1430C1D53863E1D4281F89226B371606 /* FBSDKBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBase64.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m; sourceTree = ""; }; + 147CE037744629278068612DD0F635D0 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + 14BD137F1F334C986D612C1146877C3E /* FBSDKAppEventsDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsDeviceInfo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.m; sourceTree = ""; }; + 15677136DF7E3125FEC2A04639DA1912 /* FBSDKBridgeAPIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIResponse.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h; sourceTree = ""; }; 15711FB818776F1D8CB48B60128D6DA6 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 15B0D519C13A85B81EBA251944FD9E65 /* FBSDKServerConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m; sourceTree = ""; }; - 1659A098D97B7F23B12651594133C44F /* FBSDKPaymentObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKPaymentObserver.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.m; sourceTree = ""; }; - 1696EFC8EA369560ED9338FA360ECD1B /* FBSDKLikeBoxView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.m; sourceTree = ""; }; - 16FF99E2896CF92A099F5543EE4C8D6F /* FBSDKLikeActionControllerCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionControllerCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.h; sourceTree = ""; }; - 179F7B8C1F165CEA1130EABEEC849EB9 /* FBSDKBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBase64.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m; sourceTree = ""; }; - 17AEA9A9B2375BC5CE57EA3B2727844A /* OAuthWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthWebViewController.swift; path = OAuthSwift/OAuthWebViewController.swift; sourceTree = ""; }; - 17D5F633C3BA9C080CCE39DFDEC7F5F2 /* SOAP12NotUnderstoodType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12NotUnderstoodType.h; path = Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h; sourceTree = ""; }; - 1864F630CE031BF44EDE61E5DF26ECCD /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + 15A0794389E8BFA7DB077B10FDDEC57D /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; + 160E5A71B22B8B1A18E97BA919B5F144 /* FBSDKErrorRecoveryConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h; sourceTree = ""; }; + 16B2704B24E0E5F19E35200C55FEBDF3 /* FBSDKLoginCompletion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginCompletion+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion+Internal.h"; sourceTree = ""; }; + 172CD8CF2AB42ED5AA9D1E9C6D8F1E87 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + 1824A2DFE2858FDD3F1B2E5FBA9D9289 /* BFExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFExecutor.h; path = Bolts/Common/BFExecutor.h; sourceTree = ""; }; 188D44008D91F312115987B46D6CF552 /* Pods-Vendoo-VendooUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-VendooUITests-acknowledgements.markdown"; sourceTree = ""; }; - 18A7615FFEDC1FB3348C7337D0FE0C71 /* FBSDKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKInternalUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h; sourceTree = ""; }; - 19557DF0E158ABDD908E6E12B73E7785 /* FBSDKShareUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareUtility.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m; sourceTree = ""; }; - 19C9163A29E6B760F9AABFC94E3688AE /* FBSDKShareVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideo.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.h; sourceTree = ""; }; - 1AAF3229A34E9C0D5C8019CC2A75EEA5 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; - 1ADAAE793D80602C9B4C2663F838B071 /* FBSDKLoginTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m; sourceTree = ""; }; - 1B07AA5EBDF3A432722AEA054F7AE702 /* SOAP11Envelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Envelope.m; path = Pod/SOAP/SOAP11/SOAP11Envelope.m; sourceTree = ""; }; - 1B2C68E220839E29E6A84EBF102579FF /* AlbumCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumCell.swift; path = Pod/Classes/View/AlbumCell.swift; sourceTree = ""; }; - 1BDC798AC5D47CD190B16D3757D416CD /* AeroGearHttp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearHttp-prefix.pch"; sourceTree = ""; }; - 1C8F47E5144DC8935E946E23C6D16070 /* BFURL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFURL.m; path = Bolts/iOS/BFURL.m; sourceTree = ""; }; - 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.xcconfig; sourceTree = ""; }; - 1CE8840CF0E2F288EB9C4341DA8885F1 /* FBSDKLikeActionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionController.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.h; sourceTree = ""; }; - 1D5C2FDDF0F88752AF5E4684ED9E4F0E /* PicoStringConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoStringConverter.m; path = Pod/Core/Converter/PicoStringConverter.m; sourceTree = ""; }; + 1931A1D6E3520BBCB7812C0122509AE3 /* OAuthSwiftHTTPRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftHTTPRequest.swift; path = OAuthSwift/OAuthSwiftHTTPRequest.swift; sourceTree = ""; }; + 193CF8FE6A437E2F5A48AC8BB33A1AC2 /* String+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+OAuthSwift.swift"; path = "OAuthSwift/String+OAuthSwift.swift"; sourceTree = ""; }; + 199F09A6639EBEA3BFB9E3184AE9FDCC /* SWRevealViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-prefix.pch"; sourceTree = ""; }; + 19D706458CBB3CAA76E5E5827A9E9BB2 /* UntrustedMemoryOAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UntrustedMemoryOAuth2Session.swift; path = AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift; sourceTree = ""; }; + 1A79D3619A7BB66A35F7D3F56AE85E00 /* FBSDKShareOpenGraphContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.h; sourceTree = ""; }; + 1AD4E1575F3248B8734677F17536F00E /* SOAP11Body.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Body.m; path = Pod/SOAP/SOAP11/SOAP11Body.m; sourceTree = ""; }; + 1B87BEC3578B141498AA5BF02A884A9B /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperation.h; path = AFNetworking/AFHTTPRequestOperation.h; sourceTree = ""; }; + 1C2CE74AF731BB4E3D687268087D61A8 /* PicoSOAPWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPWriter.m; path = Pod/SOAP/PicoSOAPWriter.m; sourceTree = ""; }; + 1CEEAD28482C6CDF1D99A4DE1C24ED7D /* UIImageViewModeScaleAspect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIImageViewModeScaleAspect.h; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.h; sourceTree = ""; }; + 1D1183F6266ACE5160FC3CD6C4C45EC1 /* BFAppLinkNavigation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkNavigation.m; path = Bolts/iOS/BFAppLinkNavigation.m; sourceTree = ""; }; + 1D3759E9DFBEB8BE48F07D1736D3A314 /* FBSDKVideoUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKVideoUploader.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.h; sourceTree = ""; }; + 1D7806C43D330BBDC43982CBBA7E6DE0 /* BFTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTask.m; path = Bolts/Common/BFTask.m; sourceTree = ""; }; 1DAB82B06E436E004842E183C76B2507 /* BSImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BSImagePicker.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1DEE2A1DC3205A63F646221427149EBC /* BSImagePickerSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerSettings.swift; path = Pod/Classes/Protocol/BSImagePickerSettings.swift; sourceTree = ""; }; - 1E1E2CED915287AA3461F6300AB4951A /* BFAppLinkReturnToRefererView_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView_Internal.h; path = Bolts/iOS/Internal/BFAppLinkReturnToRefererView_Internal.h; sourceTree = ""; }; - 1EAE2D13588C432E6B57CBCD939C6B4B /* PicoConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConstants.h; path = Pod/Core/PicoConstants.h; sourceTree = ""; }; - 1ED18EAECBF26A7A58C5BCC9ADFED3D0 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; - 1EF195E634F9163762F5DC62B9188FBD /* FBSDKShareOpenGraphValueContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphValueContainer.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.m; sourceTree = ""; }; - 1F3045CE36007174B5AE014116FB12A5 /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLConnectionOperation.m; path = AFNetworking/AFURLConnectionOperation.m; sourceTree = ""; }; - 1F84E0250821081E5D6E4D529F79671F /* FBSDKAccessTokenCacheV3_17.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_17.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.h; sourceTree = ""; }; - 201F21FDB9DC9CB6D20957853F7ABF70 /* BSGridCollectionViewLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSGridCollectionViewLayout.modulemap; sourceTree = ""; }; - 2022303C12E152EA7B44B53848940E1C /* PicoXMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLElement.m; path = Pod/Core/XMLSupport/PicoXMLElement.m; sourceTree = ""; }; - 207FA511B14970E71D1B9CB632BE129A /* FBSDKShareKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-umbrella.h"; sourceTree = ""; }; - 211FC4C7B1EDCEA8885F03EB57487C9D /* FBSDKSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSettings.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h; sourceTree = ""; }; - 215716BB207EFED998E747C8916018F9 /* FBSDKServerConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h; sourceTree = ""; }; - 22D7031B071EF194F113DD5232C9B52A /* PicoXMLReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLReader.h; path = Pod/Core/PicoXMLReader.h; sourceTree = ""; }; - 22DD31CF2A28813447CE2E93E7D2B6B9 /* FBSDKShareError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareError.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.h; sourceTree = ""; }; - 2364FFE484047028D0864C0A9C409AA8 /* PicoCacheEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoCacheEntry.h; path = Pod/Core/Cache/PicoCacheEntry.h; sourceTree = ""; }; - 23D9EA6CD3EA83023E3E99F37858D897 /* FBSDKServerConfigurationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfigurationManager+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h"; sourceTree = ""; }; - 240B369BAE1858571F81882692762672 /* FBSDKVideoUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKVideoUploader.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.m; sourceTree = ""; }; - 24D5D774BFB590DE4A8D8308CA4249E6 /* FBSDKGraphErrorRecoveryProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphErrorRecoveryProcessor.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h; sourceTree = ""; }; - 254A8C0C0E243EE779478F2BABD0F2F8 /* SOAP12NotUnderstoodType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12NotUnderstoodType.m; path = Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m; sourceTree = ""; }; + 1E4F79E73EE57B00EFC0DA73E64F4100 /* SOAP11Header.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Header.m; path = Pod/SOAP/SOAP11/SOAP11Header.m; sourceTree = ""; }; + 1E5E83893196A501BFFD8CBA641D8166 /* FBSDKLikeDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeDialog.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.h; sourceTree = ""; }; + 1E710A0B01CE73B1EBF047D08A33B860 /* PhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCell.swift; path = Pod/Classes/View/PhotoCell.swift; sourceTree = ""; }; + 1E7DDC41A24040C06634E3929F74198C /* FBSDKLogo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m; sourceTree = ""; }; + 1E8743B04B1511510FDABFF1D5263370 /* FBSDKKeychainStoreViaBundleID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStoreViaBundleID.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h; sourceTree = ""; }; + 1E8F2A147E46504579F90A9C658C6521 /* PicoConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConfig.m; path = Pod/Core/PicoConfig.m; sourceTree = ""; }; + 1EA1AFF043613265D9F78F0459EF3FAF /* GDataXMLNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDataXMLNode.m; path = Pod/Classes/GDataXMLNode.m; sourceTree = ""; }; + 1FE12FFDA530FF3488C11F9B8D176B30 /* SOAP12UpgradeType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12UpgradeType.h; path = Pod/SOAP/SOAP12/SOAP12UpgradeType.h; sourceTree = ""; }; + 1FECAB965701806D681C868C59C0823F /* FBSDKUIUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUIUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h; sourceTree = ""; }; + 1FF1E518119DEB300F48FD1D92CC0554 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; + 200BF9A23099783EF66C47AB0034F887 /* FBSDKCoreKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-umbrella.h"; sourceTree = ""; }; + 201D4DBC404971D6752E70BDEF1D72D0 /* FBSDKShareConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareConstants.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.m; sourceTree = ""; }; + 205FDCE2F6A29694B0DABB3DB234FE4C /* PicoCacheEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoCacheEntry.m; path = Pod/Core/Cache/PicoCacheEntry.m; sourceTree = ""; }; + 207394D180556A2249071C99776304B7 /* Stream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stream.swift; path = Source/Stream.swift; sourceTree = ""; }; + 21A0CAC32EA114EFCEE3397692BBF0E3 /* FBSDKMonotonicTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMonotonicTime.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h; sourceTree = ""; }; + 21C86285910A7BB663217575F2A350EC /* BSImagePicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-umbrella.h"; sourceTree = ""; }; + 21D1ADDC1224132590604BCD92B1F976 /* FBSDKShareUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareUtility.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.h; sourceTree = ""; }; + 222786A8195A4F04A0E8FAD833693FAE /* FBSDKAppGroupAddDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupAddDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h; sourceTree = ""; }; + 2243EA0A134A72759F45E32D3104E68D /* FBSDKGraphRequestMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestMetadata.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h; sourceTree = ""; }; + 224EF1E0BE2877039FB4B94A04308D90 /* SelectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectionView.swift; path = Pod/Classes/View/SelectionView.swift; sourceTree = ""; }; + 225AB771EBFA572B49A7B8B7974B8856 /* FBSDKShareVideoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.h; sourceTree = ""; }; + 23774AA865667FB41934D5B732037AB9 /* _FBSDKLoginRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKLoginRecoveryAttempter.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.h; sourceTree = ""; }; + 2382C64C41BB3FA220C1C7FE22B3002D /* Download.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Download.swift; path = Source/Download.swift; sourceTree = ""; }; + 23D4935B0418E453182C9814FCB04689 /* UIImageViewModeScaleAspect-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-umbrella.h"; sourceTree = ""; }; + 2427B6BCA76A9BCB44CB5BA6D9D8DCD4 /* LocksmithError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithError.swift; path = Source/LocksmithError.swift; sourceTree = ""; }; + 246004C7A6D6DA56AB48D9BF34A7F38E /* SOAP12Detail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Detail.m; path = Pod/SOAP/SOAP12/SOAP12Detail.m; sourceTree = ""; }; + 246368D5EBD7F918E7B174B90BCBE716 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 24F026AA9D124A3205922BA305780C7F /* FBSDKShareVideoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.m; sourceTree = ""; }; + 251C1C2A981601408A85E91AA33D482F /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = ""; }; + 2548479331D978B9E023B5CE82D85237 /* BSGridCollectionViewLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-umbrella.h"; sourceTree = ""; }; 259D5CF25D587FDE7125A75DCD68A3D6 /* Pods-Vendoo-VendooUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo-VendooUITests.modulemap"; sourceTree = ""; }; - 25B20BB03E7D279E9F725AD6385BF70F /* Alamofire-SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-SwiftyJSON-dummy.m"; sourceTree = ""; }; - 25FAC2A080395962E19435E0617178AD /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; - 266CB4545C6FD7A9D2B0E629F2E7D860 /* Bolts.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Bolts.modulemap; sourceTree = ""; }; - 268C0B06B14A4BCDE90E3F5E70B93A61 /* SOAP12UpgradeType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12UpgradeType.h; path = Pod/SOAP/SOAP12/SOAP12UpgradeType.h; sourceTree = ""; }; - 26D049B6CDE17197E09B5FFAE7F64565 /* Bolts.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Bolts.m; path = Bolts/Common/Bolts.m; sourceTree = ""; }; - 273630BE380A291388E4950457CF8180 /* FBSDKLikeButtonPopWAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButtonPopWAV.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.h; sourceTree = ""; }; - 274402C750F02C7753DA0A1808189AF9 /* _FBSDKTemporaryErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKTemporaryErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h; sourceTree = ""; }; - 2811C81F012D28F9EE3BED52201D1727 /* PicoBindingSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoBindingSchema.m; path = Pod/Core/Schema/PicoBindingSchema.m; sourceTree = ""; }; - 2847E87631E080F6DE4980B5438780DA /* BFTask+Exceptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BFTask+Exceptions.m"; path = "Bolts/Common/BFTask+Exceptions.m"; sourceTree = ""; }; - 287B2FC046CD7E5286E13024FA041690 /* LocksmithInternetAuthenticationType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetAuthenticationType.swift; path = Source/LocksmithInternetAuthenticationType.swift; sourceTree = ""; }; - 293280C88802CCE9D78CD1E4253F3654 /* PicoNumberConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoNumberConverter.h; path = Pod/Core/Converter/PicoNumberConverter.h; sourceTree = ""; }; - 295C05B50FFE2CCBBD4D128933A88FDF /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + 2646E59E684B9D22F3D77EF53A53F05E /* FBSDKLogo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h; sourceTree = ""; }; + 283A5783856350F1C4A7C5B513AFDC55 /* FBSDKShareKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareKit.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareKit.h; sourceTree = ""; }; + 284A86E55EA49FF60F6A65557E11C7BD /* UIImageViewModeScaleAspect-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImageViewModeScaleAspect-dummy.m"; sourceTree = ""; }; + 28671C74E6219AA98F752E15384911B3 /* SOAP11Body.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Body.h; path = Pod/SOAP/SOAP11/SOAP11Body.h; sourceTree = ""; }; + 28BB183BD8FF92AD3E6D74CBCA24D080 /* ResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerializer.swift; path = AeroGearHttp/ResponseSerializer.swift; sourceTree = ""; }; + 2915E855DF5A68E33B8987E3B4C601F5 /* FBSDKBridgeAPIProtocolNativeV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolNativeV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h; sourceTree = ""; }; 2988D6367AC970D13B7AE0B9C4B3A5CF /* Bolts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Bolts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2A4B59D684FDB8F3B584C240E622C58A /* SOAP12Detail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Detail.m; path = Pod/SOAP/SOAP12/SOAP12Detail.m; sourceTree = ""; }; - 2A6819D9457898F2A08A44231008DB20 /* FBSDKMaleSilhouetteIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMaleSilhouetteIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m; sourceTree = ""; }; - 2A8EB10B18921992E9989829B0393AC9 /* FBSDKKeychainStoreViaBundleID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStoreViaBundleID.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h; sourceTree = ""; }; - 2A92694D4C8888731C04E9642E31FE5A /* FBSDKShareDialogMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialogMode.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.m; sourceTree = ""; }; - 2A97717F4F7ECC0DEC471C7C302AF960 /* FBSDKBridgeAPIProtocolWebV2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV2.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m; sourceTree = ""; }; - 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIImageViewModeScaleAspect.xcconfig; sourceTree = ""; }; - 2B2F7EBA8867723F12C25840D1E88243 /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIAlertView+AFNetworking.h"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.h"; sourceTree = ""; }; - 2B7CF4F7D74D9A0BB6F4222611D6C64F /* PicoXMLRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLRequestOperation.m; path = Pod/WebService/PicoXMLRequestOperation.m; sourceTree = ""; }; - 2BA6133139D645A886D2696A5332348C /* FBSDKErrorRecoveryConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h; sourceTree = ""; }; - 2C3240C489113EC7B1A848A55548D802 /* FBSDKViewImpressionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewImpressionTracker.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h; sourceTree = ""; }; - 2C7D30E84A7446738D0FC06667D18A86 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; - 2CA877959747A4B4F9B66EEBDD2A82C0 /* FBSDKShareOpenGraphAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphAction.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.m; sourceTree = ""; }; - 2D38A4B06DBCE6241BF23EE59DA2EC00 /* FBSDKAccessToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessToken.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h; sourceTree = ""; }; - 2D88B095A3E16088F69F7946ABFEEB71 /* FBSDKLoginButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginButton.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h; sourceTree = ""; }; - 2D9F9416BF5E8231542F184A97B97CE3 /* BSGridCollectionViewLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-umbrella.h"; sourceTree = ""; }; - 2E0A612D1C153F05BE41C16F4462C893 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 2E1E0BF60942125C2F4FA0F0D9C3A482 /* Bolts-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-prefix.pch"; sourceTree = ""; }; - 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Locksmith.xcconfig; sourceTree = ""; }; + 29D1AE81796DC5124809B3890F6B175A /* PicoXMLReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLReader.m; path = Pod/Core/PicoXMLReader.m; sourceTree = ""; }; + 29F4A5FEC445C887BF0DF9085B09B11F /* BFAppLinkTarget.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkTarget.m; path = Bolts/iOS/BFAppLinkTarget.m; sourceTree = ""; }; + 2A628B6C9BA20CFDBAC57EF7555C30D6 /* SOAP11Detail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Detail.m; path = Pod/SOAP/SOAP11/SOAP11Detail.m; sourceTree = ""; }; + 2B84576C09BC2BF20C14AF748C9CBBBC /* PicoBindingSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoBindingSchema.m; path = Pod/Core/Schema/PicoBindingSchema.m; sourceTree = ""; }; + 2BA9CC7A480C394DEC76D2D6110B7522 /* FBSDKShareOpenGraphValueContainer+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareOpenGraphValueContainer+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareOpenGraphValueContainer+Internal.h"; sourceTree = ""; }; + 2BFCF57757EBDBC63CB0A7A7F54BA339 /* AuthzModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthzModule.swift; path = AeroGearHttp/AuthzModule.swift; sourceTree = ""; }; + 2BFEF3E09D8AF55E082F0A5ADDE0BE62 /* FBSDKMaleSilhouetteIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMaleSilhouetteIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h; sourceTree = ""; }; + 2C1DE87C8F229D16BAFF51F1CD2388BD /* BFTask+Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BFTask+Exceptions.h"; path = "Bolts/Common/BFTask+Exceptions.h"; sourceTree = ""; }; + 2C25EC2E440052EE94EC320E7B078256 /* SWRevealViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWRevealViewController.h; path = SWRevealViewController/SWRevealViewController.h; sourceTree = ""; }; + 2C7FD5B09A112AD2C2CBCAF3A88785B4 /* FBSDKShareMediaContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareMediaContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.m; sourceTree = ""; }; + 2D698628237BFA603EB974416673161F /* FBSDKGraphRequestDataAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestDataAttachment.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h; sourceTree = ""; }; + 2D961BB58853D24F700F6704AB7BF748 /* FBSDKTriStateBOOL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTriStateBOOL.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m; sourceTree = ""; }; + 2DAAED79E3269FC96BDBA2AFF6409347 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + 2DC4E5A663C0014AB450F143CC83F3D8 /* PicoConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConstants.h; path = Pod/Core/PicoConstants.h; sourceTree = ""; }; + 2DE3C6B837F467784EBAB853C6C82D1C /* AeroGearOAuth2-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearOAuth2-prefix.pch"; sourceTree = ""; }; + 2DEF3170C8B804A5D1EA200137D7BD46 /* FBSDKVideoUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKVideoUploader.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.m; sourceTree = ""; }; + 2E3AF5B38596C01AC1FFE8EA4D5B94D5 /* AeroGearOAuth2-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearOAuth2-umbrella.h"; sourceTree = ""; }; 2E9442C823B6DA7C3A7653A638F855F9 /* BSImagePicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSImagePicker.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2EF43C2EA6C705C1E7948DBEF8197450 /* SOAP12Reasontext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Reasontext.h; path = Pod/SOAP/SOAP12/SOAP12Reasontext.h; sourceTree = ""; }; - 2F70D5CBD03BBE49AB8DC112573F8844 /* FBSDKLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogger.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h; sourceTree = ""; }; - 2FCC794790A65115BA5F8CA188FC8686 /* TYMActivityIndicatorView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TYMActivityIndicatorView.bundle; path = TYMActivityIndicatorView/TYMActivityIndicatorView.bundle; sourceTree = ""; }; - 31197CF960F9C2232A1DDCAB3F8DB68A /* FBSDKKeychainStoreViaBundleID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStoreViaBundleID.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m; sourceTree = ""; }; + 2EBBA769D7BA9CF0366FE9F7A26B0795 /* FBSDKLoginKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKLoginKit.modulemap; sourceTree = ""; }; + 3061C2192D37EEAC3A9D7892087979E1 /* PicoXMLRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLRequestOperation.h; path = Pod/WebService/PicoXMLRequestOperation.h; sourceTree = ""; }; + 30625FCE2DCA2DE514F3AAE1CBA40A22 /* BFAppLink_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink_Internal.h; path = Bolts/iOS/Internal/BFAppLink_Internal.h; sourceTree = ""; }; + 3088A10D14D0AA0DEDB8211CF5E32878 /* FBSDKBridgeAPIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m; sourceTree = ""; }; + 30C22B1D7B1BD5BCED20E4B3DEF77419 /* FBSDKDynamicFrameworkLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDynamicFrameworkLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h; sourceTree = ""; }; + 30D12B8D60A8941B2670BF9ACB460197 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; + 30DE14E146C77F25CB56ABC9A3269988 /* Locksmith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locksmith.swift; path = Source/Locksmith.swift; sourceTree = ""; }; 31513EB23B093A6F2C70644F9587813B /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 32112D00215016946FAEEE2B94201268 /* FBSDKShareLinkContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareLinkContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.h; sourceTree = ""; }; + 3181FD32AE9D274A1339FEDFED53A8D6 /* FBSDKMessageDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessageDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.h; sourceTree = ""; }; + 322547E7E04FA5908825574BBFE285B2 /* FBSDKLikeBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.h; sourceTree = ""; }; 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 32DA793C1694801D6DD0DD16FED99266 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; - 330B9B5C67D0B9BB12D7824AD0EF8750 /* FBSDKShareButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.m; sourceTree = ""; }; - 332E9ADCDB1A37E41540865A4A73B07B /* AeroGearOAuth2-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearOAuth2-prefix.pch"; sourceTree = ""; }; - 335B2839720289446894B5AA6E9E71ED /* PicoSOAPClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPClient.h; path = Pod/WebService/PicoSOAPClient.h; sourceTree = ""; }; - 3392A1562EEECDDCE5ABD3904BFAF496 /* FBSDKAccessTokenCacheV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV4.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.h; sourceTree = ""; }; - 339D24377EF92D935F881CD2DDBCE13B /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Frameworks/GoogleUtilities.framework; sourceTree = ""; }; - 34179205B39B7F983FC2D11EE089F0CB /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = OAuthSwift/Utils.swift; sourceTree = ""; }; - 34C0B1F7EB452212E19F6C9997008B3A /* FBSDKErrorRecoveryConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m; sourceTree = ""; }; - 34DBB921CD25DBE5E18FEF70FED44E53 /* SOAP12Body.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Body.m; path = Pod/SOAP/SOAP12/SOAP12Body.m; sourceTree = ""; }; - 34FF6B5D4B9E52421A24E3412E1278E9 /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = AeroGearOAuth2/Config.swift; sourceTree = ""; }; - 354093A3F49294E88E6A9D1C720D76CE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 330FEF1100FFC4446231D88FA09EF1A8 /* FBSDKAppInviteDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.h; sourceTree = ""; }; + 33739B550CC4A08364FFF4248370E9FF /* FBSDKAccessToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessToken.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m; sourceTree = ""; }; + 33C8C20C04F3D69D0A0DF14A070FD5FC /* OrderedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OrderedDictionary.m; path = Pod/OrderedDictionary/OrderedDictionary.m; sourceTree = ""; }; + 33D2F0AAD935AAE80D3EC077B7160900 /* Alamofire-SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Alamofire-SwiftyJSON.modulemap"; sourceTree = ""; }; + 34947BC2056A1C61E666A1AAEFBF09EA /* FBSDKAppGroupContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.m; sourceTree = ""; }; + 349E6153E23B1E38396AD170BFE98515 /* FBSDKCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m; sourceTree = ""; }; + 34FCB6A8D2BE9277C60E9AB560757B66 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = ""; }; + 351258D9C6911A688EA99DA405AA95BB /* FBSDKLoginManagerLoginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLoginResult.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.m; sourceTree = ""; }; + 352EB84AE5E7C6D488C23CF41B9723E1 /* FBSDKUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h; sourceTree = ""; }; 35773BF3F8D35D8635CE8E04D3381269 /* Pods-Vendoo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-dummy.m"; sourceTree = ""; }; - 359E31341B1154FBF255EEACA441C5CC /* FBSDKShareDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m; sourceTree = ""; }; + 35AAA9056B1BB2FDF22F4A1282B88461 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + 35D36CBF71EC7E17004331C4126AD10B /* UIImageViewModeScaleAspect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIImageViewModeScaleAspect.m; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.m; sourceTree = ""; }; + 35E16E4A0196F4DBF0877BB69D026523 /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIAlertView+AFNetworking.h"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.h"; sourceTree = ""; }; + 35E64A6433C0BD85B2192C41AE6F609D /* SOAP12Reasontext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Reasontext.h; path = Pod/SOAP/SOAP12/SOAP12Reasontext.h; sourceTree = ""; }; 35E922A51EACCBA7AE6AC58D002E4A0B /* UIImageViewModeScaleAspect.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIImageViewModeScaleAspect.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 361326F6C653527F508CB94E067782E3 /* Locksmith-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-umbrella.h"; sourceTree = ""; }; - 36135C08380EB61B7ED8884350600F98 /* FBSDKLoginButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginButton.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m; sourceTree = ""; }; + 360F8AB5707BC9F13F682FB8D7E43621 /* FBSDKLikeDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeDialog.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.m; sourceTree = ""; }; + 3650AD7E952BF7100B63991A57883BCF /* FBSDKAccessTokenCacheV3_21.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_21.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.m; sourceTree = ""; }; 368891931E4FDAD657575C866C45466D /* Alamofire_SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire_SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 36E7B859CCB46F89F12DA7DC11793B6E /* FBSDKGameRequestDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.m; sourceTree = ""; }; + 36CFB57F844C32DC09E88FD38B91FE79 /* FBSDKShareOpenGraphAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphAction.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.m; sourceTree = ""; }; + 36D7CC0B09DE9E90BFE79B8D14D0BFBE /* FBSDKShareOpenGraphObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphObject.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.h; sourceTree = ""; }; 3738A2FF8F7328CA11038CA2E0550FDB /* FBSDKShareKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKShareKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3801A6586C20BA514D687E5CB9811FE3 /* FBSDKAppEventsDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsDeviceInfo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.h; sourceTree = ""; }; - 383EB2C549433904BE20DE9CF33B6800 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - 3873EE2B52B1DF5A7434C81CD98CE17B /* FBSDKBoltsMeasurementEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBoltsMeasurementEventListener.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.m; sourceTree = ""; }; - 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OAuthSwift.xcconfig; sourceTree = ""; }; - 3A40D0DDD7DC17526BD52BCF79500DB7 /* BFWebViewAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFWebViewAppLinkResolver.h; path = Bolts/iOS/BFWebViewAppLinkResolver.h; sourceTree = ""; }; - 3A41012D8C5AB02333B4B83045FA2747 /* FBSDKShareConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareConstants.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.h; sourceTree = ""; }; - 3A626DB8AFDA446283E4671635902BC8 /* BFAppLinkTarget.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkTarget.m; path = Bolts/iOS/BFAppLinkTarget.m; sourceTree = ""; }; - 3A78489641F4A18BFD6D66C4D6E6C758 /* FBSDKShareLinkContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareLinkContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.m; sourceTree = ""; }; - 3B6284E8F6E616899222D07D6E94CFA6 /* SOAP11Detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Detail.h; path = Pod/SOAP/SOAP11/SOAP11Detail.h; sourceTree = ""; }; - 3B67245E41A4AF1938E37858C3C72D44 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; - 3B81CC9EF67BDCEF23158C3FFEAA9F5A /* FBSDKConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKConstants.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m; sourceTree = ""; }; + 373ED965545DF6F70B86AF2F1AFC6F2A /* FBSDKAppEventsDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsDeviceInfo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.h; sourceTree = ""; }; + 375FB692C9C403AAA856F10F1D203454 /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AFNetworking.modulemap; sourceTree = ""; }; + 37766421CDDB8E71D920BE9105F6BAC1 /* PicoBindingSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBindingSchema.h; path = Pod/Core/Schema/PicoBindingSchema.h; sourceTree = ""; }; + 37A95F35F48B7A9D92D4BAA3ABA71E42 /* PicoXMLRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLRequestOperation.m; path = Pod/WebService/PicoXMLRequestOperation.m; sourceTree = ""; }; + 38E25E36921E28D9B4382EDB4B1F3A28 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = ""; }; + 38EDA3D1F656F3D3694F14675525A11C /* FBSDKLikeControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeControl.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.m; sourceTree = ""; }; + 3940C53E02697860F32218623C63E187 /* PicoStringConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoStringConverter.h; path = Pod/Core/Converter/PicoStringConverter.h; sourceTree = ""; }; + 39981C28DFE2B2F33789DEE588B41716 /* SWRevealViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWRevealViewController.xcconfig; sourceTree = ""; }; + 3A4FBD8B410E9E96539BAFB9D8A80081 /* FBSDKShareKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKShareKit-dummy.m"; sourceTree = ""; }; + 3A7E900800CE42BDE701A3400409BA26 /* GoogleSymbolUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleSymbolUtilities.framework; path = Frameworks/GoogleSymbolUtilities.framework; sourceTree = ""; }; + 3B8FC5E769497DDD932001E3FC3D6D31 /* FBSDKGraphRequestConnection+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequestConnection+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h"; sourceTree = ""; }; + 3BD30D72E3096CF62F4B9A44F14C4313 /* SOAP12Fault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Fault.h; path = Pod/SOAP/SOAP12/SOAP12Fault.h; sourceTree = ""; }; 3C1AA7FFD701C1A7D3F654C6E8FC6EF4 /* BSGridCollectionViewLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSGridCollectionViewLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3C65B098C671D17C341DD62FC173ECFB /* Int+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+OAuthSwift.swift"; path = "OAuthSwift/Int+OAuthSwift.swift"; sourceTree = ""; }; - 3D2898F978B2ED9E604E36EA4FF85288 /* TYMActivityIndicatorView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = TYMActivityIndicatorView.modulemap; sourceTree = ""; }; + 3C2A3DC052387A2523692FFDE7037CBF /* FBSDKTypeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTypeUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.h; sourceTree = ""; }; + 3C391BBBED993C1AF3B869B0E59BE5DE /* SOAP11Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Header.h; path = Pod/SOAP/SOAP11/SOAP11Header.h; sourceTree = ""; }; + 3C6DF59CA85E6A0D7A667C8D47C4C062 /* PreviewViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewViewController.swift; path = Pod/Classes/Controller/PreviewViewController.swift; sourceTree = ""; }; + 3CD3183F52CE592128325219D88BC80E /* FBSDKLoginTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h; sourceTree = ""; }; + 3CEA019296E1F57B8381B0293C6C762C /* FirebaseStorage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseStorage.framework; path = Frameworks/frameworks/FirebaseStorage.framework; sourceTree = ""; }; + 3CFA8FE986D7C4167B0F4481E4A3EB91 /* FirebaseAuth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAuth.framework; path = Frameworks/frameworks/FirebaseAuth.framework; sourceTree = ""; }; 3D39DD62BD3344215867E4F6A59AFE01 /* Pods-Vendoo-VendooTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooTests.debug.xcconfig"; sourceTree = ""; }; - 3D6C6609F47675D67542BFBA691F142A /* SOAP12Subcode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Subcode.h; path = Pod/SOAP/SOAP12/SOAP12Subcode.h; sourceTree = ""; }; - 3D7AFF33D7BD46B127501BFA1A1F3FCF /* RequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestSerializer.swift; path = AeroGearHttp/RequestSerializer.swift; sourceTree = ""; }; - 3D806C1208A915E669BD4FBC2B95D419 /* GDataXMLNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDataXMLNode.m; path = Pod/Classes/GDataXMLNode.m; sourceTree = ""; }; - 3D94224C11E07BFE6398DA6B809C8ABA /* BFAppLinkNavigation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkNavigation.h; path = Bolts/iOS/BFAppLinkNavigation.h; sourceTree = ""; }; - 3E18B060939A2A20AC35F497BB8D9F7C /* PicoDataConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoDataConverter.m; path = Pod/Core/Converter/PicoDataConverter.m; sourceTree = ""; }; - 3E5458EC8B29B93BCD0F4DB01B9B129A /* Bolts-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-umbrella.h"; sourceTree = ""; }; + 3DED2A540227FA95BE9A2F4ACB84E9F7 /* FBSDKSendButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSendButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.m; sourceTree = ""; }; 3E761E000A87CDA00D2C3CB849EF5842 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 40860CE4791C20738F3B29A2D545328F /* FBSDKAudioResourceLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAudioResourceLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m; sourceTree = ""; }; - 410ACCE4C6EEFC8B50268F3ADB5D4A10 /* FBSDKErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m; sourceTree = ""; }; - 41480A800CA8D057E4E67FE080FADDE1 /* FBSDKLikeControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeControl.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.m; sourceTree = ""; }; - 41E305ED98B2F8952D7CDA42A7ADFBE9 /* PicoSOAPReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPReader.m; path = Pod/SOAP/PicoSOAPReader.m; sourceTree = ""; }; - 420AA687265F34C1B92A6D2B694EED54 /* SOAP11Body.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Body.h; path = Pod/SOAP/SOAP11/SOAP11Body.h; sourceTree = ""; }; + 3E9D12AF46145888EE10F157BC6C892B /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = OAuthSwift/Utils.swift; sourceTree = ""; }; + 3F2393AE4A2F59F53531D0BEBE3E84C8 /* FBSDKBridgeAPIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIResponse.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m; sourceTree = ""; }; + 3F54B238272020D5CC27E37D10D9605F /* Locksmith-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-prefix.pch"; sourceTree = ""; }; + 3F6F9B54119FC2F6EF39B44995028FD1 /* BFAppLinkNavigation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkNavigation.h; path = Bolts/iOS/BFAppLinkNavigation.h; sourceTree = ""; }; + 409A4FCE599012C18433BAB02082F141 /* PicoXMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLWriter.m; path = Pod/Core/PicoXMLWriter.m; sourceTree = ""; }; + 412237501A6CBE5F0ACED5A3A4C58780 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; + 4136820924BFFD27F402427B21C24B55 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstanceID.framework; path = Frameworks/frameworks/FirebaseInstanceID.framework; sourceTree = ""; }; + 414F8441A3420657D9995AC2FE29E8DB /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + 419C2160813EC7395FFBFC56C1B9F6DD /* FBSDKGraphRequestDataAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestDataAttachment.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.m; sourceTree = ""; }; + 41D087E9CA4CBB0BACBD263894534508 /* FBSDKSharingButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingButton.h; sourceTree = ""; }; + 41FE2D6084081C1E5B19A65FEB5B2F1B /* PicoReadable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoReadable.h; path = Pod/Core/PicoReadable.h; sourceTree = ""; }; + 42165CF2948E0217FDC0DFC98AAFE89D /* _FBSDKTemporaryErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKTemporaryErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h; sourceTree = ""; }; 42377CA15BC4A1804E1B51F383CC187C /* Pods-Vendoo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-acknowledgements.markdown"; sourceTree = ""; }; - 42BDF66743CD3E171F3466C6982B33AF /* FBSDKAppEventsUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.m; sourceTree = ""; }; - 42EED0D66730A14C542FFAB588757458 /* FBSDKDialogConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDialogConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m; sourceTree = ""; }; - 430CAB53B85B55094DB5D6A89759833D /* FBSDKShareOpenGraphObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphObject.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.h; sourceTree = ""; }; - 43840A1884785D097D5B32FD47F9D5ED /* OAuthSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = OAuthSwift.modulemap; sourceTree = ""; }; - 44BA5CB60B2E0632713031C09DA8FF35 /* FBSDKProfile+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKProfile+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h"; sourceTree = ""; }; - 45183A70E1DF80AA4424A99EBDD072BD /* SOAP12SupportedEnvType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12SupportedEnvType.m; path = Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m; sourceTree = ""; }; + 4331B18A8846B65FD09B3EAD8BCD71E3 /* AlbumsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumsViewController.swift; path = Pod/Classes/Controller/AlbumsViewController.swift; sourceTree = ""; }; + 437BD695A6FD61CBA57F49CBEB1DF70F /* GDataXML-HTML-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GDataXML-HTML-dummy.m"; sourceTree = ""; }; + 447CD894B8CED3EE972C5B1699CAD835 /* BFCancellationTokenRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenRegistration.m; path = Bolts/Common/BFCancellationTokenRegistration.m; sourceTree = ""; }; + 451E1AF77E26258AE5123C751DE2FCA7 /* PicoPropertySchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoPropertySchema.h; path = Pod/Core/Schema/PicoPropertySchema.h; sourceTree = ""; }; + 4549489BDB508FBA017742B2DF350A31 /* PicoConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConverter.h; path = Pod/Core/Converter/PicoConverter.h; sourceTree = ""; }; 4578E1AEB9C23435264A4E8697646F3B /* BSGridCollectionViewLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSGridCollectionViewLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 45A9A8FCBE779F8A7ACE59BD1AE2066F /* FBSDKGraphRequestConnection+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequestConnection+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h"; sourceTree = ""; }; 45C2113345F291B93A3A47FEC42E9D6B /* Pods-Vendoo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-acknowledgements.plist"; sourceTree = ""; }; - 45D5C4E7D18866F0718F53294F8092B7 /* FBSDKKeychainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStore.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h; sourceTree = ""; }; - 4632B5EF96567E5690D2872ED18DB524 /* FBSDKLoginUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginUtility.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.m; sourceTree = ""; }; - 476CC038C9ACA70BB8A6166B222BCAD4 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = AeroGearHttp/Utils.swift; sourceTree = ""; }; - 47958682789C056D40BF7CF6F9573F85 /* FBSDKShareDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.h; sourceTree = ""; }; - 480EAF767C67AE676AFEBA2B2C72DD95 /* TYMActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TYMActivityIndicatorView.h; path = TYMActivityIndicatorView/TYMActivityIndicatorView.h; sourceTree = ""; }; - 4852ABFCF4F0FA929A4EC5BC39C0B44F /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperationManager.h; path = AFNetworking/AFHTTPRequestOperationManager.h; sourceTree = ""; }; - 4879AE8293911291B535A5FF6E44592C /* FBSDKBridgeAPIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIResponse.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m; sourceTree = ""; }; - 487DE7F49F11B7D2AC55EA1944166AAF /* PhotoCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCollectionViewDataSource.swift; path = Pod/Classes/Model/PhotoCollectionViewDataSource.swift; sourceTree = ""; }; - 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Alamofire-SwiftyJSON.xcconfig"; sourceTree = ""; }; + 467B491B9F55217B819CE2A968521D57 /* BFAppLinkReturnToRefererView_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView_Internal.h; path = Bolts/iOS/Internal/BFAppLinkReturnToRefererView_Internal.h; sourceTree = ""; }; + 46D385E8BB079D515E729AEA5090ED4D /* PicoSOAPWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPWriter.h; path = Pod/SOAP/PicoSOAPWriter.h; sourceTree = ""; }; + 46E7E9E32998D00357966E21E642B796 /* FacebookOAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacebookOAuth2Module.swift; path = AeroGearOAuth2/FacebookOAuth2Module.swift; sourceTree = ""; }; + 47381F3BEE25E40C0B809697A8CBF6BA /* FBSDKShareConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareConstants.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.h; sourceTree = ""; }; + 488E13EB7B965538D660B1FC0F4D525E /* FBSDKCloseIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCloseIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h; sourceTree = ""; }; + 49ABEB10FAB660E5D89469161487A505 /* FBSDKAppGroupJoinDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupJoinDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h; sourceTree = ""; }; 49B6B3AA873F4F4971FAAFC663B2E729 /* SWRevealViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SWRevealViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B3924AE90C6D5F8F96E7BD456532B5C /* FBSDKShareOpenGraphAction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphAction.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.h; sourceTree = ""; }; + 4ACE998D41526CE7C774B1DF98EF1437 /* FBSDKIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m; sourceTree = ""; }; + 4B097E11F39423A0981DA61A73AD317E /* FBSDKMonotonicTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMonotonicTime.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m; sourceTree = ""; }; + 4B116E5EC462E3C9C8DABC90CC34D46D /* FBSDKAccessTokenCacheV4.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV4.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m; sourceTree = ""; }; + 4B2ED7E70F73B3C1767C61CB8848FE16 /* FBSDKAppInviteContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.h; sourceTree = ""; }; 4B68653733D3131EABDCBB864E04AD74 /* GDataXML_HTML.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GDataXML_HTML.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B6A56C3289C34F84A3243B0C29EFF86 /* ResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerializer.swift; path = AeroGearHttp/ResponseSerializer.swift; sourceTree = ""; }; - 4BEA5EC0AB6FAB0B19DCAF3A724F4124 /* FBSDKShareAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareAPI.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m; sourceTree = ""; }; - 4C24E9863E58DC41ED1E5B1C4A56C71E /* BSImagePicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSImagePicker.modulemap; sourceTree = ""; }; - 4C931FD6874CA306EC6486FD08D6E0AF /* FBSDKGameRequestFrictionlessRecipientCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestFrictionlessRecipientCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.h; sourceTree = ""; }; - 4C98B3727457492BB0D47AF3DADE79F9 /* FBSDKShareButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.h; sourceTree = ""; }; - 4CA72A1074E7109FC13F485003BC05BB /* FBSDKSendButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSendButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.h; sourceTree = ""; }; - 4E5193101046966C83A1A42EAA37AE6E /* FBSDKShareKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKShareKit-dummy.m"; sourceTree = ""; }; - 4F48974850CDE3FAA87DE439C405E05D /* CameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCell.swift; path = Pod/Classes/View/CameraCell.swift; sourceTree = ""; }; - 4FA352C897875F16D04154699FD41CCF /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - 4FC5191945366DAC35747F2456E28998 /* BFCancellationTokenSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenSource.m; path = Bolts/Common/BFCancellationTokenSource.m; sourceTree = ""; }; - 4FCEA524CE985F9574ABDED0790C8315 /* FBSDKPaymentObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKPaymentObserver.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.h; sourceTree = ""; }; + 4B82C71B66D16363C310C0221AB49DF2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4B868E99CCA5B3466984E6B7D4A2DEF3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4C1A3946D19638239E5F703F648C5725 /* PicoCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoCache.m; path = Pod/Core/Cache/PicoCache.m; sourceTree = ""; }; + 4C3D8D0C6E6F0C0995FBE3454888AFFE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4C779E912258AD1658DD397B739EC40A /* SOAP12Body.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Body.h; path = Pod/SOAP/SOAP12/SOAP12Body.h; sourceTree = ""; }; + 4CA04D75E2B14D1BA18D2AB8BE3771DA /* FBSDKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKColor.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h; sourceTree = ""; }; + 4CD6AB55C4FEFE58E3AF6C88DB111383 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4D65B31F5D7FE4EA3E9E19E69C68C7EB /* FBSDKLikeButtonPopWAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButtonPopWAV.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.m; sourceTree = ""; }; + 4E2D0A6D8828F124981A51813C767D91 /* SWRevealViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-umbrella.h"; sourceTree = ""; }; + 4FA60510D1A25F56E24AF24FC36B3F9E /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; 5005A8699C453626503502CFA2E8301E /* GDataXML_HTML.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GDataXML_HTML.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5072C8B1E1D466A2BB7524C239A94612 /* FBSDKErrorConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m; sourceTree = ""; }; - 5076B7CD77208083D1E3BE8579D7AE81 /* Locksmith.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Locksmith.modulemap; sourceTree = ""; }; - 512B061CCD4719F2DB8CF067B61BB903 /* GridCollectionViewLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GridCollectionViewLayout.swift; path = Pod/Classes/GridCollectionViewLayout.swift; sourceTree = ""; }; - 5150E3628702E4006BBC221030EDED31 /* FirebaseAuth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAuth.framework; path = Frameworks/frameworks/FirebaseAuth.framework; sourceTree = ""; }; - 5171047B32E16A56212576AF9C927ACD /* FBSDKDynamicFrameworkLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDynamicFrameworkLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h; sourceTree = ""; }; - 5207A19057DF081CF4F2BF90DFC02240 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 521428FAB97E69066F88237BE8C4AE9B /* BFCancellationTokenSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenSource.h; path = Bolts/Common/BFCancellationTokenSource.h; sourceTree = ""; }; - 522C992A032A2E406FD63462F865D592 /* PicoPropertySchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoPropertySchema.h; path = Pod/Core/Schema/PicoPropertySchema.h; sourceTree = ""; }; + 509467BE41DEAA3A3523C77C1491C0E0 /* OAuth2Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Swift.swift; path = OAuthSwift/OAuth2Swift.swift; sourceTree = ""; }; + 50BA3CEFA6F5E5A330C64E7B2C409E14 /* ResourceBundle-BSImagePicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-BSImagePicker-Info.plist"; sourceTree = ""; }; + 50FADBB02B12E0D145E0C472ABC70E5F /* FBSDKLoginKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginKit+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginKit+Internal.h"; sourceTree = ""; }; + 512118DAB504324A4C10C51634151339 /* BFAppLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLink.m; path = Bolts/iOS/BFAppLink.m; sourceTree = ""; }; + 517F2B91D47EC674D57663E5FCFC9C5C /* FBSDKCoreKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCoreKit.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h; sourceTree = ""; }; + 51FAC9A6B889BC3DE78E109AAC5CD9CE /* Locksmith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Locksmith.h; path = Source/Locksmith.h; sourceTree = ""; }; 5255B7F22C5FA05618744F0C036E41B9 /* Pods-Vendoo-VendooUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooUITests.debug.xcconfig"; sourceTree = ""; }; 52EB8E3A82853C0FBFC87CD6A335C47C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 5377850009ED2C9DCC8B62C24AAC728A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 53EA5490BD2D8F3B93640F57466D86F1 /* FBSDKLogo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h; sourceTree = ""; }; - 5424DE5409E08C2F52D10017A2211C1B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 547F0F61578EE093020B8127CFD6661D /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + 5339061BB4B4F2F0C45118854A1A077D /* SOAP11Envelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Envelope.h; path = Pod/SOAP/SOAP11/SOAP11Envelope.h; sourceTree = ""; }; + 53487A9E33D0949B2CB99E0576846C42 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Alamofire.modulemap; sourceTree = ""; }; + 535B0E61174AA7836FDF1CCAEB7A9C97 /* FBSDKProfile+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKProfile+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h"; sourceTree = ""; }; + 53B15506F2A78DED777AB0971457590B /* AccountManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccountManager.swift; path = AeroGearOAuth2/AccountManager.swift; sourceTree = ""; }; + 53C4E8CF7470A7ECC205F50CE312F67B /* SOAP12SupportedEnvType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12SupportedEnvType.h; path = Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h; sourceTree = ""; }; + 543B8D256086020754C10EA1CDA85CD2 /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftyJSON.modulemap; sourceTree = ""; }; + 545DFBD4CED3702290AC2A376522C2D2 /* BSGridCollectionViewLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSGridCollectionViewLayout.xcconfig; sourceTree = ""; }; 54A978CB632AD6DA73D28D7061829190 /* Pods-Vendoo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo.debug.xcconfig"; sourceTree = ""; }; - 552F8C6AFBDAC976539CCE95279EFB00 /* PicoCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoCache.h; path = Pod/Core/Cache/PicoCache.h; sourceTree = ""; }; - 557568B70198CCB91B18F73222FBD415 /* FBSDKLikeButtonPopWAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButtonPopWAV.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.m; sourceTree = ""; }; - 5595F78F1E2E6FCCD38460CBE7987096 /* FBSDKGameRequestContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.h; sourceTree = ""; }; + 54FBE64C914B141164A2B089BDCB456F /* Locksmith-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Locksmith-dummy.m"; sourceTree = ""; }; + 5532DA336DCD3D611AC368D9A223817A /* PicoKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PicoKit-dummy.m"; sourceTree = ""; }; + 553891046D53593D9944607098F2E819 /* FBSDKMessengerIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessengerIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.m; sourceTree = ""; }; + 556FD9B52DC4AC4AD2DCBC8C46437653 /* PicoDataConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoDataConverter.m; path = Pod/Core/Converter/PicoDataConverter.m; sourceTree = ""; }; + 55A62C6D92EA7B9199A393B2D46D87D4 /* FBSDKTimeSpentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTimeSpentData.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.m; sourceTree = ""; }; 55E0553BC1CEA1822AA7826599C94FD4 /* AeroGearOAuth2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AeroGearOAuth2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 561CE7829E757FDC6AC24B2794E98D95 /* BFTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTask.m; path = Bolts/Common/BFTask.m; sourceTree = ""; }; - 56C62ACDBAC74EBED7CA84A6A12227C6 /* FBSDKAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkResolver.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.m; sourceTree = ""; }; - 5723F2733FF874F7D39410C656B6D874 /* OAuthSwiftCredential.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftCredential.swift; path = OAuthSwift/OAuthSwiftCredential.swift; sourceTree = ""; }; - 5763164C84BA1444CC801F972E189C0A /* FBSDKKeychainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStore.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m; sourceTree = ""; }; + 56AC4C041BAB61E94CAF5542290E68D5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 574CE8185F6E56277CBE7548C47970C4 /* FBSDKShareKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareKit+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareKit+Internal.h"; sourceTree = ""; }; + 5762039239D0A2A79E4294F0B1B8DFBD /* Locksmith.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Locksmith.modulemap; sourceTree = ""; }; 5767233EA7637354C8E61061C9409DBB /* OAuthSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OAuthSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 57B4E1E26A52262A705E7EAA60D4F3C0 /* FBSDKBridgeAPICrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPICrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.m; sourceTree = ""; }; - 57C261DD8D16CB4A5AA9E9C697887864 /* FBSDKTestUsersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTestUsersManager.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h; sourceTree = ""; }; - 57DC59837CE442B112C29429512ECB06 /* UIImageViewModeScaleAspect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIImageViewModeScaleAspect.h; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.h; sourceTree = ""; }; - 58D9D0DA1ACDA3CDC1B76D9B740A1879 /* SelectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectionView.swift; path = Pod/Classes/View/SelectionView.swift; sourceTree = ""; }; - 58FE854B7DE94EBF654DC928C4316293 /* FBSDKSystemAccountStoreAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSystemAccountStoreAdapter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h; sourceTree = ""; }; - 59294C30161CC7DA8F58614411D98259 /* FBSDKBridgeAPIProtocolWebV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV2.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h; sourceTree = ""; }; - 59732171D966B182230711C2A962C3A2 /* Dictionary_Initializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dictionary_Initializers.swift; path = Source/Dictionary_Initializers.swift; sourceTree = ""; }; - 5979CC154FB100FDC06A627A0912EF1C /* LocksmithSecurityClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithSecurityClass.swift; path = Source/LocksmithSecurityClass.swift; sourceTree = ""; }; - 598683C00218E1CF2B8D6DF6063D3969 /* FBSDKShareOpenGraphContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.h; sourceTree = ""; }; + 5844E122C6EAEB6A480CDE62D846448F /* FBSDKShareLinkContent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareLinkContent+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareLinkContent+Internal.h"; sourceTree = ""; }; + 58CB0B9B46D79AA4C054584A02553BE8 /* SOAP11Fault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Fault.m; path = Pod/SOAP/SOAP11/SOAP11Fault.m; sourceTree = ""; }; + 59593E4991A2A6E7B5CFE638F58BD27B /* FBSDKMessengerIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessengerIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.h; sourceTree = ""; }; + 59ABE71EDA50EB3FDDE7CA8597E750B6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; - 5AA8F245D01102A52F45777264C584FA /* _FBSDKTemporaryErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKTemporaryErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m; sourceTree = ""; }; - 5AAA9FA721AC86560C982C18A31F3D91 /* UIImageViewModeScaleAspect-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImageViewModeScaleAspect-dummy.m"; sourceTree = ""; }; - 5B5DA369D0C58EE56D3E8C3EFA5C3C08 /* BFAppLinkNavigation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkNavigation.m; path = Bolts/iOS/BFAppLinkNavigation.m; sourceTree = ""; }; - 5B6C01EF3CFD2A471E161F4785915A2C /* PicoPropertySchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoPropertySchema.m; path = Pod/Core/Schema/PicoPropertySchema.m; sourceTree = ""; }; + 5B125F284A5E7490F94E6125F37AB30C /* FBSDKAccessTokenCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCache.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m; sourceTree = ""; }; + 5B15B41E934F97F43A53A8C35E8B19B9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 5B7F2F67EFB8A8B31FE8ED6A9104C3B0 /* Pods-Vendoo-VendooTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-VendooTests-dummy.m"; sourceTree = ""; }; - 5BD323F793AB7CDD39EB4D804B4D375B /* FBSDKLiking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLiking.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLiking.h; sourceTree = ""; }; - 5BEBBBF889045CD3EC3B7CDA99BC6C5C /* BSImagePickerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerViewController.swift; path = Pod/Classes/Controller/BSImagePickerViewController.swift; sourceTree = ""; }; - 5BF6084BAFE5ED9FC99C7A0DAE908761 /* FBSDKShareKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareKit+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareKit+Internal.h"; sourceTree = ""; }; - 5D15177C9B13D89F5AAF4A67DC7B8931 /* TrustedPersistantOAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrustedPersistantOAuth2Session.swift; path = AeroGearOAuth2/TrustedPersistantOAuth2Session.swift; sourceTree = ""; }; - 5D4ED8D0A31D91EFC609099F382FA31B /* FBSDKLoginCompletion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginCompletion+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion+Internal.h"; sourceTree = ""; }; - 5E5EE933149C0FF460A4687AE134384A /* KeycloakOAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeycloakOAuth2Module.swift; path = AeroGearOAuth2/KeycloakOAuth2Module.swift; sourceTree = ""; }; - 5E7CC12D5F3E06BF8E801CE52A7A74D4 /* SOAP11Envelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Envelope.h; path = Pod/SOAP/SOAP11/SOAP11Envelope.h; sourceTree = ""; }; - 5E83C4119367B3BB115800ABB3DFA47F /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; - 5E9A787207342FCEA2EED4ABC8971410 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; - 5EB5B13D0786F0EDE912B10169B689A5 /* FBSDKWebDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m; sourceTree = ""; }; - 5EB68B5A119AFA8929C94D2CB9AD2A37 /* FBSDKGraphRequestBody.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestBody.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m; sourceTree = ""; }; - 5ED6116A97A900E30653A427BC042E62 /* TYMActivityIndicatorView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TYMActivityIndicatorView-dummy.m"; sourceTree = ""; }; - 5F0B831082C42B3020735802E52BC8FE /* FBSDKSharePhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhoto.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.h; sourceTree = ""; }; - 5FEAE5B025211278744F393C5B0C36EB /* FBSDKLoginKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginKit+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginKit+Internal.h"; sourceTree = ""; }; - 601D3CA4BD4F7F6D295C4947E66295EB /* FBSDKWebDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialog.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h; sourceTree = ""; }; - 6064ECECE29155F4247517D0C00AF3A5 /* add_photo@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@3x.png"; path = "Pod/Assets/add_photo@3x.png"; sourceTree = ""; }; - 614DE4EB432D19E0071EC7F596F51B39 /* FBSDKAppGroupJoinDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupJoinDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h; sourceTree = ""; }; - 61B7F40A3681BE0DE011323E347C40F0 /* FBSDKLoginTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h; sourceTree = ""; }; - 61BB47AAE0B85BB22104E949B5F979C3 /* FBSDKVideoUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKVideoUploader.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.h; sourceTree = ""; }; - 62BED900052A470AA2FD9D41F5A2C3D4 /* FBSDKLikeDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeDialog.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.h; sourceTree = ""; }; - 6338A6287B607CCD2B89962C6901CC22 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 63537DDFAEFE1F2749F7CB8138DE2F98 /* AuthzModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthzModule.swift; path = AeroGearHttp/AuthzModule.swift; sourceTree = ""; }; - 6365223D2EE04FC4D1CBF866F038B308 /* PicoClassSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoClassSchema.m; path = Pod/Core/Schema/PicoClassSchema.m; sourceTree = ""; }; - 63D541600AB0BC0B46F7A0D8896AC894 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; - 64C7A07AEB5BAB49571A15D937796AFA /* FBSDKShareDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDefines.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h; sourceTree = ""; }; - 64E3B4BBF0885812ABC85A381066A943 /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLConnectionOperation.h; path = AFNetworking/AFURLConnectionOperation.h; sourceTree = ""; }; + 5BE46316993C53B5E6274DA9F4A6E104 /* BFTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTask.h; path = Bolts/Common/BFTask.h; sourceTree = ""; }; + 5C5E6F47FFE950104667598DA545B1A6 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; + 5CB6B2E273A1EBF66D39DCC9CFD3A65C /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; + 5CC65ABCB92FAE827654261608EEAC43 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; + 5DFF000CBA384E107EBCA5E1358A9BBA /* FBSDKBridgeAPIProtocolWebV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h; sourceTree = ""; }; + 5E29F947759DD700FDD4F067D92399D5 /* FBSDKTestUsersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTestUsersManager.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m; sourceTree = ""; }; + 5E4160851FE654599E47943F042571E6 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + 5EA8375610F9149C1A43895F8D32BAC1 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Sources/FIRInstanceID.h; sourceTree = ""; }; + 5ECEEE593931D24B8922E3810A6D6A64 /* FBSDKURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLSessionTask.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.h; sourceTree = ""; }; + 5F1E683D36F969F98DEC6249ADF0BC8A /* Locksmith.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Locksmith.xcconfig; sourceTree = ""; }; + 5F6BD0DADEFB7B7ECF43FFE5C22BC489 /* OAuthSwiftMultipartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftMultipartData.swift; path = OAuthSwift/OAuthSwiftMultipartData.swift; sourceTree = ""; }; + 5FCCD05992C6EB92262237C9B9C5516D /* NSDate+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSDate+OAuthSwift.swift"; path = "OAuthSwift/NSDate+OAuthSwift.swift"; sourceTree = ""; }; + 5FD3D51B14E4EA1D7C6DADA7866870D7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 5FE3E28828FA7D22CC1EBFA89D67EE3C /* Alamofire-SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-prefix.pch"; sourceTree = ""; }; + 60B51A6BF0322300A5842DABA3C1397E /* FBSDKSharingContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingContent.h; sourceTree = ""; }; + 60CA845C2D440E3DE8D118AB6EAA2B9F /* FBSDKAppGroupAddDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupAddDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.m; sourceTree = ""; }; + 60EB7350A9933A50C654060F05888904 /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Manager.swift; path = Source/Manager.swift; sourceTree = ""; }; + 61166C93A515F6A829804D6CB7239F4A /* FBSDKBridgeAPIProtocolWebV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m; sourceTree = ""; }; + 614AC0A67DE24690C5C0A7B771F72ED8 /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = ""; }; + 61EBA468B01BB0E791068FE5B9F2BC1F /* BFURL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFURL.m; path = Bolts/iOS/BFURL.m; sourceTree = ""; }; + 61F38B8FF542CF34787690048A98915B /* FacebookSDKStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; path = FacebookSDKStrings.bundle; sourceTree = ""; }; + 61F9AFB9F0CAAF11A8A48E56B1EFC071 /* FBSDKLoginKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-umbrella.h"; sourceTree = ""; }; + 6229510BDF0DA0019D2EB763FB95FD77 /* BFAppLinkResolving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkResolving.h; path = Bolts/iOS/BFAppLinkResolving.h; sourceTree = ""; }; + 632C14ECDE3A6D07DAAEAFB6EB5B0756 /* FBSDKBridgeAPIProtocolType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolType.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h; sourceTree = ""; }; + 63666D1D24F6D325CA4DE71C18AE210B /* PicoKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PicoKit-prefix.pch"; sourceTree = ""; }; + 641911AFD95B862873D0DF97FC94B94E /* TYMActivityIndicatorView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-umbrella.h"; sourceTree = ""; }; + 6423F7738ED7B01D28D8518ADE03D6EF /* LocksmithInternetAuthenticationType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetAuthenticationType.swift; path = Source/LocksmithInternetAuthenticationType.swift; sourceTree = ""; }; + 647446655F272BCEB4BCA45BFAA5B179 /* FBSDKGraphErrorRecoveryProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphErrorRecoveryProcessor.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.m; sourceTree = ""; }; 64F849AB0C6D915F04D9363C0EB073CB /* Pods_Vendoo_VendooTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo_VendooTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6564D6E0C0B299EF82715CA242A8DB02 /* FBSDKIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m; sourceTree = ""; }; - 657944D0882FE5E3659E6739B34E4AC3 /* TYMActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TYMActivityIndicatorView.m; path = TYMActivityIndicatorView/TYMActivityIndicatorView.m; sourceTree = ""; }; - 658C82613C9FB905AB99A1A9CF2F6372 /* FBSDKErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h; sourceTree = ""; }; - 65943526BB25489F3C16E16622D1E779 /* SOAP12Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Header.h; path = Pod/SOAP/SOAP12/SOAP12Header.h; sourceTree = ""; }; - 65E09A4D2744DCD15D59FFBEC09F06FE /* FBSDKConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKConstants.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h; sourceTree = ""; }; - 66024A49B3EC28081C1692C2040D11D7 /* FBSDKBridgeAPIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIResponse.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h; sourceTree = ""; }; - 6642E596F792AF16DC5C1AB3B08BEC72 /* PicoXMLClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLClient.m; path = Pod/WebService/PicoXMLClient.m; sourceTree = ""; }; - 669778F135362ED70DD925DB53B18444 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = ""; }; - 66D71F6E609FAFF75BA34F31AC4A6F98 /* SWRevealViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-prefix.pch"; sourceTree = ""; }; - 66DBCB3C69D5BEC6307565074B290069 /* FBSDKGraphRequestPiggybackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestPiggybackManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h; sourceTree = ""; }; - 6715DBC39B429F89E9D03F7BC03F2176 /* FBSDKMonotonicTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMonotonicTime.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h; sourceTree = ""; }; - 67F91B1466145C07925698D1F7162CB9 /* TYMActivityIndicatorView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-umbrella.h"; sourceTree = ""; }; - 688D4D0BE6D044686882A32AACB60D78 /* FBSDKMutableCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMutableCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h; sourceTree = ""; }; - 6985E24A3958AF81630E6675F2B49884 /* PicoConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConstants.m; path = Pod/Core/PicoConstants.m; sourceTree = ""; }; - 6A0FF05765511513470CC978B10207D2 /* SOAP12Reasontext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Reasontext.m; path = Pod/SOAP/SOAP12/SOAP12Reasontext.m; sourceTree = ""; }; - 6A2FF495ACA841678ABF1B82FF9DF99B /* PicoCacheEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoCacheEntry.m; path = Pod/Core/Cache/PicoCacheEntry.m; sourceTree = ""; }; - 6A460517F9FC1CD644C63D90CA376D69 /* BFTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTask.h; path = Bolts/Common/BFTask.h; sourceTree = ""; }; - 6AE1DAC81DA71B7B0830E680E6E181BC /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; - 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKLoginKit.xcconfig; sourceTree = ""; }; - 6B9B5F2B450B68490F72E20AC3FDDF8A /* NSData+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSData+OAuthSwift.swift"; path = "OAuthSwift/NSData+OAuthSwift.swift"; sourceTree = ""; }; - 6BFC736EF30D49729E53EC5AC8310491 /* FBSDKCoreKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-prefix.pch"; sourceTree = ""; }; - 6C0497209BB7308E6684025BD2BE8076 /* GoogleInterchangeUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleInterchangeUtilities.framework; path = Frameworks/GoogleInterchangeUtilities.framework; sourceTree = ""; }; - 6C7199A87E3366F1A836A8BEE11092CC /* UIImageViewModeScaleAspect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIImageViewModeScaleAspect.m; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.m; sourceTree = ""; }; - 6CB5F994A6A4BCEA588CB83296658340 /* OAuth2Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Swift.swift; path = OAuthSwift/OAuth2Swift.swift; sourceTree = ""; }; - 6D4331801A35FEB709F666C93CD2F86E /* FBSDKLoginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManager.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h; sourceTree = ""; }; - 6D4F3DD6A7BF4185DFE772EA964B09F7 /* BFTaskCompletionSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTaskCompletionSource.h; path = Bolts/Common/BFTaskCompletionSource.h; sourceTree = ""; }; + 6622A3A26DC48DF4080CC70D6A8E6CD1 /* FBSDKConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKConstants.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h; sourceTree = ""; }; + 667491E91CFC2F668ACD3FC9705E8267 /* FBSDKOrganicDeeplinkHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKOrganicDeeplinkHelper.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.h; sourceTree = ""; }; + 66CE1D151EDAF1F694CC84F87932FF4D /* FBSDKButton+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKButton+Subclass.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h"; sourceTree = ""; }; + 66EACF8725C6388E98F1AE858899605C /* FBSDKShareDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m; sourceTree = ""; }; + 671AC4CDFE356DA36FFAF78D6E33070E /* FBSDKAccessTokenCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCache.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h; sourceTree = ""; }; + 67B18595F0972A3AB16887A321CEA63E /* FBSDKGraphRequest+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequest+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h"; sourceTree = ""; }; + 67B91A3F7B4257AF8B4D55A0D2B00B4F /* FBSDKAccessTokenCaching.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCaching.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h; sourceTree = ""; }; + 67F074202B8FC6B7D7D56B4283D6C913 /* PicoDataConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoDataConverter.h; path = Pod/Core/Converter/PicoDataConverter.h; sourceTree = ""; }; + 689CA61A2D5A47E6F7144D8E5ED6EA12 /* OAuthSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAuthSwift-dummy.m"; sourceTree = ""; }; + 691A4C04F98345445788E4C08002C21D /* FBSDKHashtag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKHashtag.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.m; sourceTree = ""; }; + 69FB3482169453D0CCB7C8DC98027EB4 /* FBSDKURLOpening.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLOpening.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h; sourceTree = ""; }; + 6A25F5C107C5634359A096638142E310 /* FBSDKAppEventsStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsStateManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.h; sourceTree = ""; }; + 6A49025A6681123C28C8013B0D51A40C /* PicoBindable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBindable.h; path = Pod/Core/PicoBindable.h; sourceTree = ""; }; + 6A705D8A48421013F5568907F7037BFE /* FBSDKErrorConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m; sourceTree = ""; }; + 6AD8462BC721F141E3D722442D1F72E3 /* FBSDKAccessTokenCacheV3_17.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_17.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.m; sourceTree = ""; }; + 6B486C905117C6A5B535EF58FF260ACD /* FBSDKApplicationDelegate+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKApplicationDelegate+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h"; sourceTree = ""; }; + 6C20915E828DAB39A928197ADDE81CD5 /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperation.m; path = AFNetworking/AFHTTPRequestOperation.m; sourceTree = ""; }; + 6C28443FE1B08EC27CB75A33D9C094B7 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + 6C907BBC5D50B128B81C9035A09DF6EF /* FBSDKSystemAccountStoreAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSystemAccountStoreAdapter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h; sourceTree = ""; }; + 6CB384B8B7E1B7F9DF4F7EDB8E7FEEBE /* OAuthSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-prefix.pch"; sourceTree = ""; }; + 6D3F760E392AA44CFC261B6AD790A0D5 /* FBSDKLoginKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginKit.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h; sourceTree = ""; }; 6D711B5958F2624711CB342A5BBA5D17 /* Pods-Vendoo-VendooTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooTests-resources.sh"; sourceTree = ""; }; - 6DA86555A9697F4831C5CAD6FC704BF5 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; - 6E163856F56716D12F898C0A82D64649 /* FBSDKLikeDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeDialog.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.m; sourceTree = ""; }; - 6E1B51E195D0E8064960DF10B15B6ED4 /* FBSDKLoginError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginError.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.h; sourceTree = ""; }; - 6EDB9D463C502DF5FFF6440CAC522213 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; - 6F43B1645F9281E3893D341A6889B613 /* XMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = XMLWriter.h; path = Pod/XMLWriter/XMLWriter.h; sourceTree = ""; }; + 6D79FE1BFB1530D5930A6A515DAE55FD /* FBSDKServerConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m; sourceTree = ""; }; + 6ED54AF2A1C0F991D0F1DF1881D846BE /* SOAP12FaultcodeEnum.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12FaultcodeEnum.m; path = Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m; sourceTree = ""; }; 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Bolts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6F867D48DD2E43C581E8112360E73F64 /* FBSDKGameRequestFrictionlessRecipientCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestFrictionlessRecipientCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.m; sourceTree = ""; }; - 70576938AE450669B1DB018253E1AC6D /* OAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Module.swift; path = AeroGearOAuth2/OAuth2Module.swift; sourceTree = ""; }; - 717768FA09DE50DE39982007A3BB92FC /* FBSDKCoreKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKCoreKit-dummy.m"; sourceTree = ""; }; - 717C21EDAE454445C37AA0B5F44D2757 /* FBSDKHashtag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKHashtag.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.m; sourceTree = ""; }; - 71C78B47AAD708C337C652098585D02D /* FBSDKAccessTokenCacheV4.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV4.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m; sourceTree = ""; }; - 72245D286497643AEC39CFD51C055F36 /* FBSDKApplicationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKApplicationDelegate.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m; sourceTree = ""; }; - 7229378569C294E7ADDAEA7B3F9F1A62 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; - 727549E62BD7A32551D9A4A495E77A99 /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Manager.swift; path = Source/Manager.swift; sourceTree = ""; }; - 728250A42897ED5C6F6E4620AAC65540 /* PicoSOAPClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPClient.m; path = Pod/WebService/PicoSOAPClient.m; sourceTree = ""; }; - 735F19B7A2C3BFEB5A21280A6D04E96D /* FBSDKShareVideoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.h; sourceTree = ""; }; - 73F1953D06394C717AE56AEF0BDDB4FA /* FBSDKAccessTokenCacheV3_21.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_21.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.h; sourceTree = ""; }; - 7432AAACA1A0F6AF9BE4E9B44472450A /* UntrustedMemoryOAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UntrustedMemoryOAuth2Session.swift; path = AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift; sourceTree = ""; }; - 7451DC440007CAE64F8E4F46AF67ADA2 /* FBSDKGraphRequestMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestMetadata.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m; sourceTree = ""; }; - 754B56B34B29990770364603E688F08B /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperation.m; path = AFNetworking/AFHTTPRequestOperation.m; sourceTree = ""; }; - 756045EA57C784EEB157B18756DCCE1E /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; - 75717B0EE6927EDD4C83D0DA97D0FAD0 /* FBSDKLoginManagerLoginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLoginResult.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h; sourceTree = ""; }; - 75B013B5CC469E61C3A5FCE922726DCD /* FBSDKLoginConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginConstants.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.m; sourceTree = ""; }; - 75DA66CAE047B220F692A33AB8BBA621 /* SOAP12Faultcode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Faultcode.m; path = Pod/SOAP/SOAP12/SOAP12Faultcode.m; sourceTree = ""; }; - 769BE9934A6B18F097264F40ED80D5DB /* FBSDKServerConfigurationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfigurationManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m; sourceTree = ""; }; - 76C86C7E48E9DA6F8DFE5A2E31E43A7A /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; - 778B859863182A0F8ED549FE794E9B22 /* LocksmithInternetProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetProtocol.swift; path = Source/LocksmithInternetProtocol.swift; sourceTree = ""; }; - 77F245EC157687963EDF650BBC4784FC /* PicoXMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLWriter.m; path = Pod/Core/PicoXMLWriter.m; sourceTree = ""; }; - 784FB02CAF784BEDDCEA4B30A3ABF477 /* FBSDKLoginCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginCompletion.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.h; sourceTree = ""; }; - 78707D42C9424E9D1BC3A19DE5C23E39 /* BFCancellationTokenRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenRegistration.m; path = Bolts/Common/BFCancellationTokenRegistration.m; sourceTree = ""; }; - 79ABEA5584C4377DCDDAFFAA0E036696 /* FBSDKProfilePictureView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfilePictureView.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m; sourceTree = ""; }; - 79CA30FE6F1DBFBF380140B5FB47263C /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; - 7A25AEEBB73C1A6F99CE31001CC8E7D5 /* FBSDKApplicationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKApplicationDelegate.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h; sourceTree = ""; }; - 7A7C7CEED29FD3533FA87314D4AAD92E /* BFCancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationToken.h; path = Bolts/Common/BFCancellationToken.h; sourceTree = ""; }; - 7AAAF26C01B2BFD6C274E707708CFFE9 /* FBSDKCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h; sourceTree = ""; }; - 7AE0BBD7A0874B2672F5EC0AF4575B96 /* PhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCell.swift; path = Pod/Classes/View/PhotoCell.swift; sourceTree = ""; }; - 7B1DA2F438778DFCB7E920B0ADEE002A /* FBSDKProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfile.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m; sourceTree = ""; }; - 7B23EEC9EF98E18BA78C2574CB347939 /* FBSDKOrganicDeeplinkHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKOrganicDeeplinkHelper.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.h; sourceTree = ""; }; - 7B3D6B712BF9A7AE7667FCF079270313 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 7B46725242B6A8D8B1BEF0CB4200A3D8 /* FBSDKShareAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareAPI.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.h; sourceTree = ""; }; - 7C1B1BEC31288186EE8561AA7F71966C /* CameraCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCollectionViewDataSource.swift; path = Pod/Classes/Model/CameraCollectionViewDataSource.swift; sourceTree = ""; }; + 6FB4C33333E54A77C6B35E65602B4534 /* FBSDKAudioResourceLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAudioResourceLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h; sourceTree = ""; }; + 70972190DF891CF51777FC24E52F79D9 /* OAuthSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OAuthSwift.xcconfig; sourceTree = ""; }; + 70F457F1438C91B35D050C98740288F3 /* CameraCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = CameraCell.xib; path = Pod/Assets/CameraCell.xib; sourceTree = ""; }; + 710687F25B543757A7FB0983E5E2B292 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + 71110B4517006E80554B2E500D3A76E6 /* TYMActivityIndicatorView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TYMActivityIndicatorView-dummy.m"; sourceTree = ""; }; + 713D82839468147062E384DC624DF98E /* FBSDKTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h; sourceTree = ""; }; + 7180B871CFDEC41DEE090DFD594853C5 /* FBSDKTestUsersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTestUsersManager.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h; sourceTree = ""; }; + 71B3955871C5EB62A7901AC3695B4805 /* FBSDKAppGroupContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.h; sourceTree = ""; }; + 72368B5F6CE78E5A71494904E1BF6A2A /* FBSDKGraphRequestBody.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestBody.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h; sourceTree = ""; }; + 72442121717D1628561BB98E53FB727C /* FBSDKLikeBoxView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.m; sourceTree = ""; }; + 72539655BD88854832A7A61DE5DA2076 /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperationManager.m; path = AFNetworking/AFHTTPRequestOperationManager.m; sourceTree = ""; }; + 72C49E937EB70ECD27872633533F1CC1 /* FBSDKTypeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTypeUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.m; sourceTree = ""; }; + 731A2EE1C4D3A53E178B7C8321B6CCC6 /* OAuthSwiftURLHandlerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftURLHandlerType.swift; path = OAuthSwift/OAuthSwiftURLHandlerType.swift; sourceTree = ""; }; + 746045D0BC534013A455BF59C15D9F10 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + 749F2D3A27A296B02B79C38664928E39 /* NSData+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSData+OAuthSwift.swift"; path = "OAuthSwift/NSData+OAuthSwift.swift"; sourceTree = ""; }; + 74F1BB127C261B774EC7C58D4475326B /* Bolts-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-prefix.pch"; sourceTree = ""; }; + 75E7A1449EBFD7ADADCF6869057BC447 /* FBSDKBridgeAPIProtocolNativeV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolNativeV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m; sourceTree = ""; }; + 76A87F95DC8203D14B80793CACF1ACF1 /* PicoCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoCache.h; path = Pod/Core/Cache/PicoCache.h; sourceTree = ""; }; + 789CF77B11315E865591B1C8716C5185 /* FBSDKSendButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSendButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.h; sourceTree = ""; }; + 7B3C0C7B56E945E5783FD1836162E7D7 /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = ""; }; + 7BDD79E1FB0A9F7F08852F4365AFC6BE /* Bolts-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-umbrella.h"; sourceTree = ""; }; + 7BE8EB1BCC368D8EDE6708DAACCE4E63 /* AeroGearOAuth2.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AeroGearOAuth2.xcconfig; sourceTree = ""; }; + 7CA0B137E7412D18B7FB8CD2101CAA45 /* FBSDKDynamicFrameworkLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDynamicFrameworkLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m; sourceTree = ""; }; + 7CC0B0503711DC6ECFCF4ED191D053CB /* NSIndexSet+NSIndexPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSIndexSet+NSIndexPath.swift"; path = "Pod/Classes/Extension/NSIndexSet+NSIndexPath.swift"; sourceTree = ""; }; 7CC12098B0F5B8F0228D39F0FCEA1DF3 /* Pods-Vendoo-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-frameworks.sh"; sourceTree = ""; }; - 7D03884E6D124364437EC429FFB2DF62 /* FBSDKTypeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTypeUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.m; sourceTree = ""; }; - 7D08394BB3C986C1BFA07FFBB2E4B874 /* FBSDKShareDialogMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialogMode.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.h; sourceTree = ""; }; - 7D120FCA90A26497DB58AD40797D5E66 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; - 7D5C411FA498BF0C8663F9BA74B398FC /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; - 7D923143858CA62956A9EF95B09F354D /* SWRevealViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWRevealViewController-dummy.m"; sourceTree = ""; }; - 7D97429AD2D786FDD7A057B4B5BA31FB /* FBSDKSystemAccountStoreAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSystemAccountStoreAdapter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.m; sourceTree = ""; }; - 7DEA5BCBA51E22D7D5ADBCA12734090C /* PicoSOAPWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPWriter.h; path = Pod/SOAP/PicoSOAPWriter.h; sourceTree = ""; }; - 7EAB3635919B2B67D51AF7B9E62C78C4 /* FBSDKHashtag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKHashtag.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.h; sourceTree = ""; }; - 7ED3CE884BE63449A8C1FCAD839407AB /* FBSDKLikeButton+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeButton+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButton+Internal.h"; sourceTree = ""; }; - 7F2F303A3598169884F80D7E47D14E6F /* SWRevealViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWRevealViewController.h; path = SWRevealViewController/SWRevealViewController.h; sourceTree = ""; }; - 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWRevealViewController.xcconfig; sourceTree = ""; }; - 7FDDEF84189F43CFB074278587F13019 /* AeroGearOAuth2-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AeroGearOAuth2-dummy.m"; sourceTree = ""; }; - 80625927A0A8240A11820485C1B89E1D /* FBSDKAccessTokenCacheV3_17.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_17.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.m; sourceTree = ""; }; - 806C2D6BD79698DD3F5D505EC0EF3137 /* FBSDKCloseIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCloseIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h; sourceTree = ""; }; - 80EFAB771868CE6DEFEEC2E09785125B /* FBSDKBridgeAPIProtocolType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolType.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h; sourceTree = ""; }; - 81098AB9B6F098FF1D8D11E982676637 /* PicoConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConverter.m; path = Pod/Core/Converter/PicoConverter.m; sourceTree = ""; }; - 812DD1515DD556A3A49D9EC899A4ED72 /* PicoKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PicoKit-dummy.m"; sourceTree = ""; }; - 815884EE68A2843EE9E92A62361D5865 /* FBSDKAppLinkUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.h; sourceTree = ""; }; + 7D2EA275E320DE2D01B082C95227C586 /* PicoPropertySchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoPropertySchema.m; path = Pod/Core/Schema/PicoPropertySchema.m; sourceTree = ""; }; + 7E1320B5561C40711717B84F806B55E4 /* Bolts.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Bolts.modulemap; sourceTree = ""; }; + 7E79CAD12662F8E74E4001911EC74414 /* FBSDKPaymentObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKPaymentObserver.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.h; sourceTree = ""; }; + 7F23C14A9C76BFC201AC3B5DF5C99000 /* BFURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL.h; path = Bolts/iOS/BFURL.h; sourceTree = ""; }; + 7F8FEB850D665C585E9AE04C81F77D59 /* FBSDKSharePhotoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhotoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.h; sourceTree = ""; }; + 7FEEE4B1E8958126C54B40ACA56D0169 /* Dictionary+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Dictionary+OAuthSwift.swift"; path = "OAuthSwift/Dictionary+OAuthSwift.swift"; sourceTree = ""; }; + 8018977B3C1F04CE3BDC19BEB81B82C6 /* FBSDKErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m; sourceTree = ""; }; + 8083E7364020A68A66B966B84E0F6EE8 /* FBSDKGameRequestDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.m; sourceTree = ""; }; + 80DFB72E328430E9F69E94BF5D90DD8F /* TrustedPersistantOAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrustedPersistantOAuth2Session.swift; path = AeroGearOAuth2/TrustedPersistantOAuth2Session.swift; sourceTree = ""; }; + 8122BB4305E407D61447DB744AFF6016 /* FBSDKLikeObjectType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeObjectType.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.m; sourceTree = ""; }; + 813AECF2665F588D5F20EC20F68B11AF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 81BD42E8BA677F5A489C3108E0C0838D /* FBSDKHashtag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKHashtag.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.h; sourceTree = ""; }; 81D2A412E76804FC3F7D718F35862618 /* Pods-Vendoo-VendooUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-VendooUITests-acknowledgements.plist"; sourceTree = ""; }; - 81DFE4210F32934A2DFD9AA6F34234CC /* OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwift.swift; path = OAuthSwift/OAuthSwift.swift; sourceTree = ""; }; - 81F08B43E92B486C2C86F709681C9AFD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 822D72BA8B1F86602793321A425FE83A /* FBSDKProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfile.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h; sourceTree = ""; }; - 827DF8A7D55FF991FBAE6D38BA69E49A /* UIImageViewModeScaleAspect-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-prefix.pch"; sourceTree = ""; }; - 82CAB572E7F231888D8E94DCD2A61FF5 /* FBSDKCheckmarkIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCheckmarkIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.h; sourceTree = ""; }; - 83046507F9437DD39784307FE629DB93 /* BFExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFExecutor.h; path = Bolts/Common/BFExecutor.h; sourceTree = ""; }; - 830D7C28C7F7C7E68853BAAF9C67506C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 831F01F23D3F1DC8A1E13167976B0163 /* FBSDKBridgeAPIRequest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKBridgeAPIRequest+Private.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h"; sourceTree = ""; }; - 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKShareKit.xcconfig; sourceTree = ""; }; + 8203477FCE0A0D183D7B03DB5F881B78 /* FBSDKIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h; sourceTree = ""; }; + 82052588172AD4C414701FA37E46E0C9 /* BFCancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationToken.h; path = Bolts/Common/BFCancellationToken.h; sourceTree = ""; }; + 820B0DB39D19E191C1E0FDD1EF8E3DA7 /* CameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCell.swift; path = Pod/Classes/View/CameraCell.swift; sourceTree = ""; }; + 830A613563F181EF723A8F8B8EBD567C /* Alamofire-SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-SwiftyJSON-dummy.m"; sourceTree = ""; }; + 83626CD5D098BBE028979A7EB83CE112 /* PicoBoolConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBoolConverter.h; path = Pod/Core/Converter/PicoBoolConverter.h; sourceTree = ""; }; + 83E750719C957EB24FD6106917FEFDE0 /* JsonResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonResponseSerializer.swift; path = AeroGearHttp/JsonResponseSerializer.swift; sourceTree = ""; }; + 83E87254FC0A6F38FB6A9C1F635D6712 /* FBSDKButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKButton.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m; sourceTree = ""; }; + 8440EBD3104FBD8FFDE088073125AFE0 /* FBSDKLoginManagerLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLogger.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.m; sourceTree = ""; }; + 8475EDFA88678CDE8BB5836A276C57E7 /* FBSDKShareButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.m; sourceTree = ""; }; 851DEBFE4286CC4586850D01A4791BC4 /* Pods-Vendoo-VendooTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooTests-frameworks.sh"; sourceTree = ""; }; - 864DABD30F3F33A39046A68A238FF93B /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; - 868DCF6FDE1015433F1DDF2E38D64C1E /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = ""; }; - 86A2836FC6242D140DE7679038EA30E7 /* LocksmithAccessibleOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithAccessibleOption.swift; path = Source/LocksmithAccessibleOption.swift; sourceTree = ""; }; - 86C571A7C6CCB47DE0E45FFB6EBAFDAE /* Settings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Settings.swift; path = Pod/Classes/Model/Settings.swift; sourceTree = ""; }; - 878672475429BDB481207467B7AAE1A6 /* AlbumTitleView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = AlbumTitleView.xib; path = Pod/Assets/AlbumTitleView.xib; sourceTree = ""; }; - 87DAE8DD5362B98E2BC36A88BA93AEEA /* FBSDKGraphRequestDataAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestDataAttachment.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h; sourceTree = ""; }; - 8863DA4F57229E96C23A8B1C60634F18 /* OAuthSwiftMultipartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftMultipartData.swift; path = OAuthSwift/OAuthSwiftMultipartData.swift; sourceTree = ""; }; - 886D7D03EBAC732A6A21ABD7EBCF211A /* AccountManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccountManager.swift; path = AeroGearOAuth2/AccountManager.swift; sourceTree = ""; }; - 88800517C0B4F604753E9AFF3E380BAD /* FBSDKGraphRequestConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m; sourceTree = ""; }; - 88F86ECA1EA6EDABB24AF66849570899 /* PicoXMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLElement.h; path = Pod/Core/XMLSupport/PicoXMLElement.h; sourceTree = ""; }; - 899A95C142F12D481CD55CE31B877707 /* TYMActivityIndicatorView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-prefix.pch"; sourceTree = ""; }; - 8A38272687E05C4229D23CB5DE59A4FD /* FBSDKBridgeAPIProtocolNativeV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolNativeV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m; sourceTree = ""; }; - 8A6772F2DEDFB439091E0C61DA3CEC95 /* FBSDKServerConfiguration+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfiguration+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h"; sourceTree = ""; }; - 8A72F2A0364E85BCEF535172B07A0757 /* SWRevealViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SWRevealViewController.modulemap; sourceTree = ""; }; - 8A9747642FF9076856DC777306ADCBF2 /* arrow_down@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@2x.png"; path = "Pod/Assets/arrow_down@2x.png"; sourceTree = ""; }; - 8AEE765274745516CF2663BAD619AAA2 /* Locksmith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locksmith.swift; path = Source/Locksmith.swift; sourceTree = ""; }; - 8BB8FDCE60E4FDDFB68FCF6AFB09D36A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8C2D0E6279241B28F02C33D1A4C39DF3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 85710F2EA4587DF63AB8AF807AABA0D9 /* _FBSDKLoginRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKLoginRecoveryAttempter.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.m; sourceTree = ""; }; + 86626845F9BFD19AA0B7EFB46AB4F4E0 /* Locksmith-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-umbrella.h"; sourceTree = ""; }; + 8684BE754366A1EAC01D7AD9E1755488 /* XMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = XMLWriter.m; path = Pod/XMLWriter/XMLWriter.m; sourceTree = ""; }; + 87D9C936AD457B9677299F46FBAD8020 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 891545B8A3CE2232DC8B5BA5483072CA /* FBSDKLikeControl+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeControl+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeControl+Internal.h"; sourceTree = ""; }; + 8971F9F37156B85B767F07DE25942A1C /* OpenIDClaim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpenIDClaim.swift; path = AeroGearOAuth2/OpenIDClaim.swift; sourceTree = ""; }; + 8A1448D48335AAE4B529604752B89B8A /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + 8A77BD1D2225DD7010930169495194FF /* GDataXMLNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDataXMLNode.h; path = Pod/Classes/GDataXMLNode.h; sourceTree = ""; }; + 8A97B7CFD7538DF6DF552A7C2FA8A1C5 /* SOAP12Reasontext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Reasontext.m; path = Pod/SOAP/SOAP12/SOAP12Reasontext.m; sourceTree = ""; }; + 8A9DF7A43BC74A48C809AF250ADD3254 /* SOAP12Faultcode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Faultcode.h; path = Pod/SOAP/SOAP12/SOAP12Faultcode.h; sourceTree = ""; }; + 8B664650CF811898A7E47EB1E21DED05 /* FBSDKAppEventsState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsState.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.m; sourceTree = ""; }; + 8B7E8B30154CF1205169F8B954F620EF /* FBSDKShareLinkContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareLinkContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.h; sourceTree = ""; }; + 8C0C067D3F96CB7516A0FED4ABE3F6D2 /* FBSDKAccessTokenCacheV3.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.m; sourceTree = ""; }; 8C7124C17B0E1F3CD45549F473D588E0 /* Pods-Vendoo-VendooUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooUITests.release.xcconfig"; sourceTree = ""; }; - 8CB0342EBAA4FFC79E61FB37A28AE1B0 /* FBSDKGraphRequestPiggybackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestPiggybackManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m; sourceTree = ""; }; - 8CEAF64433FE0B8BF0E4044AB798F808 /* FirebaseDatabase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDatabase.framework; path = Frameworks/FirebaseDatabase.framework; sourceTree = ""; }; - 8D55AAF03A70BC4FAA313B2B6542B17C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8DAB4E6850F562A49891BD2F721134D0 /* FBSDKGameRequestContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.m; sourceTree = ""; }; - 8E1044C75CB962E20676E677131B7087 /* FBSDKSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSettings.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m; sourceTree = ""; }; - 8E41D020269E4E75B44C7D9C75652F71 /* BFMeasurementEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent.h; path = Bolts/iOS/BFMeasurementEvent.h; sourceTree = ""; }; - 8ECC5535112943F64CCB311287110ADB /* SOAP11Header.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Header.m; path = Pod/SOAP/SOAP11/SOAP11Header.m; sourceTree = ""; }; - 8F259A10A758FB0A23ADF86E84EC2856 /* OAuthSwiftHTTPRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftHTTPRequest.swift; path = OAuthSwift/OAuthSwiftHTTPRequest.swift; sourceTree = ""; }; + 8C97E09214D28B9BAF3E58F4F6213331 /* BSImagePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSImagePicker.xcconfig; sourceTree = ""; }; + 8CABEA739FE0AE210EFF74FA03EC0792 /* FBSDKAppEventsStateManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsStateManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.m; sourceTree = ""; }; + 8CBCD7285180AA45678D34B43304FC68 /* GoogleNetworkingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleNetworkingUtilities.framework; path = Frameworks/GoogleNetworkingUtilities.framework; sourceTree = ""; }; + 8D5783CD01D709D572D478BF714A9AA5 /* SOAP12Fault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Fault.m; path = Pod/SOAP/SOAP12/SOAP12Fault.m; sourceTree = ""; }; + 8DA72F1F50853417E570AE73C82F23DA /* PicoBoolConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoBoolConverter.m; path = Pod/Core/Converter/PicoBoolConverter.m; sourceTree = ""; }; + 8DCECD85DA19D09B055B6CD7D8E35576 /* add_photo.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = add_photo.png; path = Pod/Assets/add_photo.png; sourceTree = ""; }; + 8E4FD839F822DC10E214ECDB29D8728A /* FBSDKLikeActionControllerCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionControllerCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.h; sourceTree = ""; }; + 8E656711F617BB7DBCD7C70BDFEC8A85 /* FBSDKLoginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManager.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m; sourceTree = ""; }; + 8E8AD74661343DEB3D6E25E4B6B39FD0 /* BFCancellationTokenSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenSource.h; path = Bolts/Common/BFCancellationTokenSource.h; sourceTree = ""; }; + 8EB238066DCCE7713E1B30B8DAB5B9FA /* FBSDKLikeButtonPopWAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButtonPopWAV.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.h; sourceTree = ""; }; + 8EC593BF6CC7AAD5D815612BE37B2D6D /* PicoSOAPClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPClient.m; path = Pod/WebService/PicoSOAPClient.m; sourceTree = ""; }; + 8EC5DA418AF6E726D934E346D01837AD /* FBSDKAppGroupJoinDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupJoinDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.m; sourceTree = ""; }; + 8EF31BE827F639B0B551DEEBCC1D8C36 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + 8F441FA0CFED6EBB0705B175EA032F31 /* FBSDKShareDialogMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialogMode.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.m; sourceTree = ""; }; 8F4B77E1672A1DC2211428EFE20BA4A1 /* Pods-Vendoo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo.release.xcconfig"; sourceTree = ""; }; - 8FA186481586667CF25E85D337A85871 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; - 9030292F16ADD1982577B2FDD78186B9 /* FBSDKGraphRequestBody.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestBody.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h; sourceTree = ""; }; - 90589F272B98647EC0E23AFCCA91E6B8 /* FBSDKAccessTokenCacheV3_21.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_21.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.m; sourceTree = ""; }; - 9116DB6971CA6E1FF43A462B21D1B7A3 /* FBSDKAppEventsState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsState.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.h; sourceTree = ""; }; - 911E65118A7D0BF59B6B87A72C15A8D5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 91BAD915B94B6D087A68C7166E45C7FD /* FBSDKWebDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h; sourceTree = ""; }; - 91C12F6034F46AAC8A4681C7FF33414B /* PicoConvertable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConvertable.h; path = Pod/Core/Converter/PicoConvertable.h; sourceTree = ""; }; - 921ABC778785955368CEA89269359BE6 /* OAuthSwiftURLHandlerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftURLHandlerType.swift; path = OAuthSwift/OAuthSwiftURLHandlerType.swift; sourceTree = ""; }; - 92259F25DCE2BF1611B75E4F4840AB5D /* BSImagePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSImagePicker-dummy.m"; sourceTree = ""; }; - 92C59EBDF18FC2BF05CB5407C4A0E77D /* FBSDKMonotonicTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMonotonicTime.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m; sourceTree = ""; }; + 8FBC6CF60E2642DC57BB0CB06C13892A /* Upload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Upload.swift; path = Source/Upload.swift; sourceTree = ""; }; + 8FCFF7DE41501C360BAE4EF1FD7E676D /* FBSDKGraphRequestConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m; sourceTree = ""; }; + 901C3C1290A71FFB9A40E7898DB97A6C /* FBSDKShareKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKShareKit.xcconfig; sourceTree = ""; }; + 9026ECC5561318C4AE3385041716DF06 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + 9034582F1E5055076AD18B3B73A91B3F /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = PhotoCell.xib; path = Pod/Assets/PhotoCell.xib; sourceTree = ""; }; + 90B83EE42D6C8ED73790BAB11C825457 /* FBSDKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKInternalUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h; sourceTree = ""; }; + 91669085EDED3715E0D5F6125CAF8A15 /* FBSDKWebDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialog.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m; sourceTree = ""; }; + 9190E4A2144304CA16736182E069C70E /* PhotoCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCollectionViewDataSource.swift; path = Pod/Classes/Model/PhotoCollectionViewDataSource.swift; sourceTree = ""; }; + 92A43D550109E09F95DD446D60D99C10 /* PicoCacheEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoCacheEntry.h; path = Pod/Core/Cache/PicoCacheEntry.h; sourceTree = ""; }; + 9320BD712B8706C4EC8799699AC29632 /* FBSDKCloseIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCloseIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m; sourceTree = ""; }; + 933142069DFEC15DB540DA18EB6426A0 /* SOAP12Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Header.h; path = Pod/SOAP/SOAP12/SOAP12Header.h; sourceTree = ""; }; 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 93CB1CDBD0B28BB95D1442933494F779 /* FBSDKLoginUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginUtility.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.h; sourceTree = ""; }; - 93DE6005FDBC23FF2787B3E3FF80C8EA /* FBSDKShareUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareUtility.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.h; sourceTree = ""; }; - 943A6529529ECC1F684DA2A4FEB226B9 /* SOAP12Header.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Header.m; path = Pod/SOAP/SOAP12/SOAP12Header.m; sourceTree = ""; }; - 94492FDA360876E5CDA95B99988E2B94 /* FBSDKLoginKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginKit.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h; sourceTree = ""; }; - 962CFAA54B4E9B6B2FAF786E86978FA7 /* UIViewController+BSImagePicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+BSImagePicker.swift"; path = "Pod/Classes/Extension/UIViewController+BSImagePicker.swift"; sourceTree = ""; }; - 97397E57104D5D6DEC9FE2ECE449F708 /* FBSDKApplicationDelegate+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKApplicationDelegate+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h"; sourceTree = ""; }; - 975515A6E522EEF8B1D5CEC7BCC5679B /* FBSDKButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKButton.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m; sourceTree = ""; }; - 976B4D03A9321B412230E9EF4529F3F8 /* FBSDKLoginConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginConstants.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h; sourceTree = ""; }; - 978A4B1D5DD8E6E69DF6BD58923D66BB /* FBSDKURLConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.m; sourceTree = ""; }; + 94166A645490985426F053FBD0EB0F0F /* FBSDKShareDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.h; sourceTree = ""; }; + 94D9D3472083D8245A77D63467B9792F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 95898E7B47FB25FF6ED156CCAFD07456 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; + 95B225CE142617A39390D406EC015622 /* Settings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Settings.swift; path = Pod/Classes/Model/Settings.swift; sourceTree = ""; }; + 95F713A97F80C87CB1775F88C248120D /* SOAP12Faultcode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Faultcode.m; path = Pod/SOAP/SOAP12/SOAP12Faultcode.m; sourceTree = ""; }; + 96041F19C0A9AAC29547D7CDAD4B6027 /* BFAppLinkReturnToRefererController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererController.m; path = Bolts/iOS/BFAppLinkReturnToRefererController.m; sourceTree = ""; }; + 96256A10B1A5A6BC4A03A29715BCDF2B /* FBSDKShareAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareAPI.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.h; sourceTree = ""; }; + 96397070BF268DF785F1A9FB6DAAAF96 /* Alamofire-SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-umbrella.h"; sourceTree = ""; }; + 96B851599575E2E0F9CD816FCED76611 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + 96CC1650BF4FB3366E452A5366A50EC6 /* FBSDKSharePhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhoto.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.h; sourceTree = ""; }; 97B4A4D306EEEA7C0295BDE0FCAE7142 /* FBSDKLoginKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKLoginKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 97ECE805E43DC2A61EB23ABF06EB1EA6 /* FBSDKSharingContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingContent.h; sourceTree = ""; }; - 986183AA529E912B1C2EC48417B8A8B1 /* PicoBindingSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBindingSchema.h; path = Pod/Core/Schema/PicoBindingSchema.h; sourceTree = ""; }; - 98DBA61E57524B271DACDBF349DC5DB6 /* FBSDKURLConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.h; sourceTree = ""; }; - 98E829CCA52F80AB06FB40F9BB42D357 /* OrderedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OrderedDictionary.m; path = Pod/OrderedDictionary/OrderedDictionary.m; sourceTree = ""; }; - 991BCEC0B65FED6B7FD2C418B7F2462E /* StringResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringResponseSerializer.swift; path = AeroGearHttp/StringResponseSerializer.swift; sourceTree = ""; }; - 998D15982DC46B745B0595086744C788 /* FBSDKUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h; sourceTree = ""; }; - 9A971778971AA4D5CF1381782196B511 /* Alamofire-SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-umbrella.h"; sourceTree = ""; }; - 9B23270B90154C8717C59ED97E384A6D /* Dictionary+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Dictionary+OAuthSwift.swift"; path = "OAuthSwift/Dictionary+OAuthSwift.swift"; sourceTree = ""; }; + 985347AA4358FE406E7AE4CCC22A12C1 /* BSGridCollectionViewLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSGridCollectionViewLayout-dummy.m"; sourceTree = ""; }; + 98B5EABB13CD2DD29B6C5BAF939FACCD /* PicoXMLClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLClient.h; path = Pod/WebService/PicoXMLClient.h; sourceTree = ""; }; + 98DFED7E7AB0EA443A3B509A9E78ED4E /* Bolts.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bolts.xcconfig; sourceTree = ""; }; + 992577582CDA1F836F3DE4A99AA4B357 /* FBSDKGameRequestFrictionlessRecipientCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestFrictionlessRecipientCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.m; sourceTree = ""; }; + 99360848EB61B858946726FEBFF40D79 /* SOAP12Header.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Header.m; path = Pod/SOAP/SOAP12/SOAP12Header.m; sourceTree = ""; }; + 99C8F74DF0DFBD8B226B4F6E48960871 /* FBSDKGameRequestContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.h; sourceTree = ""; }; + 9A1AA8C24BE2B88B96B70AD3C912F4E1 /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = ""; }; + 9A1F991094F696B84A482E0D877166D8 /* FBSDKShareLinkContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareLinkContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.m; sourceTree = ""; }; + 9A4641E3199B72C05B4D415AAFE43ABB /* FBSDKLoginUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginUtility.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.m; sourceTree = ""; }; + 9B262302BC70CCCE70E413574FCB85D6 /* BFCancellationTokenSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenSource.m; path = Bolts/Common/BFCancellationTokenSource.m; sourceTree = ""; }; 9B2D1E1EF672E5EE33B5D29EE3A0B867 /* Pods-Vendoo-VendooTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-VendooTests-acknowledgements.plist"; sourceTree = ""; }; - 9B3CA22AEC305112AA84ABC1273EE1DE /* CameraCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = CameraCell.xib; path = Pod/Assets/CameraCell.xib; sourceTree = ""; }; + 9B7389C2E951B60B7DC2FC736BCE2CA4 /* FBSDKShareOpenGraphAction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphAction.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.h; sourceTree = ""; }; + 9B7A1572F19175303D904A980B89E8B6 /* HttpRequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpRequestSerializer.swift; path = AeroGearHttp/HttpRequestSerializer.swift; sourceTree = ""; }; + 9BACA8E248ADA1A39F0C3E10FC7E8880 /* BFURL_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL_Internal.h; path = Bolts/iOS/Internal/BFURL_Internal.h; sourceTree = ""; }; 9BAE61FD5950C3821410D0B7B20BC95F /* Pods-Vendoo-VendooUITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooUITests-frameworks.sh"; sourceTree = ""; }; - 9CEC32AA1EFCCD3D9FE925C92ADA221E /* FBSDKShareOpenGraphValueContainer+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareOpenGraphValueContainer+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareOpenGraphValueContainer+Internal.h"; sourceTree = ""; }; - 9CEFAD237F62111CE519B3B3D8CEB628 /* FBSDKContainerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKContainerViewController.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h; sourceTree = ""; }; - 9DF40AE913CA0B12932E513EA49D973D /* FBSDKError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKError.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h; sourceTree = ""; }; - 9E37232EA795BD54902F9DA507144E03 /* FBSDKAppEvents+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKAppEvents+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEvents+Internal.h"; sourceTree = ""; }; - 9EB313A7713C337756FD509E928ECD8F /* NSURL+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURL+OAuthSwift.swift"; path = "OAuthSwift/NSURL+OAuthSwift.swift"; sourceTree = ""; }; - 9EB3411A4897BE31E6C94EE384B01CB4 /* FBSDKAppInviteContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.m; sourceTree = ""; }; - 9F027A34F37FC5B1E04DA0CDAEEA3F90 /* FBSDKLoginManagerLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLogger.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.h; sourceTree = ""; }; - 9F0C1767521D7661349467F04D1AE8BB /* OrderedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OrderedDictionary.h; path = Pod/OrderedDictionary/OrderedDictionary.h; sourceTree = ""; }; - 9F47766C8E83F00B0791A0EDA791260D /* FirebaseStorage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseStorage.framework; path = Frameworks/FirebaseStorage.framework; sourceTree = ""; }; - A10466265173AB31436F0B7210B31F86 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = ""; }; - A1422D5F425FF8918E84920784D3551D /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = ""; }; - A15B02EF19E187B02A55F3C1ECAD08BF /* FBSDKTimeSpentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTimeSpentData.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.h; sourceTree = ""; }; - A185AC5E050F21355385EA759FE5EEF1 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = ""; }; - A1B9210099E8B96F329A0B4B62A8832F /* BFAppLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLink.m; path = Bolts/iOS/BFAppLink.m; sourceTree = ""; }; - A22771953D292A59A20DAD8FF70F8F64 /* DateUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateUtils.swift; path = AeroGearOAuth2/DateUtils.swift; sourceTree = ""; }; - A280A2681340B1F86B5264F7B4E8889B /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftyJSON.modulemap; sourceTree = ""; }; - A3523A664363BAA156F31B974381BCEE /* FBSDKLoginKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-prefix.pch"; sourceTree = ""; }; - A43CAD01E6E600EA142DEA4770099EA9 /* FBSDKTestUsersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTestUsersManager.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m; sourceTree = ""; }; - A43EB3A8DCD0A4C27452C8900575B96D /* FBSDKSharePhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhoto.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.m; sourceTree = ""; }; - A4AE7EFCD4DFD967F80F5E666FCB9282 /* BSGridCollectionViewLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSGridCollectionViewLayout-dummy.m"; sourceTree = ""; }; - A5631680EF3178C439DDE980A1EE3898 /* FBSDKShareLinkContent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareLinkContent+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareLinkContent+Internal.h"; sourceTree = ""; }; - A5650BEC57516F5DCA7170EC7EF29DDA /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Alamofire.modulemap; sourceTree = ""; }; - A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = ""; }; - A5C54E6B310A8A6D5F17E487F4FD4E90 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - A65175DAA7EE302823F34D9CE4AE69A8 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstanceID.framework; path = Frameworks/frameworks/FirebaseInstanceID.framework; sourceTree = ""; }; - A70771279652CFA5CE255D71FEEF81F8 /* MultiPartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiPartData.swift; path = AeroGearHttp/MultiPartData.swift; sourceTree = ""; }; - A7535F846CF37530222EBC3F982229D3 /* Albums.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Albums.storyboard; path = Pod/Assets/Albums.storyboard; sourceTree = ""; }; - A7D89B9EE45612459A887A379DB0C6C2 /* FBSDKLoginCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginCompletion.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.m; sourceTree = ""; }; - A9142058C7DCDCDF7FDA0BE52E8088C1 /* AlbumTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleView.swift; path = Pod/Classes/View/AlbumTitleView.swift; sourceTree = ""; }; - A95B66EEBACD15151751D10533D6728B /* FBSDKShareVideoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.m; sourceTree = ""; }; - A9E02F55BA8A59296583E6985EDA7384 /* FBSDKProfilePictureView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfilePictureView.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h; sourceTree = ""; }; + 9C2EEDCE662E55172F3C1864B53C7174 /* FBSDKAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkResolver.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.m; sourceTree = ""; }; + 9C61F474B338CF7C1BB19CBE19535D81 /* PicoStringConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoStringConverter.m; path = Pod/Core/Converter/PicoStringConverter.m; sourceTree = ""; }; + 9D6992FC69DF59B52E07277E48745B26 /* arrow_down@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@2x.png"; path = "Pod/Assets/arrow_down@2x.png"; sourceTree = ""; }; + 9DA748AD3826125B2309C0E846ECDC37 /* BFMeasurementEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent.h; path = Bolts/iOS/BFMeasurementEvent.h; sourceTree = ""; }; + 9E1070EB6FC498D7608DE0773C1DC977 /* UIImageViewModeScaleAspect.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIImageViewModeScaleAspect.xcconfig; sourceTree = ""; }; + 9E4B8CBC5FAB360816FCBC9A92CAF25E /* _FBSDKTemporaryErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKTemporaryErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m; sourceTree = ""; }; + 9E96EE9608779D338859C3849A7E3CCE /* FBSDKWebDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h; sourceTree = ""; }; + 9EA513C8771FA4D3227AC42B9A417A25 /* GridCollectionViewLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GridCollectionViewLayout.swift; path = Pod/Classes/GridCollectionViewLayout.swift; sourceTree = ""; }; + 9F07E6952EB0163416EFF3FEFDAE2D4D /* SOAP11Fault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Fault.h; path = Pod/SOAP/SOAP11/SOAP11Fault.h; sourceTree = ""; }; + 9FFD4AB8527F87C2209F50D058AE1757 /* FBSDKGraphRequestBody.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestBody.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m; sourceTree = ""; }; + A00DDB78E7FB0BDABD5CFB2757B8752D /* FBSDKContainerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKContainerViewController.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h; sourceTree = ""; }; + A083A10B54D386144A719D8A962051FB /* SOAP12FaultcodeEnum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12FaultcodeEnum.h; path = Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h; sourceTree = ""; }; + A0F1D78FC46F846D22935DDB8F395D48 /* BFAppLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink.h; path = Bolts/iOS/BFAppLink.h; sourceTree = ""; }; + A1A5E55C7F7405A4E9F84DCDEED291E2 /* FBSDKShareKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-prefix.pch"; sourceTree = ""; }; + A1D80FADBE30DE510D5C42F23A60FD71 /* BFMeasurementEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFMeasurementEvent.m; path = Bolts/iOS/BFMeasurementEvent.m; sourceTree = ""; }; + A2080769C06178AC2DCC53D131687886 /* PicoKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = PicoKit.modulemap; sourceTree = ""; }; + A24055E115FEA2D7C81055FDB1E885FE /* FBSDKCheckmarkIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCheckmarkIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.h; sourceTree = ""; }; + A2CC2E8F698E17DAC27CBD3175480828 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; + A4387D3414EB8B0BF8D4C38C55C5A208 /* PhotosViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotosViewController.swift; path = Pod/Classes/Controller/PhotosViewController.swift; sourceTree = ""; }; + A4975C68F1DDF7F50A147C3F596C9E6F /* BSGridCollectionViewLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSGridCollectionViewLayout.modulemap; sourceTree = ""; }; + A5010F97FCAEDC0EE4A431AF89DD84E4 /* FBSDKLoginKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-prefix.pch"; sourceTree = ""; }; + A54F4EC5B23C73A9818BD80F36A19287 /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLConnectionOperation.m; path = AFNetworking/AFURLConnectionOperation.m; sourceTree = ""; }; + A59BEDA24AE7C8E45214B408A39382A2 /* FBSDKCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h; sourceTree = ""; }; + A6A7313EE0477F6F6B8E4BD936890B10 /* FBSDKSharing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharing.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharing.h; sourceTree = ""; }; + A747347B4CD12E772F84D4E24B9AE0AE /* PicoClassSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoClassSchema.h; path = Pod/Core/Schema/PicoClassSchema.h; sourceTree = ""; }; + A759883766E35704F1912EC0E783DEEE /* AeroGearOAuth2.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AeroGearOAuth2.modulemap; sourceTree = ""; }; + A7661C4DEE30BB3A478F82FAA1857BFF /* BSImagePicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSImagePicker.modulemap; sourceTree = ""; }; + A7786E8F84AAC0ED9A5F0943B3791069 /* FBSDKAccessTokenCacheV3_21.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_21.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.h; sourceTree = ""; }; + A7E06CF563BEA4569F545734CB95BCED /* FBSDKProfilePictureView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfilePictureView.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h; sourceTree = ""; }; + A818209969772B5723B73894950CC419 /* FBSDKLikeBoxBorderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxBorderView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.m; sourceTree = ""; }; + A857C033FE289AC83036EABDD7238C8B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + A89AC216A27F8EE04857357E35520D6B /* SWRevealViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SWRevealViewController.modulemap; sourceTree = ""; }; + A901F83EBEAF145244494EF7D6CB240A /* RequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestSerializer.swift; path = AeroGearHttp/RequestSerializer.swift; sourceTree = ""; }; + A942D1B15C6CBC802EBDF434543CDDD9 /* AlbumCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumCell.swift; path = Pod/Classes/View/AlbumCell.swift; sourceTree = ""; }; + A9BA391E5FB61A88FB165FB3C5091404 /* BSGridCollectionViewLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-prefix.pch"; sourceTree = ""; }; + A9DD1D17658DC5A6D73CD0E88F5D22CA /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; A9EB92AC1D944731F800A2630030A9DA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - AA19B9FCEAB5C854FF3C8FDF93BA2343 /* FBSDKAppInviteDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.h; sourceTree = ""; }; - AABACEDD73398DA40B1435947C6ABC59 /* JsonResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonResponseSerializer.swift; path = AeroGearHttp/JsonResponseSerializer.swift; sourceTree = ""; }; - AAE788501ADB377A8157DE39AFD5A8B5 /* FBSDKTriStateBOOL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTriStateBOOL.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h; sourceTree = ""; }; + AA43C3D10F97C543F17F070A89A48AD9 /* PicoNumberConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoNumberConverter.h; path = Pod/Core/Converter/PicoNumberConverter.h; sourceTree = ""; }; + AAC80B8D2F458493B88A3DE271156080 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + AAF07E693A6AF15C0FFA931C466133C6 /* OAuthSwiftCredential.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftCredential.swift; path = OAuthSwift/OAuthSwiftCredential.swift; sourceTree = ""; }; + AAFDFDDE872EA0BB05E999E32C04383A /* FBSDKShareAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareAPI.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m; sourceTree = ""; }; AB0620F3D4C46CD8189B8495F8F05288 /* TYMActivityIndicatorView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TYMActivityIndicatorView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - ABE9EB19902AD4B0590EC1442B76D124 /* GoogleSymbolUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleSymbolUtilities.framework; path = Frameworks/GoogleSymbolUtilities.framework; sourceTree = ""; }; - AC85F823B6A43EA175D2E6FAF7318FF4 /* FBSDKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMacros.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMacros.h; sourceTree = ""; }; - ACF40FC7D507D88B3E42184744763A9D /* String+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+OAuthSwift.swift"; path = "OAuthSwift/String+OAuthSwift.swift"; sourceTree = ""; }; - AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "GDataXML-HTML.xcconfig"; sourceTree = ""; }; - AD7F5C2E34CDB1EC74E0074099A8FF35 /* UIButton+NoAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+NoAnimation.swift"; path = "Pod/Classes/Extension/UIButton+NoAnimation.swift"; sourceTree = ""; }; - AE174E4E8CAD8215E3889AD1FDF89D60 /* FBSDKGraphRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.h; sourceTree = ""; }; - AE1DA495E928D690201F9215A2A38DDB /* Alamofire-SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Alamofire-SwiftyJSON.modulemap"; sourceTree = ""; }; - AE1EEE58FCE4838280DE4790FDDCC978 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; - AEEA0794FACCC4E189ED617A88D17555 /* PicoXMLClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLClient.h; path = Pod/WebService/PicoXMLClient.h; sourceTree = ""; }; - AEECAD598F614CB0F93432ADB80E8005 /* UIImageViewModeScaleAspect-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-umbrella.h"; sourceTree = ""; }; - AF82297E8079D5C3248A0A2E6836E27C /* PicoKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PicoKit-umbrella.h"; sourceTree = ""; }; - AF824C365242B0C20945253374774C1F /* FBSDKUIUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUIUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h; sourceTree = ""; }; - B10D7016FB6C94ABFB9F51BC7762EFC9 /* PicoClassSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoClassSchema.h; path = Pod/Core/Schema/PicoClassSchema.h; sourceTree = ""; }; - B1101ABA749E243E9DAAC2C7D8FECBBA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - B11102A8441AC1AA0813A59FC1535D98 /* BFExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFExecutor.m; path = Bolts/Common/BFExecutor.m; sourceTree = ""; }; - B14E14A70D93E17D007755A845A6F035 /* _FBSDKLoginRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKLoginRecoveryAttempter.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.m; sourceTree = ""; }; - B15A73D687F9E0EB14350C64DA7534F3 /* SOAP12Faultreason.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Faultreason.m; path = Pod/SOAP/SOAP12/SOAP12Faultreason.m; sourceTree = ""; }; - B1D4D60E118BCEA00D0A4FEB5BAEC77F /* FBSDKLikeBoxBorderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxBorderView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.m; sourceTree = ""; }; - B1FC4DD456599D262758B5E9C8B2DC0B /* FBSDKShareMediaContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareMediaContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.h; sourceTree = ""; }; - B2360067ED951454DC182114DED0A114 /* PicoStringConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoStringConverter.h; path = Pod/Core/Converter/PicoStringConverter.h; sourceTree = ""; }; - B27C96616209DB1E8C988C7A289AFC29 /* FBSDKLoginManagerLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLogger.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.m; sourceTree = ""; }; - B2E2FF3863A99E97ACD3D94F345939F3 /* PicoXMLReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLReader.m; path = Pod/Core/PicoXMLReader.m; sourceTree = ""; }; + AB48598B489DA1DEA9F0A9DE6428E970 /* FBSDKShareError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareError.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.m; sourceTree = ""; }; + ABD2BED3EBA211B25AD786E840D5A616 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + ABF9CCA29758F5A351EA141EA10084A4 /* FBSDKShareOpenGraphValueContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphValueContainer.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h; sourceTree = ""; }; + ADB0920F0C6F8F66D375388494BEE0CB /* FBSDKMessageDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessageDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.m; sourceTree = ""; }; + ADC68F3EB4B5F25DA03F1F7A6E835F72 /* Bolts.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Bolts.m; path = Bolts/Common/Bolts.m; sourceTree = ""; }; + AE2B19C0BF6EE7938D25D4102333578A /* GDataXML-HTML.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "GDataXML-HTML.xcconfig"; sourceTree = ""; }; + AE328A3937F90B7731391105CCA47802 /* AeroGearHttp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearHttp-prefix.pch"; sourceTree = ""; }; + AE953CCFE9328E35F6ABC8000A3F5A27 /* FBSDKLikeActionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionController.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.h; sourceTree = ""; }; + AEAE931D349272ECB605283D3BD15A6C /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Source/Error.swift; sourceTree = ""; }; + AEE9CE2141D4BBD638AA3319A06387C6 /* FBSDKCoreKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKCoreKit.modulemap; sourceTree = ""; }; + AF4B4A571530C5B386D44E09F6F2BC3E /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; + B05075BA2AE0B556A0070511C9AD8B6F /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; + B087091BEB52E26D24E7CCA32EADB036 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = ""; }; + B144FAF591DED2315CFC6271711C290B /* FBSDKProfilePictureView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfilePictureView.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m; sourceTree = ""; }; + B19A858CB6E7BF06F16102CE64336889 /* JsonRequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonRequestSerializer.swift; path = AeroGearHttp/JsonRequestSerializer.swift; sourceTree = ""; }; + B1CD443F0CC0AAB2FC8F2E55C133F255 /* FBSDKBoltsMeasurementEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBoltsMeasurementEventListener.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.h; sourceTree = ""; }; + B2B186DC238B4C67B057D99BDBFD6ABE /* FBSDKUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m; sourceTree = ""; }; + B2FA13DCA5DDC6B6D77ED17F8ED7BB59 /* OAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Module.swift; path = AeroGearOAuth2/OAuth2Module.swift; sourceTree = ""; }; + B301065F53BB17F51590DE94ADBAF719 /* FBSDKLoginKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKLoginKit-dummy.m"; sourceTree = ""; }; B317DD89809B9FB54FE54A0A42095D10 /* Pods-Vendoo-VendooUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooUITests-resources.sh"; sourceTree = ""; }; - B32366F1FB0F564EAF9203EA84A59435 /* BFMeasurementEvent_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent_Internal.h; path = Bolts/iOS/Internal/BFMeasurementEvent_Internal.h; sourceTree = ""; }; - B34B8DDB4A0AB0AE10712A6E9AD3AD98 /* FBSDKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKColor.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m; sourceTree = ""; }; - B3A88E6CEBA5538C50D867C2EA9552F5 /* FBSDKLikeActionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionController.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.m; sourceTree = ""; }; - B3C7FB15CC8A499B4E316FCF04D2E2FF /* FBSDKBridgeAPIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m; sourceTree = ""; }; - B4A0E7CCC37A109F70EFE4BD2BB09E92 /* FBSDKShareKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareKit.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareKit.h; sourceTree = ""; }; + B3E514985143085EC34A63D2163049B4 /* KeycloakOAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeycloakOAuth2Module.swift; path = AeroGearOAuth2/KeycloakOAuth2Module.swift; sourceTree = ""; }; + B3EBCD45D75CF51861CE00CA24401018 /* HMAC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HMAC.swift; path = OAuthSwift/HMAC.swift; sourceTree = ""; }; + B4329E6A285264C48A3A8A63B191226C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B4EF3503ECDB742BEC83E97C4E1A7CEE /* UIImageViewModeScaleAspect.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = UIImageViewModeScaleAspect.modulemap; sourceTree = ""; }; B5027A66F337B67B57F24D6A037785E8 /* AeroGearHttp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AeroGearHttp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B51DB1ADE6D8BE96F14089F82828C510 /* GDataXML-HTML.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "GDataXML-HTML.modulemap"; sourceTree = ""; }; - B557F414AD4CD70507913B3D559F93EC /* SOAP12Envelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Envelope.m; path = Pod/SOAP/SOAP12/SOAP12Envelope.m; sourceTree = ""; }; - B57041BF243720546E2B3BBEBAB9A548 /* FBSDKTypeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTypeUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.h; sourceTree = ""; }; - B5983DBD6749A5D349163E0E21E89AF8 /* PicoReadable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoReadable.h; path = Pod/Core/PicoReadable.h; sourceTree = ""; }; - B5A1B9E4A75F5B62A073311D80F9253E /* AeroGearOAuth2.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AeroGearOAuth2.modulemap; sourceTree = ""; }; - B5CC773751C97D5CF077570D03A9765F /* FBSDKCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h; sourceTree = ""; }; - B62A5569FC7D6F49DDF2E9EE5A048EB3 /* FBSDKDynamicFrameworkLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDynamicFrameworkLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m; sourceTree = ""; }; - B63504FA5832B525F19DF6594AC6FB9D /* FBSDKBoltsMeasurementEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBoltsMeasurementEventListener.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.h; sourceTree = ""; }; - B6CB8CE0FC24F09A6F44117F43DD0456 /* FBSDKLikeObjectType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeObjectType.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.m; sourceTree = ""; }; + B512F8DD69DB7C1EBF6CB020456E81AF /* FBSDKURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLSessionTask.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLSessionTask.m; sourceTree = ""; }; + B6CE976C4E67669F52BBCEF52C4FBC8C /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; + B700A8FD23BF35334DACAFB707549E0E /* FBSDKURLConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.h; sourceTree = ""; }; + B7865BB9A08B078AF048C1ABBCBA23E7 /* PicoKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PicoKit-umbrella.h"; sourceTree = ""; }; B7B9928637FB4C7E9C4BE6F767CB5100 /* Pods-Vendoo-VendooTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo-VendooTests.modulemap"; sourceTree = ""; }; - B80A07D9D7AFB969E72F14412BEB388B /* FBSDKBridgeAPIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h; sourceTree = ""; }; - B827D1699F32E2F4CAC5D644CFF639D1 /* NSDate+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSDate+OAuthSwift.swift"; path = "OAuthSwift/NSDate+OAuthSwift.swift"; sourceTree = ""; }; - B90E27BE66B999EC2CDAC5B19354AE2B /* FBSDKAppInviteContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.h; sourceTree = ""; }; - B94FCF221AE2FCDF46BACAC60EEAA6B7 /* SHA1.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHA1.swift; path = OAuthSwift/SHA1.swift; sourceTree = ""; }; - B9791ABFFE20ED94BF192C7531A3A38F /* Locksmith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Locksmith.h; path = Source/Locksmith.h; sourceTree = ""; }; - B9A9E24E48892C412B3EBB0DD83970EE /* FBSDKLoginManagerLoginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLoginResult.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.m; sourceTree = ""; }; - BA12066C10BAF4B75F5321914140A8CB /* OAuth2WebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2WebViewController.swift; path = AeroGearOAuth2/OAuth2WebViewController.swift; sourceTree = ""; }; - BA3F89C1AD1AD2D15A12A3B25F5C0C9F /* PicoDateConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoDateConverter.h; path = Pod/Core/Converter/PicoDateConverter.h; sourceTree = ""; }; - BA7B9A6B84F8456FE9697EFA139611D6 /* FBSDKSharePhotoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhotoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.m; sourceTree = ""; }; - BB0BA77DCD3D63BB0322E2C78E4B8CA8 /* PhotosViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotosViewController.swift; path = Pod/Classes/Controller/PhotosViewController.swift; sourceTree = ""; }; - BB69CDD045397A0C3BBD4BA9E14DC9EB /* FBSDKError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKError.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m; sourceTree = ""; }; - BB8054E3A2BF18C9FE46CAB71B66CE10 /* FBSDKAppGroupAddDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupAddDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h; sourceTree = ""; }; - BBBB1EB8362300197917511E324A727C /* AeroGearHttp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AeroGearHttp-dummy.m"; sourceTree = ""; }; - BBD5681377B692D09F16AB0C9AC0EC4F /* PicoNumberConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoNumberConverter.m; path = Pod/Core/Converter/PicoNumberConverter.m; sourceTree = ""; }; - BBEBC850596B4F6F86F529C0BCA43EDE /* FBSDKAppEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEvents.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h; sourceTree = ""; }; - BC180D6D81DC4BBFDA2050D4480C41FC /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AFNetworking.modulemap; sourceTree = ""; }; - BC243D2E1C4F2FC292C0E39E689B5F0D /* PicoBoolConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBoolConverter.h; path = Pod/Core/Converter/PicoBoolConverter.h; sourceTree = ""; }; - BC651BA0CE2DD998966FD25782EDCD2A /* FBSDKAppGroupJoinDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupJoinDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.m; sourceTree = ""; }; - BC96B2330EF98C37540EB7E74CDE2055 /* BFMeasurementEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFMeasurementEvent.m; path = Bolts/iOS/BFMeasurementEvent.m; sourceTree = ""; }; - BC9F89F276D1597E6B7DBFFD42073256 /* FBSDKSharingButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingButton.h; sourceTree = ""; }; - BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = ""; }; - BD02AC2B9FF3AEA022D757C1E6A92F8C /* OAuthSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-umbrella.h"; sourceTree = ""; }; - BD0949DB26EE5E98FA8179E03525183C /* FBSDKMaleSilhouetteIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMaleSilhouetteIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h; sourceTree = ""; }; + B7E4C2544A661BB83AE834122300425D /* BFExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFExecutor.m; path = Bolts/Common/BFExecutor.m; sourceTree = ""; }; + B8936B9D91297AD2089196C777FD7F3C /* FBSDKShareVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideo.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.m; sourceTree = ""; }; + B8C0286C2EAD805B0FF93C26544A7A7B /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + B8CBA7AA79683731F8CC494DFD1E0B15 /* BFCancellationToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationToken.m; path = Bolts/Common/BFCancellationToken.m; sourceTree = ""; }; + B8DC3995639C217520E3464C61FCACE9 /* FBSDKAppInviteContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.m; sourceTree = ""; }; + B90EFF130C0B2546D491AA3DC22E5A4F /* BFTaskCompletionSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTaskCompletionSource.m; path = Bolts/Common/BFTaskCompletionSource.m; sourceTree = ""; }; + B9683BE3D4CCFA996D25163F44A2D0BB /* FBSDKAppEventsUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.h; sourceTree = ""; }; + B9B2FF3B208D34C4209C13F5364708EE /* FBSDKShareError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareError.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.h; sourceTree = ""; }; + B9E332B79385264F8B7852737CE4938F /* FBSDKLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogger.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m; sourceTree = ""; }; + B9EE900E61F0CE55E2432E6ED0BE4B6C /* FBSDKAccessToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessToken.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h; sourceTree = ""; }; + B9F01B540FBA768CC5B1ED5E4CB082ED /* FBSDKError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKError.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m; sourceTree = ""; }; + B9FDA1A8DDB91255E08458CC4E262BFA /* FBSDKLoginUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginUtility.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.h; sourceTree = ""; }; + BA132A006301A8B6177F85F17BADF660 /* SHA1.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHA1.swift; path = OAuthSwift/SHA1.swift; sourceTree = ""; }; + BA479F4FE94277EA3120D5F7E1B990FE /* PicoXMLClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLClient.m; path = Pod/WebService/PicoXMLClient.m; sourceTree = ""; }; + BA95B470BFEEE2229F56E911C637B0D5 /* BFAppLinkTarget.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkTarget.h; path = Bolts/iOS/BFAppLinkTarget.h; sourceTree = ""; }; + BA9EF4AF477D693E529BAFADAAC98B64 /* PicoConvertable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConvertable.h; path = Pod/Core/Converter/PicoConvertable.h; sourceTree = ""; }; + BB38ED156886CB26B74967F0C4F9C319 /* add_photo@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@3x.png"; path = "Pod/Assets/add_photo@3x.png"; sourceTree = ""; }; + BB6716AE596C0F58A7D47936CFAE9736 /* FBSDKBridgeAPIProtocolWebV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV2.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h; sourceTree = ""; }; + BC85A65D48AFFCEB54A64A125C296A2D /* FBSDKShareVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideo.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.h; sourceTree = ""; }; + BCB16FF346A0151CC019D3643A9AA82F /* SOAP11Detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Detail.h; path = Pod/SOAP/SOAP11/SOAP11Detail.h; sourceTree = ""; }; + BCE3E85EF30CCAF07D846FFD32109BCF /* FBSDKAppEventsUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.m; sourceTree = ""; }; BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - BD896B3E9F6212E57F7DFA89C796A56A /* FBSDKShareConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareConstants.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.m; sourceTree = ""; }; - BD9C731E16EF98A744EA0140D9B661A9 /* FBSDKMath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMath.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m; sourceTree = ""; }; - BDC826F2E70996C9AE87B96D3211DA29 /* FBSDKURLOpening.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLOpening.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h; sourceTree = ""; }; - BDCDB4AC58638D44FA6AFD685AD3513F /* FBSDKServerConfigurationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfigurationManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h; sourceTree = ""; }; - BE89C747E695A6E4A2EA0E44966C2F7A /* AlbumsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumsViewController.swift; path = Pod/Classes/Controller/AlbumsViewController.swift; sourceTree = ""; }; - BF4ABFB3666982C4726ADDAC9255BAAE /* FBSDKGraphRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.m; sourceTree = ""; }; + BDC71964908DC3CC914637F79EA96CF9 /* FBSDKGameRequestContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.m; sourceTree = ""; }; + BDD0E71A21297C08D0DFD37986B541A1 /* FBSDKLikeButton+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeButton+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButton+Internal.h"; sourceTree = ""; }; + BDF99FCD7B75B6A58255C60FED70E704 /* GDataXML-HTML.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "GDataXML-HTML.modulemap"; sourceTree = ""; }; + BE18E5580BBB13A7DA169642350B8147 /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = AeroGearOAuth2/Config.swift; sourceTree = ""; }; + BEA0423DD01AB15986A6DD29F8F8BA32 /* PicoNumberConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoNumberConverter.m; path = Pod/Core/Converter/PicoNumberConverter.m; sourceTree = ""; }; + BEC3B1B9BBDD0062CE508687146F41C7 /* BSImagePickerSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerSettings.swift; path = Pod/Classes/Protocol/BSImagePickerSettings.swift; sourceTree = ""; }; + BF12933570F80FED0925C27876FFD910 /* MultiPartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiPartData.swift; path = AeroGearHttp/MultiPartData.swift; sourceTree = ""; }; + BF21317F4F66C9CD4DA546CAC8C7EE0A /* FBSDKLikeBoxBorderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxBorderView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.h; sourceTree = ""; }; + BF8ED72AA2B452CB59E8968B7727DFD4 /* FBSDKAppEvents+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKAppEvents+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEvents+Internal.h"; sourceTree = ""; }; BFBF5E700A405FF727B768A4BA98846D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - BFF8C76E844CB9E2F51EE0CA89497C4F /* FBSDKAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkResolver.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h; sourceTree = ""; }; - C07887C7B74DD6446A7AE9876C719B95 /* FBSDKAccessTokenCacheV3.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.m; sourceTree = ""; }; - C1118BB5F6DDA46AAAB877C937B1F35A /* PicoSOAPReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPReader.h; path = Pod/SOAP/PicoSOAPReader.h; sourceTree = ""; }; - C1656555CF10DA82E136D8067B87620E /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; - C1A5C330776B11C1F30A3F5D7CE61FFE /* FBSDKLoginKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKLoginKit.modulemap; sourceTree = ""; }; - C1ACB5EDF85279E3FD1D9AEBB80F4CEF /* FBSDKShareMediaContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareMediaContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.m; sourceTree = ""; }; - C23D125D092073492AC609DE12362557 /* PicoKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PicoKit-prefix.pch"; sourceTree = ""; }; - C2A024614035DD5EB6FBDE765EC32C7C /* FBSDKLoginKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKLoginKit-dummy.m"; sourceTree = ""; }; - C2D0820C1A666D1E9B32168829B4DBA8 /* AlamofireSwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireSwiftyJSON.swift; path = Source/AlamofireSwiftyJSON.swift; sourceTree = ""; }; - C2E92C48C304CFB5DB7E4C56850F571D /* FBSDKLikeButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.h; sourceTree = ""; }; - C30A2644F497757FCC7E6FEEC1B99F65 /* FBSDKMessengerIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessengerIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.m; sourceTree = ""; }; - C3C273A675675AFA07126712D2EA3173 /* FBSDKLikeControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeControl.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.h; sourceTree = ""; }; - C403253C46C7A568F5503C1533E1A6DD /* Http.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Http.swift; path = AeroGearHttp/Http.swift; sourceTree = ""; }; - C40DAE14029892B289A8FE01392AA863 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; - C489FB9E0E070EC28E945BF04E301177 /* FBSDKSharing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharing.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharing.h; sourceTree = ""; }; + C02F1EB2C069E2DEC3DB773E19B3525C /* OAuth1Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth1Swift.swift; path = OAuthSwift/OAuth1Swift.swift; sourceTree = ""; }; + C035D07B1CE0ED5D0B63A0B5AA350523 /* FBSDKLoginCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginCompletion.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.m; sourceTree = ""; }; + C0ADAA6DA3AA7B912E11408314681B3C /* SOAP12Detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Detail.h; path = Pod/SOAP/SOAP12/SOAP12Detail.h; sourceTree = ""; }; + C0CE684E607AFC1CFD0F514DB536B97F /* SOAP12Faultreason.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Faultreason.m; path = Pod/SOAP/SOAP12/SOAP12Faultreason.m; sourceTree = ""; }; + C0E2FE037F3897494F8F50829A3E4D90 /* TYMActivityIndicatorView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-prefix.pch"; sourceTree = ""; }; + C19BF05853131A6720FB43924BEBFF7C /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Frameworks/GoogleUtilities.framework; sourceTree = ""; }; + C1D7C9953DE734B726C69D64122D8D5F /* SWRevealViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWRevealViewController-dummy.m"; sourceTree = ""; }; + C2083636038F708756691CEEB0136D5E /* FBSDKShareKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-umbrella.h"; sourceTree = ""; }; + C2B69CFBDB9AC3E4CC67945E8D1697B5 /* FBSDKKeychainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStore.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m; sourceTree = ""; }; + C2C43B1166A56BC3F2EBB983B658C150 /* BFTask+Exceptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BFTask+Exceptions.m"; path = "Bolts/Common/BFTask+Exceptions.m"; sourceTree = ""; }; + C3470A088CFA97B38CFED5CF3BB351C2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + C3613BA3E4B68EE856BC2785609C2F23 /* SWRevealViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWRevealViewController.m; path = SWRevealViewController/SWRevealViewController.m; sourceTree = ""; }; + C37F9F0310090296790EAD37B6231B84 /* FBSDKServerConfigurationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfigurationManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m; sourceTree = ""; }; + C38A0BEE1751EDDB79D5C7C5AD96F40D /* FBSDKKeychainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStore.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h; sourceTree = ""; }; + C3A341A807134877850AD294194F9CF3 /* BFWebViewAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFWebViewAppLinkResolver.h; path = Bolts/iOS/BFWebViewAppLinkResolver.h; sourceTree = ""; }; + C3C58A199006B6266127537CAAE03D48 /* AlamofireSwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireSwiftyJSON.swift; path = Source/AlamofireSwiftyJSON.swift; sourceTree = ""; }; + C3CB20D758435A182C1BC140A9F484DA /* FBSDKButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKButton.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h; sourceTree = ""; }; C49D5E408220FD79661F21912A9E0B1B /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; - C4ECE6267F2839D6ACCA3EBEF29942E9 /* PicoDateConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoDateConverter.m; path = Pod/Core/Converter/PicoDateConverter.m; sourceTree = ""; }; - C51B5750BB15F67ED3A8ED2357279441 /* FacebookOAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacebookOAuth2Module.swift; path = AeroGearOAuth2/FacebookOAuth2Module.swift; sourceTree = ""; }; - C58103D81E9C42491AA9266AE753D199 /* FBSDKBridgeAPIProtocolNativeV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolNativeV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h; sourceTree = ""; }; - C738D0637CB939CB88A8E9B07D9B0F6E /* SOAP12Faultcode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Faultcode.h; path = Pod/SOAP/SOAP12/SOAP12Faultcode.h; sourceTree = ""; }; - C76755FC326B96C91E3B9227D2F4AF6F /* PicoCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoCache.m; path = Pod/Core/Cache/PicoCache.m; sourceTree = ""; }; - C7B1E889F5927ED22DF36A2A7140EEE7 /* PicoSOAPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPRequestOperation.h; path = Pod/WebService/PicoSOAPRequestOperation.h; sourceTree = ""; }; - C852408AFC2802B823BA4A17ADF80B1B /* FBSDKTimeSpentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTimeSpentData.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.m; sourceTree = ""; }; - C8A6D2E098F2375395A4B9BF4B9221D0 /* GDataXML-HTML-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GDataXML-HTML-dummy.m"; sourceTree = ""; }; - C8A734338301554C8CE020D17C928865 /* GoogleParsingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleParsingUtilities.framework; path = Frameworks/GoogleParsingUtilities.framework; sourceTree = ""; }; - C96B1B2AA428FF9D71E28986AD0FB079 /* FBSDKSendButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSendButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.m; sourceTree = ""; }; - C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSGridCollectionViewLayout.xcconfig; sourceTree = ""; }; - C9965D39BCC0F34498A187EE769956D9 /* BFWebViewAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFWebViewAppLinkResolver.m; path = Bolts/iOS/BFWebViewAppLinkResolver.m; sourceTree = ""; }; - C9D8FBD89835630122F2346C2E06C937 /* arrow_down@1x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@1x.png"; path = "Pod/Assets/arrow_down@1x.png"; sourceTree = ""; }; - CA18F7E3B63386B99BC27FE3891447FB /* FBSDKBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBase64.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h; sourceTree = ""; }; - CA9561940BD63CEA1F00E7E114F5705B /* FBSDKOrganicDeeplinkHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKOrganicDeeplinkHelper.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m; sourceTree = ""; }; - CAD1C7D4763119F0CC06ED45B5D6F786 /* SOAP12FaultcodeEnum.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12FaultcodeEnum.m; path = Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m; sourceTree = ""; }; - CAF4FEBFDAA5E7131CB46C2415B06035 /* JsonRequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonRequestSerializer.swift; path = AeroGearHttp/JsonRequestSerializer.swift; sourceTree = ""; }; - CB03DF2760683BF429AE919F41884E80 /* FBSDKAppLinkUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.m; sourceTree = ""; }; + C58868F6EFAF5E600300FA7D336D544D /* FBSDKLoginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManager.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h; sourceTree = ""; }; + C64AC2AF64F84E02FB32E63FE4241683 /* SOAP12Subcode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Subcode.h; path = Pod/SOAP/SOAP12/SOAP12Subcode.h; sourceTree = ""; }; + C6661A5AF83DA7D7BD40895CBE1BA7E5 /* OAuthSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-umbrella.h"; sourceTree = ""; }; + C6724F16F5795CAD19B413E097A61130 /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AFNetworking.h"; path = "UIKit+AFNetworking/UIImage+AFNetworking.h"; sourceTree = ""; }; + C6A0A86C95239E50BA9957EAFC9A0189 /* FBSDKLikeButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.h; sourceTree = ""; }; + C6B46653AB8FD4971EEE917C82A106DD /* add_photo@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@2x.png"; path = "Pod/Assets/add_photo@2x.png"; sourceTree = ""; }; + C6CC44BF3488C2EBE101350D5C0327C5 /* FBSDKLoginButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginButton.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m; sourceTree = ""; }; + C782341A3A33C6F765EA007D5D93FF17 /* BFAppLinkReturnToRefererView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererView.m; path = Bolts/iOS/BFAppLinkReturnToRefererView.m; sourceTree = ""; }; + C7F30152069443E9176951EC9D5EE8CF /* OAuthSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = OAuthSwift.modulemap; sourceTree = ""; }; + C7F9DC77084128672A7D9F4F4BB6C440 /* FBSDKBridgeAPIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h; sourceTree = ""; }; + C84640E84123682719DCE1D4DE3A88D0 /* PicoWritable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoWritable.h; path = Pod/Core/PicoWritable.h; sourceTree = ""; }; + C8C06F5719DBF3249A009D906F77DD55 /* PicoConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConstants.m; path = Pod/Core/PicoConstants.m; sourceTree = ""; }; + C8F7A82E0513500743068E16ADF768CB /* FBSDKShareKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKShareKit.modulemap; sourceTree = ""; }; + C8FEDC39E5CBF30ABCC802286452401F /* TYMActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TYMActivityIndicatorView.h; path = TYMActivityIndicatorView/TYMActivityIndicatorView.h; sourceTree = ""; }; + C9869875E5404D178C15287F1BD5F1A2 /* FBSDKURLConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.m; sourceTree = ""; }; + C9CF78AFF5B72F7F16449403AF59980D /* FBSDKApplicationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKApplicationDelegate.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m; sourceTree = ""; }; + CA5BE7C4697AB71A97FD3E275DF4B0D4 /* Bolts-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Bolts-dummy.m"; sourceTree = ""; }; + CAD9578D60357F0F29413DDFBBAF6C7E /* SOAP12SupportedEnvType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12SupportedEnvType.m; path = Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m; sourceTree = ""; }; + CADFC76B44850C7946B50E9820B70ACC /* FBSDKSharePhotoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhotoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.m; sourceTree = ""; }; + CB21D4ED4DC9E17465E14881DBC7D4F4 /* FBSDKServerConfigurationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfigurationManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h; sourceTree = ""; }; CB283AABF3CEE07C086FE8E23F363434 /* Pods_Vendoo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CB2AB1C902FDE1FE0843304C021048E7 /* PicoKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = PicoKit.modulemap; sourceTree = ""; }; - CB3AE43A409680DFB7DA272E5663295F /* SOAP11Fault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Fault.h; path = Pod/SOAP/SOAP11/SOAP11Fault.h; sourceTree = ""; }; - CBE72FEA2F43AED48946AFC19793F24B /* PicoConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConverter.h; path = Pod/Core/Converter/PicoConverter.h; sourceTree = ""; }; - CBED686AC5937A6ED7CF2977FDFCC0DF /* FBSDKShareOpenGraphContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.m; sourceTree = ""; }; - CC26E8E3D7351E9DE44685C51F98DFD0 /* FBSDKLikeBoxBorderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxBorderView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.h; sourceTree = ""; }; - CC7827DFEA640657B36BF25F407DE23F /* FBSDKAccessTokenCaching.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCaching.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h; sourceTree = ""; }; - CC8A83F328DA69E4AD4AACB2E781F811 /* BFURL_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL_Internal.h; path = Bolts/iOS/Internal/BFURL_Internal.h; sourceTree = ""; }; - CCE3A0AEEA51C049E1C8A8C2335A32D2 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; - CD33485C1C502613F59CF52A0AF56C00 /* BSImagePicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-umbrella.h"; sourceTree = ""; }; - CDB067EADA78F19BE0B2C323DAC087BA /* FBSDKBridgeAPIProtocolWebV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m; sourceTree = ""; }; - CE21D887507B6EF0FD3663F5B97CE311 /* BFAppLinkReturnToRefererView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererView.m; path = Bolts/iOS/BFAppLinkReturnToRefererView.m; sourceTree = ""; }; - CE3B4D504E1D4AEB468003967B2EBE94 /* FBSDKAudioResourceLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAudioResourceLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h; sourceTree = ""; }; + CB8EF3589DABFE29936EE3DE53D4A614 /* FBSDKLoginKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKLoginKit.xcconfig; sourceTree = ""; }; + CBB0E75D9F2DA1452798FDA1CD7FD775 /* FBSDKSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSettings.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m; sourceTree = ""; }; + CBF2C84EE33EFA3775C4EC8132EEF767 /* FBSDKSettings+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKSettings+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h"; sourceTree = ""; }; + CBF6677817A07E000D1EBAECA32952BD /* FBSDKAppLinkUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.h; sourceTree = ""; }; + CBFA5A620C46C051E6F87C8B7CFF5BF9 /* FBSDKLoginConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginConstants.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.m; sourceTree = ""; }; + CC35817CC9C155BB5FCD1B6539097E1B /* FBSDKBridgeAPIProtocolWebV2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV2.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m; sourceTree = ""; }; + CCEDCA4188B6DAC9C404C7A3AF525E01 /* BFCancellationTokenRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenRegistration.h; path = Bolts/Common/BFCancellationTokenRegistration.h; sourceTree = ""; }; + CD5FC279D566BA86BBC95DA7DCDE7E3A /* LocksmithAccessibleOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithAccessibleOption.swift; path = Source/LocksmithAccessibleOption.swift; sourceTree = ""; }; + CD70D3777B3D418D3209786B47918E43 /* PicoSOAPReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPReader.h; path = Pod/SOAP/PicoSOAPReader.h; sourceTree = ""; }; + CE0968D9085FD092BC938C5E21F64285 /* PicoSOAPReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPReader.m; path = Pod/SOAP/PicoSOAPReader.m; sourceTree = ""; }; + CE4B6983282888AEA552E71CF6E31064 /* PicoDateConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoDateConverter.m; path = Pod/Core/Converter/PicoDateConverter.m; sourceTree = ""; }; + CE5D8E8AC711AD1657B41F814CF1F82E /* FBSDKLoginConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginConstants.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h; sourceTree = ""; }; + CEC8034F2C5D296D6EE86EE685AAEEA3 /* ComposedCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComposedCollectionViewDataSource.swift; path = Pod/Classes/Model/ComposedCollectionViewDataSource.swift; sourceTree = ""; }; CED57E4B4A724E39170C9056EC8F29E6 /* Pods-Vendoo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo.modulemap"; sourceTree = ""; }; - CEE29DA5F3F709007178DB0D8ACD98ED /* add_photo.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = add_photo.png; path = Pod/Assets/add_photo.png; sourceTree = ""; }; - CEEDEAA3B1D0E7F51C42A0FF4D04155F /* FBSDKContainerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKContainerViewController.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m; sourceTree = ""; }; - D0010F5E558D2E0DD1C452C881BBAA6F /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AFNetworking.h"; path = "UIKit+AFNetworking/UIImage+AFNetworking.h"; sourceTree = ""; }; - D0386A7DC808534C0548BC11C07B7B9A /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - D0744F82A6C9E3539065BDBFB5D12A9E /* UIApplication+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+OAuthSwift.swift"; path = "OAuthSwift/UIApplication+OAuthSwift.swift"; sourceTree = ""; }; - D12D2F6E0AE57FDC45E04A168061412D /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = Analytics/Sources/Firebase.h; sourceTree = ""; }; + CF1F13EF21629FB7D6F3FEB9EC65C7BB /* FBSDKShareOpenGraphObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphObject.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.m; sourceTree = ""; }; + CF747078C75A9D322D6D54646F946BBE /* FBSDKServerConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h; sourceTree = ""; }; + D0AEA58B60BDDF19F600990C4A30640D /* FBSDKDialogConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDialogConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h; sourceTree = ""; }; + D0E24FA3C7957B4CBDFB2470C0A0AF62 /* FBSDKGameRequestDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.h; sourceTree = ""; }; + D0EBC10F2E43657830DD218CC71E6D2B /* BFWebViewAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFWebViewAppLinkResolver.m; path = Bolts/iOS/BFWebViewAppLinkResolver.m; sourceTree = ""; }; + D1B465330778E216B708731B59E7099C /* LocksmithInternetProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetProtocol.swift; path = Source/LocksmithInternetProtocol.swift; sourceTree = ""; }; + D1E41C0152BC921D4AC9B6D87D389D8D /* FBSDKOrganicDeeplinkHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKOrganicDeeplinkHelper.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m; sourceTree = ""; }; + D1F1ACA67D2E8485E0B100101C598CD3 /* FBSDKProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfile.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m; sourceTree = ""; }; + D27DCF962F745B174BD504543C4C801E /* FBSDKLikeControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeControl.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.h; sourceTree = ""; }; + D283DB6521D2F241FB53832CAAB51E9F /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; + D2A852A821BBA4837E2F24FDB715EBCA /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; D2BB4811335CB496B9C2A6AF4620DDBC /* Locksmith.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Locksmith.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D3219AEED0D229D413971C6A2DCEB389 /* FBSDKAppEventsStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsStateManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.h; sourceTree = ""; }; - D3C023CAB4F2364653FE94AE7D7989C9 /* FBSDKAppEventsStateManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsStateManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.m; sourceTree = ""; }; - D3D407F1FAF969C893C8548A561838CA /* FBSDKCoreKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-umbrella.h"; sourceTree = ""; }; + D2E71750D600AE44A9F739893F2C1C03 /* OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwift.swift; path = OAuthSwift/OAuthSwift.swift; sourceTree = ""; }; + D2FD166BBAE2AAEC3D6DD4E6AD075E58 /* Dictionary_Initializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dictionary_Initializers.swift; path = Source/Dictionary_Initializers.swift; sourceTree = ""; }; + D317FB282FBED42C9208515739CFC633 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; + D34A7B1EBB475A43499DD37B00C1BF54 /* CameraCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCollectionViewDataSource.swift; path = Pod/Classes/Model/CameraCollectionViewDataSource.swift; sourceTree = ""; }; + D39494C59ECE7D64261B42AACDCFF7DB /* FBSDKWebDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m; sourceTree = ""; }; + D3AEB23FDFCB04745EE62B3C778A990F /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; D4BD9D1803DACCD677E16D897C4986A4 /* AeroGearHttp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AeroGearHttp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TYMActivityIndicatorView.xcconfig; sourceTree = ""; }; - D5230F3C993EF53931931F6A58EBBECD /* Bolts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bolts.h; path = Bolts/Common/Bolts.h; sourceTree = ""; }; - D524E45F72B7D5706A8E8FC890847D37 /* FBSDKShareError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareError.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.m; sourceTree = ""; }; - D5DE4D754EE820BB60C454F9F10447F9 /* OAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Session.swift; path = AeroGearOAuth2/OAuth2Session.swift; sourceTree = ""; }; - D619A54243FC9B2160AA5D4B6C5CD555 /* BFAppLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink.h; path = Bolts/iOS/BFAppLink.h; sourceTree = ""; }; - D620CA6670E89627877735C51B3F6CF3 /* FBSDKLoginManagerLoginResult+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManagerLoginResult+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLoginResult+Internal.h"; sourceTree = ""; }; - D65C597C7BFEA9ACB22F9D23F518616A /* SOAP12Fault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Fault.h; path = Pod/SOAP/SOAP12/SOAP12Fault.h; sourceTree = ""; }; - D672054D42DA9801632183EF1C590B71 /* SOAP11Detail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Detail.m; path = Pod/SOAP/SOAP11/SOAP11Detail.m; sourceTree = ""; }; - D70416A9A53143F089245C8D1297E324 /* BFAppLinkReturnToRefererController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererController.m; path = Bolts/iOS/BFAppLinkReturnToRefererController.m; sourceTree = ""; }; - D7CDD094D4209E5C102D154AB6D938C4 /* SWRevealViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-umbrella.h"; sourceTree = ""; }; - D80E1C76A1D754C95364D1348D4C126D /* AlbumTableViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTableViewDataSource.swift; path = Pod/Classes/Model/AlbumTableViewDataSource.swift; sourceTree = ""; }; - D8179B84003C81BB0751EE43A1DCABA9 /* FBSDKLikeBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.h; sourceTree = ""; }; - D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bolts.xcconfig; sourceTree = ""; }; + D54AA3DDBF4BCD8608941F6A4FB71587 /* OAuth2WebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2WebViewController.swift; path = AeroGearOAuth2/OAuth2WebViewController.swift; sourceTree = ""; }; + D57EB4A2DDB414E14577E3DADD9E84D5 /* DateUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateUtils.swift; path = AeroGearOAuth2/DateUtils.swift; sourceTree = ""; }; + D589FE837D680B4E742ECD8E882A430F /* GDataXML-HTML-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GDataXML-HTML-prefix.pch"; sourceTree = ""; }; + D5A2446AA7887850C1169F52EE23F6D5 /* AlbumTitleView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = AlbumTitleView.xib; path = Pod/Assets/AlbumTitleView.xib; sourceTree = ""; }; + D5B3029BCD5B7B247B673665A938E523 /* FBSDKLikeActionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionController.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.m; sourceTree = ""; }; + D5C18B35EACEA52367E3B3591D09F71C /* FBSDKBridgeAPIRequest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKBridgeAPIRequest+Private.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h"; sourceTree = ""; }; + D62730F80C040A16E2B57DF50BCA48F6 /* SOAP12Faultreason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Faultreason.h; path = Pod/SOAP/SOAP12/SOAP12Faultreason.h; sourceTree = ""; }; + D69A7F3ED5486C969970813B24E51A4B /* FBSDKAudioResourceLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAudioResourceLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m; sourceTree = ""; }; + D6A9F7C3C878BFACD48F7A283070A478 /* FBSDKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKColor.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m; sourceTree = ""; }; + D6AE172E9ADEB0901EDD89F9D078F717 /* FBSDKBoltsMeasurementEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBoltsMeasurementEventListener.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.m; sourceTree = ""; }; + D6CE48B9F9CACF5BD4149F45C812D86A /* FBSDKGraphRequestMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestMetadata.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m; sourceTree = ""; }; + D6DE3456C423B6914189CB5A9BAE2940 /* BFAppLinkReturnToRefererView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView.h; path = Bolts/iOS/BFAppLinkReturnToRefererView.h; sourceTree = ""; }; + D812467F81B8AA497BC37E03A16E1432 /* PicoClassSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoClassSchema.m; path = Pod/Core/Schema/PicoClassSchema.m; sourceTree = ""; }; + D8934360081AC8349300F70495B28FCF /* BSImagePickerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerViewController.swift; path = Pod/Classes/Controller/BSImagePickerViewController.swift; sourceTree = ""; }; + D89781AF8258FFA5A3ED97890F4AC7FE /* AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.xcconfig; sourceTree = ""; }; + D8B856751B06BA4344E29899ADF27FCE /* TYMActivityIndicatorView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TYMActivityIndicatorView.bundle; path = TYMActivityIndicatorView/TYMActivityIndicatorView.bundle; sourceTree = ""; }; + D8E33D706F8D6D456C4698C4CB8E94BD /* Alamofire-SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Alamofire-SwiftyJSON.xcconfig"; sourceTree = ""; }; D97527C094DC8D0AE452F5F42CB83BC4 /* PicoKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PicoKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D9DD479673E8B396F89A7DAA2143A711 /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIAlertView+AFNetworking.m"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.m"; sourceTree = ""; }; - DA43B264B353C84DB380D6CF195B67D6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DA4F83C6113FDD8CDA96DA359763EB39 /* arrow_down@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@3x.png"; path = "Pod/Assets/arrow_down@3x.png"; sourceTree = ""; }; - DA75AB0F3BE8C976FD171BC3ACF4FD4D /* FBSDKLikeActionControllerCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionControllerCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.m; sourceTree = ""; }; - DA8D2F518A8BABD6E589DCC7ABAAD2D2 /* FBSDKLoginManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManager+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManager+Internal.h"; sourceTree = ""; }; - DA94C6591FD96A4B7462E306BF834C57 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Sources/FIRInstanceID.h; sourceTree = ""; }; - DAB1B89813CDD043CC410F5DFE0A6452 /* XMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = XMLWriter.m; path = Pod/XMLWriter/XMLWriter.m; sourceTree = ""; }; - DB0A045B230B8CCD0523F87D3DEF8C9F /* OAuthSwiftClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftClient.swift; path = OAuthSwift/OAuthSwiftClient.swift; sourceTree = ""; }; - DB866DB9DE8C316714FABD3690C1FB6F /* PicoBindable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBindable.h; path = Pod/Core/PicoBindable.h; sourceTree = ""; }; - DC4358A4E9F5CD0E977BA79631BAD3F3 /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperationManager.m; path = AFNetworking/AFHTTPRequestOperationManager.m; sourceTree = ""; }; - DC9BED0D6C773E3725A004F799012C45 /* FBSDKAppEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEvents.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m; sourceTree = ""; }; - DCC445491493492EC123D21A28983519 /* BSGridCollectionViewLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-prefix.pch"; sourceTree = ""; }; - DCCA5879C89062A06F6669EEC7EE9423 /* FBSDKBridgeAPICrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPICrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.h; sourceTree = ""; }; - DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSImagePicker.xcconfig; sourceTree = ""; }; - DD70A3643DC0CEFD5CBE01C0B6705477 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; - DE82249BC48423C663A690EFFF728AA0 /* ComposedCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComposedCollectionViewDataSource.swift; path = Pod/Classes/Model/ComposedCollectionViewDataSource.swift; sourceTree = ""; }; - DEA9834FAC9B8FF918BDD38196090F4B /* FBSDKLoginError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginError.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.m; sourceTree = ""; }; - DF2271DD0897F59E56F8E7966E5AC243 /* FBSDKUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m; sourceTree = ""; }; - DFB9B16A8846AA57E02117247CFAA15F /* Bolts-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Bolts-dummy.m"; sourceTree = ""; }; - DFC58BAC59B7138DCA9C331EB7AF3D72 /* FBSDKCoreKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKCoreKit.modulemap; sourceTree = ""; }; + D98A44FCC328A7E6E5DEBEAA316E434B /* OAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Session.swift; path = AeroGearOAuth2/OAuth2Session.swift; sourceTree = ""; }; + D9C69E366BEBF527B7F1AF310931A8A7 /* FBSDKShareMediaContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareMediaContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.h; sourceTree = ""; }; + D9DCFC9B97F93DCF4AE39617F7DB55A3 /* PicoDateConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoDateConverter.h; path = Pod/Core/Converter/PicoDateConverter.h; sourceTree = ""; }; + DA62BAE7BB85018E087EF3FA7C100C8C /* SOAP11Envelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Envelope.m; path = Pod/SOAP/SOAP11/SOAP11Envelope.m; sourceTree = ""; }; + DAE938BCBE6F70DC24F176D639DC1215 /* AeroGearHttp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearHttp-umbrella.h"; sourceTree = ""; }; + DB05B9060E66484352B7DBE43E2D4450 /* FBSDKApplicationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKApplicationDelegate.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h; sourceTree = ""; }; + DBB0BEA4A4B2EAFB0CCBBEF0095F471C /* PicoSOAPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPRequestOperation.h; path = Pod/WebService/PicoSOAPRequestOperation.h; sourceTree = ""; }; + DCAC93332ACD8FCCB95863696523B8F3 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; + DD3C8296D75587381A70BE5A0360EBE4 /* FBSDKSystemAccountStoreAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSystemAccountStoreAdapter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.m; sourceTree = ""; }; + DD6F86FA5BB0599052D48F1E63F5A771 /* ZoomAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomAnimator.swift; path = Pod/Classes/Controller/ZoomAnimator.swift; sourceTree = ""; }; + DDCCEF2CB8ACD90F4F5F59AF8485106E /* FBSDKProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfile.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h; sourceTree = ""; }; + DE57BDBD67A46A2F168AD0E7AAD216A9 /* FBSDKBridgeAPIProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocol.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h; sourceTree = ""; }; + DE5A2A24BA7DBBE04350D595A97CFB16 /* PicoXMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLElement.h; path = Pod/Core/XMLSupport/PicoXMLElement.h; sourceTree = ""; }; + DEB7A54EDE273540D0671EA9494F3CA3 /* PicoConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConverter.m; path = Pod/Core/Converter/PicoConverter.m; sourceTree = ""; }; + DF614CE1B00F6AED7D8B4B7FF7780A92 /* FBSDKViewImpressionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewImpressionTracker.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h; sourceTree = ""; }; + DF7BF92D087D22B6914FD55420F90DC0 /* PicoSOAPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPRequestOperation.m; path = Pod/WebService/PicoSOAPRequestOperation.m; sourceTree = ""; }; + DFC00E5D3520F42E36E3D1F3BE0E93DE /* FBSDKCoreKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKCoreKit.xcconfig; sourceTree = ""; }; + E0324A8950F94C5646FADBDA680A7235 /* XMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = XMLWriter.h; path = Pod/XMLWriter/XMLWriter.h; sourceTree = ""; }; + E08DACAAD3232CA50F03B13A386AFE56 /* BFAppLinkReturnToRefererController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererController.h; path = Bolts/iOS/BFAppLinkReturnToRefererController.h; sourceTree = ""; }; E0BC2808CF5B9E44587BBD8297655C3A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E0E604595694E7875598C8C51087F04B /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = PhotoCell.xib; path = Pod/Assets/PhotoCell.xib; sourceTree = ""; }; - E1498D3AB8502D993842832DE34046C3 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + E0FC3A9DFF5D282B919350D08CA64D28 /* FBSDKLoginCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginCompletion.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.h; sourceTree = ""; }; + E16E03402073A874C8813B023873FAC1 /* FBSDKGraphRequestPiggybackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestPiggybackManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h; sourceTree = ""; }; + E177E82668E0F94482653AB710D44420 /* FBSDKPaymentObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKPaymentObserver.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.m; sourceTree = ""; }; E178194C369B2D90EE7A9C838F1F3975 /* Pods-Vendoo-VendooTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooTests.release.xcconfig"; sourceTree = ""; }; - E185BFAA94FAB3FD3156D77FF1CDC014 /* FBSDKAppGroupContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.h; sourceTree = ""; }; - E229D8176F4CEC52ACE0B7DD090CD054 /* SOAP11Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Header.h; path = Pod/SOAP/SOAP11/SOAP11Header.h; sourceTree = ""; }; - E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AeroGearHttp.xcconfig; sourceTree = ""; }; - E27C526A9DC03AC25201A7B5842662EE /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; E2D7A400CB4341C8290E8D4301ED9DBB /* UIImageViewModeScaleAspect.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIImageViewModeScaleAspect.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E317B9D5CFF520B3690F6E5AD930138D /* FBSDKAccessTokenCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCache.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h; sourceTree = ""; }; - E32563002394581385A3D32A16C7719A /* PicoXMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLWriter.h; path = Pod/Core/PicoXMLWriter.h; sourceTree = ""; }; - E3A2D38C759F5C76D318AD4D8E4D3907 /* FBSDKMessageDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessageDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.h; sourceTree = ""; }; - E3CE70F7EC79F8127B634681942B5E63 /* ZoomAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomAnimator.swift; path = Pod/Classes/Controller/ZoomAnimator.swift; sourceTree = ""; }; + E32819276E448656CB309C7FD3657235 /* FirebaseDatabase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDatabase.framework; path = Frameworks/FirebaseDatabase.framework; sourceTree = ""; }; + E3A304153BBB0D6E6BEDD37B54B54005 /* OAuthWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthWebViewController.swift; path = OAuthSwift/OAuthWebViewController.swift; sourceTree = ""; }; + E3A98E3C19B2AD7BA05839E94694A968 /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperationManager.h; path = AFNetworking/AFHTTPRequestOperationManager.h; sourceTree = ""; }; E48063F76B420F3E35DAD13047D42C79 /* Pods-Vendoo-VendooTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-VendooTests-umbrella.h"; sourceTree = ""; }; - E49EE569473201E432EEFB06FE40EF81 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E4C5AC4A40579BDC28AF236C903221A5 /* FBSDKShareOpenGraphValueContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphValueContainer.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h; sourceTree = ""; }; + E4A27BC37602D4069AC6CDBF98BCEEF7 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + E4E9378D60B58BF3402760A161B45FEB /* PicoConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConfig.h; path = Pod/Core/PicoConfig.h; sourceTree = ""; }; + E50CA9D3CAC4277F213EB2CE740F6637 /* FBSDKGraphRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.m; sourceTree = ""; }; E52CFB5C20763A830341CDF43564E66C /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; }; - E6087AF82C717C34954BFF6BE6FD54B8 /* Locksmith-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-prefix.pch"; sourceTree = ""; }; - E64651DB95E0B15BB312F6312ACBE569 /* AeroGearHttp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearHttp-umbrella.h"; sourceTree = ""; }; + E580C8330D96978E9075A673270918C4 /* FBSDKLoginError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginError.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.h; sourceTree = ""; }; + E6235927DC181F87310675A4E49BC8D3 /* FBSDKShareButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.h; sourceTree = ""; }; + E6480232EB96F2819CB3BCC5F0F73690 /* PicoXMLReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLReader.h; path = Pod/Core/PicoXMLReader.h; sourceTree = ""; }; + E648B93ACAABAB4D3D74E457174B1977 /* OAuthSwiftClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftClient.swift; path = OAuthSwift/OAuthSwiftClient.swift; sourceTree = ""; }; E67B7295241B586BE9B4D6D6FAF28583 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PicoKit.xcconfig; sourceTree = ""; }; - E71829FF290118344E90D187DAB55969 /* FBSDKCoreKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKCoreKit+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h"; sourceTree = ""; }; - E7A090313974760BAFE6E711F781CABA /* SOAP11Fault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Fault.m; path = Pod/SOAP/SOAP11/SOAP11Fault.m; sourceTree = ""; }; - E7A35B11971B1FA23EA748323A8E8C0B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E858FA74CC061E2522FBC38DCB79D3A9 /* OAuth1Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth1Swift.swift; path = OAuthSwift/OAuth1Swift.swift; sourceTree = ""; }; - E86011139202C985DE4BDA1418B15737 /* FBSDKLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogger.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m; sourceTree = ""; }; - E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKCoreKit.xcconfig; sourceTree = ""; }; - E8EAA1D518760505308ED46344A40B55 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; - E8FDBBD68A80D214BC46B5AE53D4F76F /* UIImageViewModeScaleAspect.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = UIImageViewModeScaleAspect.modulemap; sourceTree = ""; }; - E9300385F72720F6C95944F2CBADC1F7 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; - EA9672FE60ACFA6FD39010D2AA9CF225 /* FBSDKLoginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManager.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m; sourceTree = ""; }; - EADAF8354E076C200F01AD3E52A05201 /* BFTask+Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BFTask+Exceptions.h"; path = "Bolts/Common/BFTask+Exceptions.h"; sourceTree = ""; }; - EAE080E43FE64694DEB0DE294C12D829 /* PicoConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConfig.h; path = Pod/Core/PicoConfig.h; sourceTree = ""; }; - EB342C66340F0F9CC8BC06EA44FB9716 /* FBSDKDialogConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDialogConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h; sourceTree = ""; }; - EB76ABEEC84D94281BBA33F8A707F52B /* BFCancellationTokenRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenRegistration.h; path = Bolts/Common/BFCancellationTokenRegistration.h; sourceTree = ""; }; - EBFC4268527D9F8038C26EE670CDE796 /* Alamofire-SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-prefix.pch"; sourceTree = ""; }; - EC88F0E7D91840D2776494E7DCDFEA1C /* FBSDKViewImpressionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKViewImpressionTracker.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m; sourceTree = ""; }; - EC9F13F9E8CAAACFF78326E45C40599F /* FBSDKButton+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKButton+Subclass.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h"; sourceTree = ""; }; - ED48F8029AD4431700989A7222F7E972 /* FBSDKIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h; sourceTree = ""; }; - ED6E22F1D0CC20210179A91B27BC34EC /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; - EDB6A7A2286F25B59DDAD3B2E68D208A /* Download.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Download.swift; path = Source/Download.swift; sourceTree = ""; }; - EDDEC727D8DAF0DA2BBFB591ED21B56F /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; - EDF1E12CC3EB15DB99FCE3C4F8364295 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; - EFDB9B82E6870E8F4E1F563CB761F2B4 /* FBSDKSettings+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKSettings+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h"; sourceTree = ""; }; - EFEA264F83FCD09489CBB48FEC925925 /* FBSDKAppGroupContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.m; sourceTree = ""; }; - F0E46430AB0156C611FF7A4E3D4882A8 /* SOAP12SupportedEnvType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12SupportedEnvType.h; path = Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h; sourceTree = ""; }; - F10E09F24A3B6BA2E4BD36FCBAB32383 /* SOAP12Detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Detail.h; path = Pod/SOAP/SOAP12/SOAP12Detail.h; sourceTree = ""; }; - F144E0ADE3648A5D32EFCA69C0B7234E /* PicoSOAPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPRequestOperation.m; path = Pod/WebService/PicoSOAPRequestOperation.m; sourceTree = ""; }; - F1765ACC268C5E65419329269F216130 /* _FBSDKLoginRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKLoginRecoveryAttempter.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.h; sourceTree = ""; }; - F220BFDFE04C5E44BF4CD17A497DA847 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + E75D266AF0A8C9F2146EF8DC48BE60B5 /* FBSDKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMacros.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMacros.h; sourceTree = ""; }; + E775ADF0F1DE936E779259305C249DD5 /* AeroGearHttp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AeroGearHttp.xcconfig; sourceTree = ""; }; + E7B4C0E1CFE93A43E1381CAEC314B57D /* FBSDKTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.m; sourceTree = ""; }; + E9483FCBACBE349F26CF9EBE5F468185 /* FBSDKAppEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEvents.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m; sourceTree = ""; }; + E9A416C84991F81D28A1B85EDAD0B598 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E9AE806C1661967AFF98E95273B6A735 /* FBSDKGraphRequestConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.h; sourceTree = ""; }; + E9FE75F9CE788049FC380C97CC8B5833 /* FBSDKAppEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEvents.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h; sourceTree = ""; }; + EA642DC9B6625D3FB4C77A994A5B1E51 /* GoogleInterchangeUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleInterchangeUtilities.framework; path = Frameworks/GoogleInterchangeUtilities.framework; sourceTree = ""; }; + EA754B3A028704735298B9BF19A39296 /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLConnectionOperation.h; path = AFNetworking/AFURLConnectionOperation.h; sourceTree = ""; }; + EA9A8895176C3EF88781F3D858D64B85 /* FBSDKGraphErrorRecoveryProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphErrorRecoveryProcessor.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h; sourceTree = ""; }; + EAB6B3AD923015C03A808EEBC5CF36BB /* FBSDKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKInternalUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m; sourceTree = ""; }; + EAC994DDECE13D2A7DCE3816C1D4F047 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; + EB38EA42488CDFA9A25D5C88E5EC448C /* FBSDKErrorConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h; sourceTree = ""; }; + EBDB496D61682669999C4E90ECDB9E98 /* Http.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Http.swift; path = AeroGearHttp/Http.swift; sourceTree = ""; }; + EC01DCFCC4530268DFE406D097270678 /* AeroGearOAuth2-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AeroGearOAuth2-dummy.m"; sourceTree = ""; }; + EC778C88065DFE2000487B345F672483 /* FBSDKLoginManagerLoginResult+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManagerLoginResult+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLoginResult+Internal.h"; sourceTree = ""; }; + EC78F7AE3EC6C2CBBED4A8CE414AA9FA /* TYMActivityIndicatorView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TYMActivityIndicatorView.xcconfig; sourceTree = ""; }; + ECC44ED9454A624BC95A6D8EB937B699 /* FBSDKTimeSpentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTimeSpentData.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.h; sourceTree = ""; }; + EDE840EB634CCF8D1DD6034BB7F3E5D4 /* FBSDKContainerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKContainerViewController.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m; sourceTree = ""; }; + EE473C4FBABFD1D223F9CFE1FAF757B8 /* FBSDKServerConfiguration+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfiguration+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h"; sourceTree = ""; }; + EE6BEB51F81397963E78C4D03F07E720 /* Int+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+OAuthSwift.swift"; path = "OAuthSwift/Int+OAuthSwift.swift"; sourceTree = ""; }; + EF0C32B9766C24D6965E5D6E61970D76 /* Bolts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bolts.h; path = Bolts/Common/Bolts.h; sourceTree = ""; }; + EF0D7D2619673A2CCC2447E2CDE2C676 /* FBSDKViewImpressionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKViewImpressionTracker.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m; sourceTree = ""; }; + EF32961903C9ADDD05A8E3C57EB657C4 /* NSURL+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURL+OAuthSwift.swift"; path = "OAuthSwift/NSURL+OAuthSwift.swift"; sourceTree = ""; }; + EFE6A0FF4831B59FD5BDB9929922ECBA /* AeroGearHttp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AeroGearHttp.modulemap; sourceTree = ""; }; + F034CD05E5F2CE43E7ED3AB7A41F3FA7 /* FBSDKCoreKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKCoreKit-dummy.m"; sourceTree = ""; }; + F0693A57D7A0E86E9930C46747DAA338 /* TYMActivityIndicatorView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = TYMActivityIndicatorView.modulemap; sourceTree = ""; }; + F182DC4D01A6F4D337DDE7CAA80E8879 /* FBSDKLoginError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginError.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.m; sourceTree = ""; }; + F19678FFEA615255AD53723B79938D08 /* FBSDKShareUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareUtility.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m; sourceTree = ""; }; + F1C2898D0AC0043B1CB05FD4112E74E1 /* TYMActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TYMActivityIndicatorView.m; path = TYMActivityIndicatorView/TYMActivityIndicatorView.m; sourceTree = ""; }; + F219D5C60EC65751E95EA1C8AAD34831 /* FBSDKMath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMath.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m; sourceTree = ""; }; + F2663F5AAD58F5DDB8152233991CB7D3 /* FBSDKGraphRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.h; sourceTree = ""; }; F2CDAC06F3EBFD5E85269D393C273544 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F360CE6486A747945443BA0C06AC2C99 /* Pods-Vendoo-VendooUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-VendooUITests-umbrella.h"; sourceTree = ""; }; - F3656113C4722F5334A57E106D278299 /* BFCancellationToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationToken.m; path = Bolts/Common/BFCancellationToken.m; sourceTree = ""; }; - F388A6999ED21F6E0CDA986059254761 /* LocksmithError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithError.swift; path = Source/LocksmithError.swift; sourceTree = ""; }; - F403D913349292156367832BB68EDEBA /* FBSDKAppEventsDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsDeviceInfo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.m; sourceTree = ""; }; - F53B4CC4415CE07123BF063BBB373F7C /* FBSDKCoreKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCoreKit.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h; sourceTree = ""; }; - F59560067A0BF43C1DC254FA93DF5B7F /* PicoSOAPWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPWriter.m; path = Pod/SOAP/PicoSOAPWriter.m; sourceTree = ""; }; - F5BD3504B96359BD27FEBA4D8AD4E18A /* FBSDKBridgeAPIProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocol.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h; sourceTree = ""; }; - F666F4AD6771C67E12F920EE14503EB1 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; - F6FE5C7BF10EBAD6F29B4122869155BC /* FBSDKTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h; sourceTree = ""; }; - F7337BAD9C60377C227015A11AA1188B /* GoogleNetworkingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleNetworkingUtilities.framework; path = Frameworks/GoogleNetworkingUtilities.framework; sourceTree = ""; }; - F74C14BEF6DB17CD8EF940C4A4EEAC0F /* add_photo@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@2x.png"; path = "Pod/Assets/add_photo@2x.png"; sourceTree = ""; }; - F76E54B8245E01726AF6EF16AD3827E4 /* FBSDKCheckmarkIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCheckmarkIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.m; sourceTree = ""; }; - F7C5F771D232A4C7C5491ADB514E62CB /* SOAP11Body.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Body.m; path = Pod/SOAP/SOAP11/SOAP11Body.m; sourceTree = ""; }; - F7D1135C708CFABDCEF0A3508501EA2D /* FBSDKAccessTokenCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCache.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m; sourceTree = ""; }; - F7F9001E7D084976BD80994B7BE41383 /* FBSDKShareOpenGraphObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphObject.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.m; sourceTree = ""; }; - F8AFE5EB7076EFE8F34B0E147AA970B4 /* Locksmith-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Locksmith-dummy.m"; sourceTree = ""; }; - F8DFF9AD2140B7424CF0E7B0C26DC7E9 /* BFTaskCompletionSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTaskCompletionSource.m; path = Bolts/Common/BFTaskCompletionSource.m; sourceTree = ""; }; - F9C7C0D3ADE9E5FDD958B1F54E512561 /* FBSDKAppEventsUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.h; sourceTree = ""; }; + F3842FC1C68E33505984100066E7A3DD /* FBSDKLoginButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginButton.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h; sourceTree = ""; }; + F39AA9E920379DBB3184A314F5C45AB4 /* FBSDKCheckmarkIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCheckmarkIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.m; sourceTree = ""; }; + F3A7188D7281E637DF8E97E65D90A844 /* Albums.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Albums.storyboard; path = Pod/Assets/Albums.storyboard; sourceTree = ""; }; + F42D7F297FBAD5439200429C252D066B /* PicoXMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLElement.m; path = Pod/Core/XMLSupport/PicoXMLElement.m; sourceTree = ""; }; + F458B0380628981A921747FCA64682F5 /* UIImageViewModeScaleAspect-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-prefix.pch"; sourceTree = ""; }; + F463A97412AB3E7FB671F91E1E01C3D8 /* PicoKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PicoKit.xcconfig; sourceTree = ""; }; + F490B7DC1305E9A66122A47F3CB85757 /* FBSDKLoginTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m; sourceTree = ""; }; + F5274546D33BA3A430208D3379A688B0 /* FBSDKCoreKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKCoreKit+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h"; sourceTree = ""; }; + F58A7609C810B149F5829F5CE6C1C6B5 /* FBSDKConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKConstants.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m; sourceTree = ""; }; + F63CCFF81CB30145039051F9D7FD91EE /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + F67F8526A5D3D3B431855268C9780E08 /* FBSDKAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkResolver.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h; sourceTree = ""; }; + F681007FF47215BEC0AA7E78A76430BC /* arrow_down@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@3x.png"; path = "Pod/Assets/arrow_down@3x.png"; sourceTree = ""; }; + F6AAF5D1E559441C9219B44AE1194DE3 /* OrderedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OrderedDictionary.h; path = Pod/OrderedDictionary/OrderedDictionary.h; sourceTree = ""; }; + F6E5DCDA2F21884E7A487387385395C5 /* FBSDKMaleSilhouetteIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMaleSilhouetteIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m; sourceTree = ""; }; + F7369FDF8303C18BFC01D8B77285FB12 /* UIViewController+BSImagePicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+BSImagePicker.swift"; path = "Pod/Classes/Extension/UIViewController+BSImagePicker.swift"; sourceTree = ""; }; + F79D22EB3B698D4FD016A0F367923406 /* FBSDKMutableCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMutableCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h; sourceTree = ""; }; + F7A4D9C93632C55CA16093730E3873E7 /* StringResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringResponseSerializer.swift; path = AeroGearHttp/StringResponseSerializer.swift; sourceTree = ""; }; + F8697C57258D8F99E93ECBF0FB63E899 /* FBSDKSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSettings.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h; sourceTree = ""; }; + F8CD5A7842DC1B0CBEE0A769781C2E19 /* FBSDKGraphRequestPiggybackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestPiggybackManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m; sourceTree = ""; }; F9DBFCA514FB992D29C80A5EC76D68E0 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F9EC1EC3B939DC697CE92B67649E662F /* OAuthSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAuthSwift-dummy.m"; sourceTree = ""; }; - FA2374B3C414371278389E8BD50D6C01 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; - FA7505206E90180002A81B093D8205B7 /* FBSDKMessengerIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessengerIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.h; sourceTree = ""; }; - FAC70453D59F96B06BD9FF0FEF95CE0A /* BFAppLinkTarget.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkTarget.h; path = Bolts/iOS/BFAppLinkTarget.h; sourceTree = ""; }; + FA024AE9AE5B17FE3F9F3BA167B45325 /* FBSDKWebDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialog.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h; sourceTree = ""; }; + FA1A23D9DB8064D490EB64DF17E1702C /* FBSDKLiking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLiking.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLiking.h; sourceTree = ""; }; + FA30E690C7ACAB9894B6428E1065D5AA /* FBSDKServerConfigurationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfigurationManager+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h"; sourceTree = ""; }; + FAFCB07EA7D4A1B07613DCEDC87F22FA /* arrow_down@1x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@1x.png"; path = "Pod/Assets/arrow_down@1x.png"; sourceTree = ""; }; + FB07DEFFE137B3AABE7C362797093718 /* FBSDKLoginManagerLoginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLoginResult.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h; sourceTree = ""; }; + FB3F09AAE4CA7AA0F9DB68AC8C0BB90A /* SOAP12Envelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Envelope.m; path = Pod/SOAP/SOAP12/SOAP12Envelope.m; sourceTree = ""; }; FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FBBFE6AF49749C0490901A34948C12EB /* FBSDKLikeObjectType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeObjectType.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.h; sourceTree = ""; }; - FC702CB7B4E400D11C8330D914F6641A /* SOAP12Envelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Envelope.h; path = Pod/SOAP/SOAP12/SOAP12Envelope.h; sourceTree = ""; }; - FCAA36A134D55C201B7C9F0B1FB78EE7 /* PicoBoolConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoBoolConverter.m; path = Pod/Core/Converter/PicoBoolConverter.m; sourceTree = ""; }; FD2E9185EE51467D606FBA66D243AA42 /* Pods-Vendoo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-umbrella.h"; sourceTree = ""; }; - FD8F5E8625B631F1FAE445F5514F36A4 /* FBSDKAppInviteDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.m; sourceTree = ""; }; - FD9887BB7AC33622204D53639F7A1E17 /* PreviewViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewViewController.swift; path = Pod/Classes/Controller/PreviewViewController.swift; sourceTree = ""; }; - FDEE1A982BF65E50670F7668F193DBC3 /* FBSDKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKInternalUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m; sourceTree = ""; }; - FE27E73AB9D1AB7B10C63C2322C0AA58 /* FBSDKMessageDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessageDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.m; sourceTree = ""; }; - FE7056B94E9F7C98902BD400A22CD9DB /* FBSDKLogo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m; sourceTree = ""; }; + FD589BC85EFE1E870864DBE31214F300 /* FBSDKLikeObjectType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeObjectType.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.h; sourceTree = ""; }; + FD78F5FCB8D4F937BFC951D5EAA34932 /* AlbumTableViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTableViewDataSource.swift; path = Pod/Classes/Model/AlbumTableViewDataSource.swift; sourceTree = ""; }; + FD83DE65A391E65594BE13AD87AF6F7F /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIAlertView+AFNetworking.m"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.m"; sourceTree = ""; }; + FDA6ADF9D4B80B839291C00D64FFD91D /* AlbumTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleView.swift; path = Pod/Classes/View/AlbumTitleView.swift; sourceTree = ""; }; + FE0F172255B6C439501CF421093B3C5F /* FBSDKAccessTokenCacheV3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.h; sourceTree = ""; }; + FE772E1233B4FCBAEBFC60D50D2F4C32 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + FF20245B99135141FEAED1052DD1423E /* FBSDKShareDialogMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialogMode.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.h; sourceTree = ""; }; + FF5591981F324B3C92329972D4891714 /* UIButton+NoAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+NoAnimation.swift"; path = "Pod/Classes/Extension/UIButton+NoAnimation.swift"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1934,15 +1940,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 30F78C2DFDAD4B8B98D898DA2DF46D2F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 484BA6D52FA1AAB3CE29A0A41F3F6EAB /* Bolts.framework in Frameworks */, - F9EC825DE6BCCD6AF4C67B4D855F6673 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 37DBD2A51AF2FCB1F61501BE1697A470 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2057,6 +2054,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DBFAA94BD33BE385639E5A23427AF072 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B3D8BB81BEC226923CA9B80B952294A0 /* Bolts.framework in Frameworks */, + 926730F2DB9401169D6D4C546BDFDCCB /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E76F4132D285A646A31227F89B6D60B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2091,6 +2097,66 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 02F32C9485F76FC859A1062411C9A46E /* Support Files */ = { + isa = PBXGroup; + children = ( + A857C033FE289AC83036EABDD7238C8B /* Info.plist */, + A2080769C06178AC2DCC53D131687886 /* PicoKit.modulemap */, + F463A97412AB3E7FB671F91E1E01C3D8 /* PicoKit.xcconfig */, + 5532DA336DCD3D611AC368D9A223817A /* PicoKit-dummy.m */, + 63666D1D24F6D325CA4DE71C18AE210B /* PicoKit-prefix.pch */, + B7865BB9A08B078AF048C1ABBCBA23E7 /* PicoKit-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/PicoKit"; + sourceTree = ""; + }; + 03569D0851BF238CF1B2AF66021D47E1 /* PicoKit */ = { + isa = PBXGroup; + children = ( + C3F0C80BCCE095743E5B47D3619924FA /* Core */, + 507EE27022FF4375913F4BE03D29A6F6 /* OrderedDictionary */, + C4ACFD69B51A995968C29ACEC20EEE1E /* Soap */, + 02F32C9485F76FC859A1062411C9A46E /* Support Files */, + CD5F72B5B94535EA80600957FFDD7732 /* WebService */, + 2A40DBFD75E77C31017873520333BFFE /* XMLWriter */, + ); + path = PicoKit; + sourceTree = ""; + }; + 04A46DDF9F627861B1E5812FDE1F9EF6 /* UIKit */ = { + isa = PBXGroup; + children = ( + D283DB6521D2F241FB53832CAAB51E9F /* AFNetworkActivityIndicatorManager.h */, + 412237501A6CBE5F0ACED5A3A4C58780 /* AFNetworkActivityIndicatorManager.m */, + B6CE976C4E67669F52BBCEF52C4FBC8C /* UIActivityIndicatorView+AFNetworking.h */, + AF4B4A571530C5B386D44E09F6F2BC3E /* UIActivityIndicatorView+AFNetworking.m */, + 35E16E4A0196F4DBF0877BB69D026523 /* UIAlertView+AFNetworking.h */, + FD83DE65A391E65594BE13AD87AF6F7F /* UIAlertView+AFNetworking.m */, + D317FB282FBED42C9208515739CFC633 /* UIButton+AFNetworking.h */, + 5CB6B2E273A1EBF66D39DCC9CFD3A65C /* UIButton+AFNetworking.m */, + C6724F16F5795CAD19B413E097A61130 /* UIImage+AFNetworking.h */, + A9DD1D17658DC5A6D73CD0E88F5D22CA /* UIImageView+AFNetworking.h */, + 5CC65ABCB92FAE827654261608EEAC43 /* UIImageView+AFNetworking.m */, + D2A852A821BBA4837E2F24FDB715EBCA /* UIKit+AFNetworking.h */, + 15A0794389E8BFA7DB077B10FDDEC57D /* UIProgressView+AFNetworking.h */, + A2CC2E8F698E17DAC27CBD3175480828 /* UIProgressView+AFNetworking.m */, + EAC994DDECE13D2A7DCE3816C1D4F047 /* UIRefreshControl+AFNetworking.h */, + F63CCFF81CB30145039051F9D7FD91EE /* UIRefreshControl+AFNetworking.m */, + B05075BA2AE0B556A0070511C9AD8B6F /* UIWebView+AFNetworking.h */, + 13CB1FA37E1CA867819AB54CF99BA3E3 /* UIWebView+AFNetworking.m */, + ); + name = UIKit; + sourceTree = ""; + }; + 06250DED04F635C8DA79B008E433DDD0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + EA642DC9B6625D3FB4C77A994A5B1E51 /* GoogleInterchangeUtilities.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; 06BC65EC8555178401515199505D0E55 /* Products */ = { isa = PBXGroup; children = ( @@ -2136,64 +2202,13 @@ name = iOS; sourceTree = ""; }; - 08E27163AC2565A04F3DAF72DD1949E7 /* GDataXML-HTML */ = { + 0B9EE37398077E3861CFBDA7883D7682 /* Reachability */ = { isa = PBXGroup; children = ( - 0DA6D2F389AF14019E8BA74FF2690A20 /* GDataXMLNode.h */, - 3D806C1208A915E669BD4FBC2B95D419 /* GDataXMLNode.m */, - BA68F370EF4DEB8DCE046469A531757E /* Support Files */, + 03D5767A65705FCE62957183552C2E52 /* AFNetworkReachabilityManager.h */, + 414F8441A3420657D9995AC2FE29E8DB /* AFNetworkReachabilityManager.m */, ); - path = "GDataXML-HTML"; - sourceTree = ""; - }; - 0A0612EF72AC2AB92D1FDE05D748714B /* Alamofire-SwiftyJSON */ = { - isa = PBXGroup; - children = ( - C2D0820C1A666D1E9B32168829B4DBA8 /* AlamofireSwiftyJSON.swift */, - 2EA3166D589F15D977635F2B96899D6C /* Support Files */, - ); - path = "Alamofire-SwiftyJSON"; - sourceTree = ""; - }; - 0AB7E25EE0656493E818C770C9310143 /* Support Files */ = { - isa = PBXGroup; - children = ( - 911E65118A7D0BF59B6B87A72C15A8D5 /* Info.plist */, - CB2AB1C902FDE1FE0843304C021048E7 /* PicoKit.modulemap */, - E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */, - 812DD1515DD556A3A49D9EC899A4ED72 /* PicoKit-dummy.m */, - C23D125D092073492AC609DE12362557 /* PicoKit-prefix.pch */, - AF82297E8079D5C3248A0A2E6836E27C /* PicoKit-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/PicoKit"; - sourceTree = ""; - }; - 0B63332F2C06215723740D87352A1B37 /* OAuthSwift */ = { - isa = PBXGroup; - children = ( - 9B23270B90154C8717C59ED97E384A6D /* Dictionary+OAuthSwift.swift */, - 10151E0C079192034F4E43D1C6EA2B70 /* HMAC.swift */, - 3C65B098C671D17C341DD62FC173ECFB /* Int+OAuthSwift.swift */, - 6B9B5F2B450B68490F72E20AC3FDDF8A /* NSData+OAuthSwift.swift */, - B827D1699F32E2F4CAC5D644CFF639D1 /* NSDate+OAuthSwift.swift */, - 9EB313A7713C337756FD509E928ECD8F /* NSURL+OAuthSwift.swift */, - E858FA74CC061E2522FBC38DCB79D3A9 /* OAuth1Swift.swift */, - 6CB5F994A6A4BCEA588CB83296658340 /* OAuth2Swift.swift */, - 81DFE4210F32934A2DFD9AA6F34234CC /* OAuthSwift.swift */, - DB0A045B230B8CCD0523F87D3DEF8C9F /* OAuthSwiftClient.swift */, - 5723F2733FF874F7D39410C656B6D874 /* OAuthSwiftCredential.swift */, - 8F259A10A758FB0A23ADF86E84EC2856 /* OAuthSwiftHTTPRequest.swift */, - 8863DA4F57229E96C23A8B1C60634F18 /* OAuthSwiftMultipartData.swift */, - 921ABC778785955368CEA89269359BE6 /* OAuthSwiftURLHandlerType.swift */, - 17AEA9A9B2375BC5CE57EA3B2727844A /* OAuthWebViewController.swift */, - B94FCF221AE2FCDF46BACAC60EEAA6B7 /* SHA1.swift */, - ACF40FC7D507D88B3E42184744763A9D /* String+OAuthSwift.swift */, - D0744F82A6C9E3539065BDBFB5D12A9E /* UIApplication+OAuthSwift.swift */, - 34179205B39B7F983FC2D11EE089F0CB /* Utils.swift */, - 587CF6CF8FBEAA0F359A675ADD9326FA /* Support Files */, - ); - path = OAuthSwift; + name = Reachability; sourceTree = ""; }; 0F86076203C80A8776F3B111E5826203 /* Pods-Vendoo */ = { @@ -2214,171 +2229,152 @@ path = "Target Support Files/Pods-Vendoo"; sourceTree = ""; }; - 1323CC8DD6F7F5E82EF49DD27FB294DA /* AppLinks */ = { + 10880224917000A397C0139CFE786D73 /* Support Files */ = { isa = PBXGroup; children = ( - D619A54243FC9B2160AA5D4B6C5CD555 /* BFAppLink.h */, - A1B9210099E8B96F329A0B4B62A8832F /* BFAppLink.m */, - 1217C16EE78E51CB579D919EFC117D8C /* BFAppLink_Internal.h */, - 3D94224C11E07BFE6398DA6B809C8ABA /* BFAppLinkNavigation.h */, - 5B5DA369D0C58EE56D3E8C3EFA5C3C08 /* BFAppLinkNavigation.m */, - 07AF52AC3FBAF8F0E6DD211EC27DCCB7 /* BFAppLinkResolving.h */, - 01E0ED5376FAD457FCE98776DE572BCD /* BFAppLinkReturnToRefererController.h */, - D70416A9A53143F089245C8D1297E324 /* BFAppLinkReturnToRefererController.m */, - 0CD0CBE8E2D4D32170E3B8904D57E899 /* BFAppLinkReturnToRefererView.h */, - CE21D887507B6EF0FD3663F5B97CE311 /* BFAppLinkReturnToRefererView.m */, - 1E1E2CED915287AA3461F6300AB4951A /* BFAppLinkReturnToRefererView_Internal.h */, - FAC70453D59F96B06BD9FF0FEF95CE0A /* BFAppLinkTarget.h */, - 3A626DB8AFDA446283E4671635902BC8 /* BFAppLinkTarget.m */, - 8E41D020269E4E75B44C7D9C75652F71 /* BFMeasurementEvent.h */, - BC96B2330EF98C37540EB7E74CDE2055 /* BFMeasurementEvent.m */, - B32366F1FB0F564EAF9203EA84A59435 /* BFMeasurementEvent_Internal.h */, - 01F36C7E584CBFEE0C3DE0159BF1B826 /* BFURL.h */, - 1C8F47E5144DC8935E946E23C6D16070 /* BFURL.m */, - CC8A83F328DA69E4AD4AACB2E781F811 /* BFURL_Internal.h */, - 3A40D0DDD7DC17526BD52BCF79500DB7 /* BFWebViewAppLinkResolver.h */, - C9965D39BCC0F34498A187EE769956D9 /* BFWebViewAppLinkResolver.m */, - ); - name = AppLinks; - sourceTree = ""; - }; - 1578585ADB3F51FFF0AB85FCE27336EE /* Reachability */ = { - isa = PBXGroup; - children = ( - ED6E22F1D0CC20210179A91B27BC34EC /* AFNetworkReachabilityManager.h */, - F666F4AD6771C67E12F920EE14503EB1 /* AFNetworkReachabilityManager.m */, - ); - name = Reachability; - sourceTree = ""; - }; - 16327DEBBB47D0A98F35685FC3BEEB28 /* Support Files */ = { - isa = PBXGroup; - children = ( - A5650BEC57516F5DCA7170EC7EF29DDA /* Alamofire.modulemap */, - A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */, - F220BFDFE04C5E44BF4CD17A497DA847 /* Alamofire-dummy.m */, - 4FA352C897875F16D04154699FD41CCF /* Alamofire-prefix.pch */, - 383EB2C549433904BE20DE9CF33B6800 /* Alamofire-umbrella.h */, - 0153AE17D43D9366820D16273D0C2232 /* Info.plist */, + C8F7A82E0513500743068E16ADF768CB /* FBSDKShareKit.modulemap */, + 901C3C1290A71FFB9A40E7898DB97A6C /* FBSDKShareKit.xcconfig */, + 3A4FBD8B410E9E96539BAFB9D8A80081 /* FBSDKShareKit-dummy.m */, + A1A5E55C7F7405A4E9F84DCDEED291E2 /* FBSDKShareKit-prefix.pch */, + C2083636038F708756691CEEB0136D5E /* FBSDKShareKit-umbrella.h */, + 4B82C71B66D16363C310C0221AB49DF2 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/Alamofire"; + path = "../Target Support Files/FBSDKShareKit"; sourceTree = ""; }; - 1BABDC773269F05D4A039AC3372296E8 /* Support Files */ = { + 11CC09F2BA26EAAE03304D5E55EAB74C /* UIImageViewModeScaleAspect */ = { isa = PBXGroup; children = ( - 0187BE1EE97858C5A1A6C7BD4099CA4B /* Info.plist */, - A280A2681340B1F86B5264F7B4E8889B /* SwiftyJSON.modulemap */, - BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */, - A1422D5F425FF8918E84920784D3551D /* SwiftyJSON-dummy.m */, - 669778F135362ED70DD925DB53B18444 /* SwiftyJSON-prefix.pch */, - A10466265173AB31436F0B7210B31F86 /* SwiftyJSON-umbrella.h */, + 1CEEAD28482C6CDF1D99A4DE1C24ED7D /* UIImageViewModeScaleAspect.h */, + 35D36CBF71EC7E17004331C4126AD10B /* UIImageViewModeScaleAspect.m */, + 7CE555E3096CCAA0520F90CC11CE5352 /* Support Files */, + ); + path = UIImageViewModeScaleAspect; + sourceTree = ""; + }; + 1B99BFACC14E51088F7C4673A3490056 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2EBBA769D7BA9CF0366FE9F7A26B0795 /* FBSDKLoginKit.modulemap */, + CB8EF3589DABFE29936EE3DE53D4A614 /* FBSDKLoginKit.xcconfig */, + B301065F53BB17F51590DE94ADBAF719 /* FBSDKLoginKit-dummy.m */, + A5010F97FCAEDC0EE4A431AF89DD84E4 /* FBSDKLoginKit-prefix.pch */, + 61F9AFB9F0CAAF11A8A48E56B1EFC071 /* FBSDKLoginKit-umbrella.h */, + 10D55C7A2541A1D5961911FADA235CCB /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FBSDKLoginKit"; + sourceTree = ""; + }; + 1D6A40A0BC6B51AD3D0D0C1BE0040770 /* Support Files */ = { + isa = PBXGroup; + children = ( + BDF99FCD7B75B6A58255C60FED70E704 /* GDataXML-HTML.modulemap */, + AE2B19C0BF6EE7938D25D4102333578A /* GDataXML-HTML.xcconfig */, + 437BD695A6FD61CBA57F49CBEB1DF70F /* GDataXML-HTML-dummy.m */, + D589FE837D680B4E742ECD8E882A430F /* GDataXML-HTML-prefix.pch */, + 4C3D8D0C6E6F0C0995FBE3454888AFFE /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/GDataXML-HTML"; + sourceTree = ""; + }; + 1FC8E19B7F609038767B05EE52DC5F77 /* FirebaseAuth */ = { + isa = PBXGroup; + children = ( + FC5AAE7AD7120CEE6A02C9EA1DDB6AF6 /* Frameworks */, + ); + path = FirebaseAuth; + sourceTree = ""; + }; + 262CEFB8B08E6F446622FED9944F3F3B /* Support Files */ = { + isa = PBXGroup; + children = ( + 7E1320B5561C40711717B84F806B55E4 /* Bolts.modulemap */, + 98DFED7E7AB0EA443A3B509A9E78ED4E /* Bolts.xcconfig */, + CA5BE7C4697AB71A97FD3E275DF4B0D4 /* Bolts-dummy.m */, + 74F1BB127C261B774EC7C58D4475326B /* Bolts-prefix.pch */, + 7BDD79E1FB0A9F7F08852F4365AFC6BE /* Bolts-umbrella.h */, + ABD2BED3EBA211B25AD786E840D5A616 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Bolts"; + sourceTree = ""; + }; + 2904DBF68E3054C5FF23C6EB91346A76 /* FirebaseInstanceID */ = { + isa = PBXGroup; + children = ( + 5EA8375610F9149C1A43895F8D32BAC1 /* FIRInstanceID.h */, + 2D40CE252E2B2B29B97979493C32B5DA /* Frameworks */, + ); + path = FirebaseInstanceID; + sourceTree = ""; + }; + 2A40DBFD75E77C31017873520333BFFE /* XMLWriter */ = { + isa = PBXGroup; + children = ( + E0324A8950F94C5646FADBDA680A7235 /* XMLWriter.h */, + 8684BE754366A1EAC01D7AD9E1755488 /* XMLWriter.m */, + ); + name = XMLWriter; + sourceTree = ""; + }; + 2C26652B4F69858FB9DD19343C90A76F /* Resources */ = { + isa = PBXGroup; + children = ( + 61F38B8FF542CF34787690048A98915B /* FacebookSDKStrings.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 2D3670C0EDBA1270E5F9FC390F437924 /* GoogleSymbolUtilities */ = { + isa = PBXGroup; + children = ( + C25633F0876EE899A74F5AD9E4CFD80B /* Frameworks */, + ); + path = GoogleSymbolUtilities; + sourceTree = ""; + }; + 2D40CE252E2B2B29B97979493C32B5DA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4136820924BFFD27F402427B21C24B55 /* FirebaseInstanceID.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 30FF427F4AB5E759B6FBAC8B31489259 /* SwiftyJSON */ = { + isa = PBXGroup; + children = ( + 9A1AA8C24BE2B88B96B70AD3C912F4E1 /* SwiftyJSON.swift */, + 32BCD385A0C22DFCC0E3C8192A7525C4 /* Support Files */, + ); + path = SwiftyJSON; + sourceTree = ""; + }; + 3130EACED06B2DA94D6658C72D9AFBF5 /* Firebase */ = { + isa = PBXGroup; + children = ( + 3D4FAE084C1970A80F1394D3F0426A8C /* Analytics */, + ); + path = Firebase; + sourceTree = ""; + }; + 32BCD385A0C22DFCC0E3C8192A7525C4 /* Support Files */ = { + isa = PBXGroup; + children = ( + AAC80B8D2F458493B88A3DE271156080 /* Info.plist */, + 543B8D256086020754C10EA1CDA85CD2 /* SwiftyJSON.modulemap */, + 614AC0A67DE24690C5C0A7B771F72ED8 /* SwiftyJSON.xcconfig */, + 7B3C0C7B56E945E5783FD1836162E7D7 /* SwiftyJSON-dummy.m */, + 38E25E36921E28D9B4382EDB4B1F3A28 /* SwiftyJSON-prefix.pch */, + 0B4B1C4CAE23CFE4D34D8DC798AD81CF /* SwiftyJSON-umbrella.h */, ); name = "Support Files"; path = "../Target Support Files/SwiftyJSON"; sourceTree = ""; }; - 1D998FC360E497FC0623DDBCA3B3D58D /* Locksmith */ = { - isa = PBXGroup; - children = ( - 59732171D966B182230711C2A962C3A2 /* Dictionary_Initializers.swift */, - B9791ABFFE20ED94BF192C7531A3A38F /* Locksmith.h */, - 8AEE765274745516CF2663BAD619AAA2 /* Locksmith.swift */, - 86A2836FC6242D140DE7679038EA30E7 /* LocksmithAccessibleOption.swift */, - F388A6999ED21F6E0CDA986059254761 /* LocksmithError.swift */, - 287B2FC046CD7E5286E13024FA041690 /* LocksmithInternetAuthenticationType.swift */, - 778B859863182A0F8ED549FE794E9B22 /* LocksmithInternetProtocol.swift */, - 5979CC154FB100FDC06A627A0912EF1C /* LocksmithSecurityClass.swift */, - 1E76AA161136CD9436FDD16B9DF93AA4 /* Support Files */, - ); - path = Locksmith; - sourceTree = ""; - }; - 1E76AA161136CD9436FDD16B9DF93AA4 /* Support Files */ = { - isa = PBXGroup; - children = ( - DA43B264B353C84DB380D6CF195B67D6 /* Info.plist */, - 5076B7CD77208083D1E3BE8579D7AE81 /* Locksmith.modulemap */, - 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */, - F8AFE5EB7076EFE8F34B0E147AA970B4 /* Locksmith-dummy.m */, - E6087AF82C717C34954BFF6BE6FD54B8 /* Locksmith-prefix.pch */, - 361326F6C653527F508CB94E067782E3 /* Locksmith-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/Locksmith"; - sourceTree = ""; - }; - 1FB1AD1BFDC12437FEF3A335105F99C7 /* OrderedDictionary */ = { - isa = PBXGroup; - children = ( - 9F0C1767521D7661349467F04D1AE8BB /* OrderedDictionary.h */, - 98E829CCA52F80AB06FB40F9BB42D357 /* OrderedDictionary.m */, - ); - name = OrderedDictionary; - sourceTree = ""; - }; - 2400E3AE035A7F576262EA8FA91CA9E8 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ABE9EB19902AD4B0590EC1442B76D124 /* GoogleSymbolUtilities.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 25025A34C3A70208BF165330E1A770BF /* Frameworks */ = { - isa = PBXGroup; - children = ( - 9F47766C8E83F00B0791A0EDA791260D /* FirebaseStorage.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 29CA0E1A269C06D45763886D05B7CCA3 /* Analytics */ = { - isa = PBXGroup; - children = ( - D12D2F6E0AE57FDC45E04A168061412D /* Firebase.h */, - ); - name = Analytics; - sourceTree = ""; - }; - 2AEA15F60540B1D423D74B3A237E794C /* AFNetworking */ = { - isa = PBXGroup; - children = ( - 1ED18EAECBF26A7A58C5BCC9ADFED3D0 /* AFNetworking.h */, - 8D4DC7CE92AB96C1F72322AFB2E7DD0C /* NSURLConnection */, - 48B5D8FF5D6DB1163E2DCCD589EDADAB /* NSURLSession */, - 1578585ADB3F51FFF0AB85FCE27336EE /* Reachability */, - A54BFD8BDD7E78D01F5762FAE290A89B /* Security */, - 57567BE5C611F4F808A93FF0D1CAA25C /* Serialization */, - 48CE3F7AE6C948493D4FB11D74DE2DAC /* Support Files */, - D2084E0C4E10BC98AE2ED31B1C232A39 /* UIKit */, - ); - path = AFNetworking; - sourceTree = ""; - }; - 2D8CC0BEBC02303458C5F95CF79941BC /* GoogleInterchangeUtilities */ = { - isa = PBXGroup; - children = ( - 77F2785B56B417E3DA451815BDED0A53 /* Frameworks */, - ); - path = GoogleInterchangeUtilities; - sourceTree = ""; - }; - 2EA3166D589F15D977635F2B96899D6C /* Support Files */ = { - isa = PBXGroup; - children = ( - AE1DA495E928D690201F9215A2A38DDB /* Alamofire-SwiftyJSON.modulemap */, - 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */, - 25B20BB03E7D279E9F725AD6385BF70F /* Alamofire-SwiftyJSON-dummy.m */, - EBFC4268527D9F8038C26EE670CDE796 /* Alamofire-SwiftyJSON-prefix.pch */, - 9A971778971AA4D5CF1381782196B511 /* Alamofire-SwiftyJSON-umbrella.h */, - B1101ABA749E243E9DAAC2C7D8FECBBA /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Alamofire-SwiftyJSON"; - sourceTree = ""; - }; 33C83BF3190CA129C81079F014E29A1F /* Frameworks */ = { isa = PBXGroup; children = ( @@ -2396,343 +2392,364 @@ name = Frameworks; sourceTree = ""; }; - 370FC070B73A3B3B7A07F3ECBD83AB9F /* Support Files */ = { + 388C149CC0F510097C3A9E70702FFCB0 /* SWRevealViewController */ = { isa = PBXGroup; children = ( - 266CB4545C6FD7A9D2B0E629F2E7D860 /* Bolts.modulemap */, - D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */, - DFB9B16A8846AA57E02117247CFAA15F /* Bolts-dummy.m */, - 2E1E0BF60942125C2F4FA0F0D9C3A482 /* Bolts-prefix.pch */, - 3E5458EC8B29B93BCD0F4DB01B9B129A /* Bolts-umbrella.h */, - 5207A19057DF081CF4F2BF90DFC02240 /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Bolts"; - sourceTree = ""; - }; - 3A2200257E7CC63B84F4B53C17C52328 /* Firebase */ = { - isa = PBXGroup; - children = ( - 29CA0E1A269C06D45763886D05B7CCA3 /* Analytics */, - ); - path = Firebase; - sourceTree = ""; - }; - 3B021F36E2C1B8BB26AB2D4103F820B5 /* Support Files */ = { - isa = PBXGroup; - children = ( - DFC58BAC59B7138DCA9C331EB7AF3D72 /* FBSDKCoreKit.modulemap */, - E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */, - 717768FA09DE50DE39982007A3BB92FC /* FBSDKCoreKit-dummy.m */, - 6BFC736EF30D49729E53EC5AC8310491 /* FBSDKCoreKit-prefix.pch */, - D3D407F1FAF969C893C8548A561838CA /* FBSDKCoreKit-umbrella.h */, - 6338A6287B607CCD2B89962C6901CC22 /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FBSDKCoreKit"; - sourceTree = ""; - }; - 3DEAABAA4328FF2D8B0511477AA80EC0 /* GoogleSymbolUtilities */ = { - isa = PBXGroup; - children = ( - 2400E3AE035A7F576262EA8FA91CA9E8 /* Frameworks */, - ); - path = GoogleSymbolUtilities; - sourceTree = ""; - }; - 48B5D8FF5D6DB1163E2DCCD589EDADAB /* NSURLSession */ = { - isa = PBXGroup; - children = ( - 7D120FCA90A26497DB58AD40797D5E66 /* AFHTTPSessionManager.h */, - 25FAC2A080395962E19435E0617178AD /* AFHTTPSessionManager.m */, - 7229378569C294E7ADDAEA7B3F9F1A62 /* AFURLSessionManager.h */, - EDF1E12CC3EB15DB99FCE3C4F8364295 /* AFURLSessionManager.m */, - ); - name = NSURLSession; - sourceTree = ""; - }; - 48CE3F7AE6C948493D4FB11D74DE2DAC /* Support Files */ = { - isa = PBXGroup; - children = ( - BC180D6D81DC4BBFDA2050D4480C41FC /* AFNetworking.modulemap */, - 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */, - E27C526A9DC03AC25201A7B5842662EE /* AFNetworking-dummy.m */, - 756045EA57C784EEB157B18756DCCE1E /* AFNetworking-prefix.pch */, - 864DABD30F3F33A39046A68A238FF93B /* AFNetworking-umbrella.h */, - 81F08B43E92B486C2C86F709681C9AFD /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/AFNetworking"; - sourceTree = ""; - }; - 4F2CF4E37105DEF3B788F41555C65451 /* Support Files */ = { - isa = PBXGroup; - children = ( - 126AE26BF4C4370952DC6B3B8EF9B26A /* FBSDKShareKit.modulemap */, - 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */, - 4E5193101046966C83A1A42EAA37AE6E /* FBSDKShareKit-dummy.m */, - 0FAD2E1B6781BFA7E28D456F1CAED86C /* FBSDKShareKit-prefix.pch */, - 207FA511B14970E71D1B9CB632BE129A /* FBSDKShareKit-umbrella.h */, - E49EE569473201E432EEFB06FE40EF81 /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FBSDKShareKit"; - sourceTree = ""; - }; - 510A9C803CFB7C0B43B0AFDFEEE5E690 /* Frameworks */ = { - isa = PBXGroup; - children = ( - C8A734338301554C8CE020D17C928865 /* GoogleParsingUtilities.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 57567BE5C611F4F808A93FF0D1CAA25C /* Serialization */ = { - isa = PBXGroup; - children = ( - 5E9A787207342FCEA2EED4ABC8971410 /* AFURLRequestSerialization.h */, - 6AE1DAC81DA71B7B0830E680E6E181BC /* AFURLRequestSerialization.m */, - AE1EEE58FCE4838280DE4790FDDCC978 /* AFURLResponseSerialization.h */, - 6DA86555A9697F4831C5CAD6FC704BF5 /* AFURLResponseSerialization.m */, - ); - name = Serialization; - sourceTree = ""; - }; - 5771D549B9C8265CF01C9C7474D3D389 /* UIImageViewModeScaleAspect */ = { - isa = PBXGroup; - children = ( - 57DC59837CE442B112C29429512ECB06 /* UIImageViewModeScaleAspect.h */, - 6C7199A87E3366F1A836A8BEE11092CC /* UIImageViewModeScaleAspect.m */, - C2DA0322F2A0EE09E30294A1A431C4F5 /* Support Files */, - ); - path = UIImageViewModeScaleAspect; - sourceTree = ""; - }; - 587CF6CF8FBEAA0F359A675ADD9326FA /* Support Files */ = { - isa = PBXGroup; - children = ( - 5424DE5409E08C2F52D10017A2211C1B /* Info.plist */, - 43840A1884785D097D5B32FD47F9D5ED /* OAuthSwift.modulemap */, - 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */, - F9EC1EC3B939DC697CE92B67649E662F /* OAuthSwift-dummy.m */, - 0C486B4727AFE0A4797C33C8E2765A92 /* OAuthSwift-prefix.pch */, - BD02AC2B9FF3AEA022D757C1E6A92F8C /* OAuthSwift-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/OAuthSwift"; - sourceTree = ""; - }; - 59A80EE8128BEB42174AF56238C330BE /* Frameworks */ = { - isa = PBXGroup; - children = ( - 5150E3628702E4006BBC221030EDED31 /* FirebaseAuth.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 5E2FB1B83273C67B81346A81A9F8C3B5 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F7337BAD9C60377C227015A11AA1188B /* GoogleNetworkingUtilities.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 5F5DA892D45C3E3F7E73A067C130BF75 /* GoogleNetworkingUtilities */ = { - isa = PBXGroup; - children = ( - 5E2FB1B83273C67B81346A81A9F8C3B5 /* Frameworks */, - ); - path = GoogleNetworkingUtilities; - sourceTree = ""; - }; - 5F84A318A39080B22B349B2EB6F346AC /* Support Files */ = { - isa = PBXGroup; - children = ( - E7A35B11971B1FA23EA748323A8E8C0B /* Info.plist */, - 8A72F2A0364E85BCEF535172B07A0757 /* SWRevealViewController.modulemap */, - 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */, - 7D923143858CA62956A9EF95B09F354D /* SWRevealViewController-dummy.m */, - 66D71F6E609FAFF75BA34F31AC4A6F98 /* SWRevealViewController-prefix.pch */, - D7CDD094D4209E5C102D154AB6D938C4 /* SWRevealViewController-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/SWRevealViewController"; - sourceTree = ""; - }; - 65AEDAEFE046A6942729E3E8193B5AB7 /* FBSDKShareKit */ = { - isa = PBXGroup; - children = ( - BB8054E3A2BF18C9FE46CAB71B66CE10 /* FBSDKAppGroupAddDialog.h */, - 0840F65EC8E68957C520055A54DB2D44 /* FBSDKAppGroupAddDialog.m */, - E185BFAA94FAB3FD3156D77FF1CDC014 /* FBSDKAppGroupContent.h */, - EFEA264F83FCD09489CBB48FEC925925 /* FBSDKAppGroupContent.m */, - 614DE4EB432D19E0071EC7F596F51B39 /* FBSDKAppGroupJoinDialog.h */, - BC651BA0CE2DD998966FD25782EDCD2A /* FBSDKAppGroupJoinDialog.m */, - B90E27BE66B999EC2CDAC5B19354AE2B /* FBSDKAppInviteContent.h */, - 9EB3411A4897BE31E6C94EE384B01CB4 /* FBSDKAppInviteContent.m */, - AA19B9FCEAB5C854FF3C8FDF93BA2343 /* FBSDKAppInviteDialog.h */, - FD8F5E8625B631F1FAE445F5514F36A4 /* FBSDKAppInviteDialog.m */, - 82CAB572E7F231888D8E94DCD2A61FF5 /* FBSDKCheckmarkIcon.h */, - F76E54B8245E01726AF6EF16AD3827E4 /* FBSDKCheckmarkIcon.m */, - 5595F78F1E2E6FCCD38460CBE7987096 /* FBSDKGameRequestContent.h */, - 8DAB4E6850F562A49891BD2F721134D0 /* FBSDKGameRequestContent.m */, - 06BB4A7B39E0E9479C628B1BA291C629 /* FBSDKGameRequestDialog.h */, - 36E7B859CCB46F89F12DA7DC11793B6E /* FBSDKGameRequestDialog.m */, - 4C931FD6874CA306EC6486FD08D6E0AF /* FBSDKGameRequestFrictionlessRecipientCache.h */, - 6F867D48DD2E43C581E8112360E73F64 /* FBSDKGameRequestFrictionlessRecipientCache.m */, - 7EAB3635919B2B67D51AF7B9E62C78C4 /* FBSDKHashtag.h */, - 717C21EDAE454445C37AA0B5F44D2757 /* FBSDKHashtag.m */, - 1CE8840CF0E2F288EB9C4341DA8885F1 /* FBSDKLikeActionController.h */, - B3A88E6CEBA5538C50D867C2EA9552F5 /* FBSDKLikeActionController.m */, - 16FF99E2896CF92A099F5543EE4C8D6F /* FBSDKLikeActionControllerCache.h */, - DA75AB0F3BE8C976FD171BC3ACF4FD4D /* FBSDKLikeActionControllerCache.m */, - CC26E8E3D7351E9DE44685C51F98DFD0 /* FBSDKLikeBoxBorderView.h */, - B1D4D60E118BCEA00D0A4FEB5BAEC77F /* FBSDKLikeBoxBorderView.m */, - D8179B84003C81BB0751EE43A1DCABA9 /* FBSDKLikeBoxView.h */, - 1696EFC8EA369560ED9338FA360ECD1B /* FBSDKLikeBoxView.m */, - C2E92C48C304CFB5DB7E4C56850F571D /* FBSDKLikeButton.h */, - 120C755E2F74CF17A20BEC02328DE095 /* FBSDKLikeButton.m */, - 7ED3CE884BE63449A8C1FCAD839407AB /* FBSDKLikeButton+Internal.h */, - 273630BE380A291388E4950457CF8180 /* FBSDKLikeButtonPopWAV.h */, - 557568B70198CCB91B18F73222FBD415 /* FBSDKLikeButtonPopWAV.m */, - C3C273A675675AFA07126712D2EA3173 /* FBSDKLikeControl.h */, - 41480A800CA8D057E4E67FE080FADDE1 /* FBSDKLikeControl.m */, - 02C6157ACA718F0F7E9454BDAFB56BC3 /* FBSDKLikeControl+Internal.h */, - 62BED900052A470AA2FD9D41F5A2C3D4 /* FBSDKLikeDialog.h */, - 6E163856F56716D12F898C0A82D64649 /* FBSDKLikeDialog.m */, - FBBFE6AF49749C0490901A34948C12EB /* FBSDKLikeObjectType.h */, - B6CB8CE0FC24F09A6F44117F43DD0456 /* FBSDKLikeObjectType.m */, - 5BD323F793AB7CDD39EB4D804B4D375B /* FBSDKLiking.h */, - E3A2D38C759F5C76D318AD4D8E4D3907 /* FBSDKMessageDialog.h */, - FE27E73AB9D1AB7B10C63C2322C0AA58 /* FBSDKMessageDialog.m */, - FA7505206E90180002A81B093D8205B7 /* FBSDKMessengerIcon.h */, - C30A2644F497757FCC7E6FEEC1B99F65 /* FBSDKMessengerIcon.m */, - 4CA72A1074E7109FC13F485003BC05BB /* FBSDKSendButton.h */, - C96B1B2AA428FF9D71E28986AD0FB079 /* FBSDKSendButton.m */, - 7B46725242B6A8D8B1BEF0CB4200A3D8 /* FBSDKShareAPI.h */, - 4BEA5EC0AB6FAB0B19DCAF3A724F4124 /* FBSDKShareAPI.m */, - 4C98B3727457492BB0D47AF3DADE79F9 /* FBSDKShareButton.h */, - 330B9B5C67D0B9BB12D7824AD0EF8750 /* FBSDKShareButton.m */, - 3A41012D8C5AB02333B4B83045FA2747 /* FBSDKShareConstants.h */, - BD896B3E9F6212E57F7DFA89C796A56A /* FBSDKShareConstants.m */, - 64C7A07AEB5BAB49571A15D937796AFA /* FBSDKShareDefines.h */, - 47958682789C056D40BF7CF6F9573F85 /* FBSDKShareDialog.h */, - 359E31341B1154FBF255EEACA441C5CC /* FBSDKShareDialog.m */, - 7D08394BB3C986C1BFA07FFBB2E4B874 /* FBSDKShareDialogMode.h */, - 2A92694D4C8888731C04E9642E31FE5A /* FBSDKShareDialogMode.m */, - 22DD31CF2A28813447CE2E93E7D2B6B9 /* FBSDKShareError.h */, - D524E45F72B7D5706A8E8FC890847D37 /* FBSDKShareError.m */, - B4A0E7CCC37A109F70EFE4BD2BB09E92 /* FBSDKShareKit.h */, - 5BF6084BAFE5ED9FC99C7A0DAE908761 /* FBSDKShareKit+Internal.h */, - 32112D00215016946FAEEE2B94201268 /* FBSDKShareLinkContent.h */, - 3A78489641F4A18BFD6D66C4D6E6C758 /* FBSDKShareLinkContent.m */, - A5631680EF3178C439DDE980A1EE3898 /* FBSDKShareLinkContent+Internal.h */, - B1FC4DD456599D262758B5E9C8B2DC0B /* FBSDKShareMediaContent.h */, - C1ACB5EDF85279E3FD1D9AEBB80F4CEF /* FBSDKShareMediaContent.m */, - 4B3924AE90C6D5F8F96E7BD456532B5C /* FBSDKShareOpenGraphAction.h */, - 2CA877959747A4B4F9B66EEBDD2A82C0 /* FBSDKShareOpenGraphAction.m */, - 598683C00218E1CF2B8D6DF6063D3969 /* FBSDKShareOpenGraphContent.h */, - CBED686AC5937A6ED7CF2977FDFCC0DF /* FBSDKShareOpenGraphContent.m */, - 430CAB53B85B55094DB5D6A89759833D /* FBSDKShareOpenGraphObject.h */, - F7F9001E7D084976BD80994B7BE41383 /* FBSDKShareOpenGraphObject.m */, - E4C5AC4A40579BDC28AF236C903221A5 /* FBSDKShareOpenGraphValueContainer.h */, - 1EF195E634F9163762F5DC62B9188FBD /* FBSDKShareOpenGraphValueContainer.m */, - 9CEC32AA1EFCCD3D9FE925C92ADA221E /* FBSDKShareOpenGraphValueContainer+Internal.h */, - 5F0B831082C42B3020735802E52BC8FE /* FBSDKSharePhoto.h */, - A43EB3A8DCD0A4C27452C8900575B96D /* FBSDKSharePhoto.m */, - 08B653C67501AFD8AFDD3A405C0880A4 /* FBSDKSharePhotoContent.h */, - BA7B9A6B84F8456FE9697EFA139611D6 /* FBSDKSharePhotoContent.m */, - 93DE6005FDBC23FF2787B3E3FF80C8EA /* FBSDKShareUtility.h */, - 19557DF0E158ABDD908E6E12B73E7785 /* FBSDKShareUtility.m */, - 19C9163A29E6B760F9AABFC94E3688AE /* FBSDKShareVideo.h */, - 032369198D27ED73A6270FE2BA6EA7E0 /* FBSDKShareVideo.m */, - 735F19B7A2C3BFEB5A21280A6D04E96D /* FBSDKShareVideoContent.h */, - A95B66EEBACD15151751D10533D6728B /* FBSDKShareVideoContent.m */, - C489FB9E0E070EC28E945BF04E301177 /* FBSDKSharing.h */, - BC9F89F276D1597E6B7DBFFD42073256 /* FBSDKSharingButton.h */, - 97ECE805E43DC2A61EB23ABF06EB1EA6 /* FBSDKSharingContent.h */, - 61BB47AAE0B85BB22104E949B5F979C3 /* FBSDKVideoUploader.h */, - 240B369BAE1858571F81882692762672 /* FBSDKVideoUploader.m */, - 4F2CF4E37105DEF3B788F41555C65451 /* Support Files */, - ); - path = FBSDKShareKit; - sourceTree = ""; - }; - 6CB8A372BE9AD1BBEC68B7DCD6EE3D18 /* SWRevealViewController */ = { - isa = PBXGroup; - children = ( - 7F2F303A3598169884F80D7E47D14E6F /* SWRevealViewController.h */, - 0D1EC6AEDA20BD0303DE7A08B08C8E8D /* SWRevealViewController.m */, - 5F84A318A39080B22B349B2EB6F346AC /* Support Files */, + 2C25EC2E440052EE94EC320E7B078256 /* SWRevealViewController.h */, + C3613BA3E4B68EE856BC2785609C2F23 /* SWRevealViewController.m */, + F2DD9D0175AF302E2127D0AA89569FFC /* Support Files */, ); path = SWRevealViewController; sourceTree = ""; }; - 73100B1D781A7937E0B59F78422A2B69 /* Frameworks */ = { + 38B14ED43BD6D0AAEB2529C27560FA7C /* Alamofire-SwiftyJSON */ = { isa = PBXGroup; children = ( - A65175DAA7EE302823F34D9CE4AE69A8 /* FirebaseInstanceID.framework */, + C3C58A199006B6266127537CAAE03D48 /* AlamofireSwiftyJSON.swift */, + 9C086EEB26E6DAED352A65E3F1FF98AD /* Support Files */, ); - name = Frameworks; + path = "Alamofire-SwiftyJSON"; sourceTree = ""; }; - 73F1FE7E86CE5EB92AE209D54671BCAF /* AeroGearOAuth2 */ = { + 3D1A4E3CA6137DE45824DED1D1254936 /* Support Files */ = { isa = PBXGroup; children = ( - 886D7D03EBAC732A6A21ABD7EBCF211A /* AccountManager.swift */, - 34FF6B5D4B9E52421A24E3412E1278E9 /* Config.swift */, - A22771953D292A59A20DAD8FF70F8F64 /* DateUtils.swift */, - C51B5750BB15F67ED3A8ED2357279441 /* FacebookOAuth2Module.swift */, - 5E5EE933149C0FF460A4687AE134384A /* KeycloakOAuth2Module.swift */, - 70576938AE450669B1DB018253E1AC6D /* OAuth2Module.swift */, - D5DE4D754EE820BB60C454F9F10447F9 /* OAuth2Session.swift */, - BA12066C10BAF4B75F5321914140A8CB /* OAuth2WebViewController.swift */, - 11F710E23B17AD395719BE3EAAC633F4 /* OpenIDClaim.swift */, - 5D15177C9B13D89F5AAF4A67DC7B8931 /* TrustedPersistantOAuth2Session.swift */, - 7432AAACA1A0F6AF9BE4E9B44472450A /* UntrustedMemoryOAuth2Session.swift */, - 7FD02E0F41EE5094DFC4F8A3986C8E53 /* Support Files */, + A759883766E35704F1912EC0E783DEEE /* AeroGearOAuth2.modulemap */, + 7BE8EB1BCC368D8EDE6708DAACCE4E63 /* AeroGearOAuth2.xcconfig */, + EC01DCFCC4530268DFE406D097270678 /* AeroGearOAuth2-dummy.m */, + 2DE3C6B837F467784EBAB853C6C82D1C /* AeroGearOAuth2-prefix.pch */, + 2E3AF5B38596C01AC1FFE8EA4D5B94D5 /* AeroGearOAuth2-umbrella.h */, + 246368D5EBD7F918E7B174B90BCBE716 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/AeroGearOAuth2"; + sourceTree = ""; + }; + 3D4FAE084C1970A80F1394D3F0426A8C /* Analytics */ = { + isa = PBXGroup; + children = ( + 01B48A95E8FB5968F6B1C53766017131 /* Firebase.h */, + ); + name = Analytics; + sourceTree = ""; + }; + 4DCDC6D8F8089E9964010766B1E10983 /* GoogleNetworkingUtilities */ = { + isa = PBXGroup; + children = ( + C2E1A4384FA492EF1AD6090C27736F6A /* Frameworks */, + ); + path = GoogleNetworkingUtilities; + sourceTree = ""; + }; + 507EE27022FF4375913F4BE03D29A6F6 /* OrderedDictionary */ = { + isa = PBXGroup; + children = ( + F6AAF5D1E559441C9219B44AE1194DE3 /* OrderedDictionary.h */, + 33C8C20C04F3D69D0A0DF14A070FD5FC /* OrderedDictionary.m */, + ); + name = OrderedDictionary; + sourceTree = ""; + }; + 5094B7BD59371C45A78986B529429691 /* NSURLSession */ = { + isa = PBXGroup; + children = ( + 95898E7B47FB25FF6ED156CCAFD07456 /* AFHTTPSessionManager.h */, + 35AAA9056B1BB2FDF22F4A1282B88461 /* AFHTTPSessionManager.m */, + 5C5E6F47FFE950104667598DA545B1A6 /* AFURLSessionManager.h */, + FE772E1233B4FCBAEBFC60D50D2F4C32 /* AFURLSessionManager.m */, + ); + name = NSURLSession; + sourceTree = ""; + }; + 53801B144A5910B9D30F6538B6971AEE /* BSGridCollectionViewLayout */ = { + isa = PBXGroup; + children = ( + 9EA513C8771FA4D3227AC42B9A417A25 /* GridCollectionViewLayout.swift */, + 9FB6C5E941B490416B60CAB062C07AC0 /* Support Files */, + ); + path = BSGridCollectionViewLayout; + sourceTree = ""; + }; + 56BD5A402E89F2C2BB4BF1B16FC2C40A /* AppLinks */ = { + isa = PBXGroup; + children = ( + A0F1D78FC46F846D22935DDB8F395D48 /* BFAppLink.h */, + 512118DAB504324A4C10C51634151339 /* BFAppLink.m */, + 30625FCE2DCA2DE514F3AAE1CBA40A22 /* BFAppLink_Internal.h */, + 3F6F9B54119FC2F6EF39B44995028FD1 /* BFAppLinkNavigation.h */, + 1D1183F6266ACE5160FC3CD6C4C45EC1 /* BFAppLinkNavigation.m */, + 6229510BDF0DA0019D2EB763FB95FD77 /* BFAppLinkResolving.h */, + E08DACAAD3232CA50F03B13A386AFE56 /* BFAppLinkReturnToRefererController.h */, + 96041F19C0A9AAC29547D7CDAD4B6027 /* BFAppLinkReturnToRefererController.m */, + D6DE3456C423B6914189CB5A9BAE2940 /* BFAppLinkReturnToRefererView.h */, + C782341A3A33C6F765EA007D5D93FF17 /* BFAppLinkReturnToRefererView.m */, + 467B491B9F55217B819CE2A968521D57 /* BFAppLinkReturnToRefererView_Internal.h */, + BA95B470BFEEE2229F56E911C637B0D5 /* BFAppLinkTarget.h */, + 29F4A5FEC445C887BF0DF9085B09B11F /* BFAppLinkTarget.m */, + 9DA748AD3826125B2309C0E846ECDC37 /* BFMeasurementEvent.h */, + A1D80FADBE30DE510D5C42F23A60FD71 /* BFMeasurementEvent.m */, + 09888EEE1E11D1346C8670CF6C2CBA5C /* BFMeasurementEvent_Internal.h */, + 7F23C14A9C76BFC201AC3B5DF5C99000 /* BFURL.h */, + 61EBA468B01BB0E791068FE5B9F2BC1F /* BFURL.m */, + 9BACA8E248ADA1A39F0C3E10FC7E8880 /* BFURL_Internal.h */, + C3A341A807134877850AD294194F9CF3 /* BFWebViewAppLinkResolver.h */, + D0EBC10F2E43657830DD218CC71E6D2B /* BFWebViewAppLinkResolver.m */, + ); + name = AppLinks; + sourceTree = ""; + }; + 58314BCAB815E636F7C2864283F9E50F /* AeroGearOAuth2 */ = { + isa = PBXGroup; + children = ( + 53B15506F2A78DED777AB0971457590B /* AccountManager.swift */, + BE18E5580BBB13A7DA169642350B8147 /* Config.swift */, + D57EB4A2DDB414E14577E3DADD9E84D5 /* DateUtils.swift */, + 46E7E9E32998D00357966E21E642B796 /* FacebookOAuth2Module.swift */, + B3E514985143085EC34A63D2163049B4 /* KeycloakOAuth2Module.swift */, + B2FA13DCA5DDC6B6D77ED17F8ED7BB59 /* OAuth2Module.swift */, + D98A44FCC328A7E6E5DEBEAA316E434B /* OAuth2Session.swift */, + D54AA3DDBF4BCD8608941F6A4FB71587 /* OAuth2WebViewController.swift */, + 8971F9F37156B85B767F07DE25942A1C /* OpenIDClaim.swift */, + 80DFB72E328430E9F69E94BF5D90DD8F /* TrustedPersistantOAuth2Session.swift */, + 19D706458CBB3CAA76E5E5827A9E9BB2 /* UntrustedMemoryOAuth2Session.swift */, + 3D1A4E3CA6137DE45824DED1D1254936 /* Support Files */, ); path = AeroGearOAuth2; sourceTree = ""; }; - 77CD72E4DC2DD087CFD550AA1E5E3CC3 /* WebService */ = { + 5C5B29534B72DC245E0CE70A500A1AC3 /* FirebaseDatabase */ = { isa = PBXGroup; children = ( - 335B2839720289446894B5AA6E9E71ED /* PicoSOAPClient.h */, - 728250A42897ED5C6F6E4620AAC65540 /* PicoSOAPClient.m */, - C7B1E889F5927ED22DF36A2A7140EEE7 /* PicoSOAPRequestOperation.h */, - F144E0ADE3648A5D32EFCA69C0B7234E /* PicoSOAPRequestOperation.m */, - AEEA0794FACCC4E189ED617A88D17555 /* PicoXMLClient.h */, - 6642E596F792AF16DC5C1AB3B08BEC72 /* PicoXMLClient.m */, - 11A2711929C1B7BF4E7C006BB6829240 /* PicoXMLRequestOperation.h */, - 2B7CF4F7D74D9A0BB6F4222611D6C64F /* PicoXMLRequestOperation.m */, + A430A9E9DF2C7EECF18BD5394D709237 /* Frameworks */, ); - name = WebService; + path = FirebaseDatabase; sourceTree = ""; }; - 77F2785B56B417E3DA451815BDED0A53 /* Frameworks */ = { + 673411C4394CC31BD1BAB00D3920B081 /* Frameworks */ = { isa = PBXGroup; children = ( - 6C0497209BB7308E6684025BD2BE8076 /* GoogleInterchangeUtilities.framework */, + 0033E553A9E291E0E59A579251A15AF3 /* GoogleParsingUtilities.framework */, ); name = Frameworks; sourceTree = ""; }; - 79C1F66DDAB18BBA6634A8DCBD69EFC4 /* Resources */ = { + 6C800FD737A01A9CD39409EE0C7C3022 /* FBSDKCoreKit */ = { isa = PBXGroup; children = ( - 2FCC794790A65115BA5F8CA188FC8686 /* TYMActivityIndicatorView.bundle */, + 42165CF2948E0217FDC0DFC98AAFE89D /* _FBSDKTemporaryErrorRecoveryAttempter.h */, + 9E4B8CBC5FAB360816FCBC9A92CAF25E /* _FBSDKTemporaryErrorRecoveryAttempter.m */, + B9EE900E61F0CE55E2432E6ED0BE4B6C /* FBSDKAccessToken.h */, + 33739B550CC4A08364FFF4248370E9FF /* FBSDKAccessToken.m */, + 671AC4CDFE356DA36FFAF78D6E33070E /* FBSDKAccessTokenCache.h */, + 5B125F284A5E7490F94E6125F37AB30C /* FBSDKAccessTokenCache.m */, + FE0F172255B6C439501CF421093B3C5F /* FBSDKAccessTokenCacheV3.h */, + 8C0C067D3F96CB7516A0FED4ABE3F6D2 /* FBSDKAccessTokenCacheV3.m */, + 03FA5AC8897E0F8AD9C3C3C1DDDD2517 /* FBSDKAccessTokenCacheV3_17.h */, + 6AD8462BC721F141E3D722442D1F72E3 /* FBSDKAccessTokenCacheV3_17.m */, + A7786E8F84AAC0ED9A5F0943B3791069 /* FBSDKAccessTokenCacheV3_21.h */, + 3650AD7E952BF7100B63991A57883BCF /* FBSDKAccessTokenCacheV3_21.m */, + 060A914FBFB6819B5A0BB54ECA30C236 /* FBSDKAccessTokenCacheV4.h */, + 4B116E5EC462E3C9C8DABC90CC34D46D /* FBSDKAccessTokenCacheV4.m */, + 67B91A3F7B4257AF8B4D55A0D2B00B4F /* FBSDKAccessTokenCaching.h */, + E9FE75F9CE788049FC380C97CC8B5833 /* FBSDKAppEvents.h */, + E9483FCBACBE349F26CF9EBE5F468185 /* FBSDKAppEvents.m */, + BF8ED72AA2B452CB59E8968B7727DFD4 /* FBSDKAppEvents+Internal.h */, + 373ED965545DF6F70B86AF2F1AFC6F2A /* FBSDKAppEventsDeviceInfo.h */, + 14BD137F1F334C986D612C1146877C3E /* FBSDKAppEventsDeviceInfo.m */, + 105DD0A1280AF6E90E96C3949DEB58B3 /* FBSDKAppEventsState.h */, + 8B664650CF811898A7E47EB1E21DED05 /* FBSDKAppEventsState.m */, + 6A25F5C107C5634359A096638142E310 /* FBSDKAppEventsStateManager.h */, + 8CABEA739FE0AE210EFF74FA03EC0792 /* FBSDKAppEventsStateManager.m */, + B9683BE3D4CCFA996D25163F44A2D0BB /* FBSDKAppEventsUtility.h */, + BCE3E85EF30CCAF07D846FFD32109BCF /* FBSDKAppEventsUtility.m */, + DB05B9060E66484352B7DBE43E2D4450 /* FBSDKApplicationDelegate.h */, + C9CF78AFF5B72F7F16449403AF59980D /* FBSDKApplicationDelegate.m */, + 6B486C905117C6A5B535EF58FF260ACD /* FBSDKApplicationDelegate+Internal.h */, + F67F8526A5D3D3B431855268C9780E08 /* FBSDKAppLinkResolver.h */, + 9C2EEDCE662E55172F3C1864B53C7174 /* FBSDKAppLinkResolver.m */, + CBF6677817A07E000D1EBAECA32952BD /* FBSDKAppLinkUtility.h */, + 0218CA0C9863F7D010FD6F8827528123 /* FBSDKAppLinkUtility.m */, + 6FB4C33333E54A77C6B35E65602B4534 /* FBSDKAudioResourceLoader.h */, + D69A7F3ED5486C969970813B24E51A4B /* FBSDKAudioResourceLoader.m */, + 0A6762DBC29BFF429D71E53C052696B8 /* FBSDKBase64.h */, + 1430C1D53863E1D4281F89226B371606 /* FBSDKBase64.m */, + B1CD443F0CC0AAB2FC8F2E55C133F255 /* FBSDKBoltsMeasurementEventListener.h */, + D6AE172E9ADEB0901EDD89F9D078F717 /* FBSDKBoltsMeasurementEventListener.m */, + 0138C9B7102F27F16C0EA83C4AD3A4F2 /* FBSDKBridgeAPICrypto.h */, + 08B04DD27056BC2367665B1F2FDDB4F1 /* FBSDKBridgeAPICrypto.m */, + DE57BDBD67A46A2F168AD0E7AAD216A9 /* FBSDKBridgeAPIProtocol.h */, + 2915E855DF5A68E33B8987E3B4C601F5 /* FBSDKBridgeAPIProtocolNativeV1.h */, + 75E7A1449EBFD7ADADCF6869057BC447 /* FBSDKBridgeAPIProtocolNativeV1.m */, + 632C14ECDE3A6D07DAAEAFB6EB5B0756 /* FBSDKBridgeAPIProtocolType.h */, + 5DFF000CBA384E107EBCA5E1358A9BBA /* FBSDKBridgeAPIProtocolWebV1.h */, + 61166C93A515F6A829804D6CB7239F4A /* FBSDKBridgeAPIProtocolWebV1.m */, + BB6716AE596C0F58A7D47936CFAE9736 /* FBSDKBridgeAPIProtocolWebV2.h */, + CC35817CC9C155BB5FCD1B6539097E1B /* FBSDKBridgeAPIProtocolWebV2.m */, + C7F9DC77084128672A7D9F4F4BB6C440 /* FBSDKBridgeAPIRequest.h */, + 3088A10D14D0AA0DEDB8211CF5E32878 /* FBSDKBridgeAPIRequest.m */, + D5C18B35EACEA52367E3B3591D09F71C /* FBSDKBridgeAPIRequest+Private.h */, + 15677136DF7E3125FEC2A04639DA1912 /* FBSDKBridgeAPIResponse.h */, + 3F2393AE4A2F59F53531D0BEBE3E84C8 /* FBSDKBridgeAPIResponse.m */, + C3CB20D758435A182C1BC140A9F484DA /* FBSDKButton.h */, + 83E87254FC0A6F38FB6A9C1F635D6712 /* FBSDKButton.m */, + 66CE1D151EDAF1F694CC84F87932FF4D /* FBSDKButton+Subclass.h */, + 488E13EB7B965538D660B1FC0F4D525E /* FBSDKCloseIcon.h */, + 9320BD712B8706C4EC8799699AC29632 /* FBSDKCloseIcon.m */, + 4CA04D75E2B14D1BA18D2AB8BE3771DA /* FBSDKColor.h */, + D6A9F7C3C878BFACD48F7A283070A478 /* FBSDKColor.m */, + 6622A3A26DC48DF4080CC70D6A8E6CD1 /* FBSDKConstants.h */, + F58A7609C810B149F5829F5CE6C1C6B5 /* FBSDKConstants.m */, + A00DDB78E7FB0BDABD5CFB2757B8752D /* FBSDKContainerViewController.h */, + EDE840EB634CCF8D1DD6034BB7F3E5D4 /* FBSDKContainerViewController.m */, + 12B896BCD91B716DC30E3ED980093EC0 /* FBSDKCopying.h */, + 517F2B91D47EC674D57663E5FCFC9C5C /* FBSDKCoreKit.h */, + F5274546D33BA3A430208D3379A688B0 /* FBSDKCoreKit+Internal.h */, + A59BEDA24AE7C8E45214B408A39382A2 /* FBSDKCrypto.h */, + 349E6153E23B1E38396AD170BFE98515 /* FBSDKCrypto.m */, + D0AEA58B60BDDF19F600990C4A30640D /* FBSDKDialogConfiguration.h */, + 039AB69203818026871E385413BD62B2 /* FBSDKDialogConfiguration.m */, + 30C22B1D7B1BD5BCED20E4B3DEF77419 /* FBSDKDynamicFrameworkLoader.h */, + 7CA0B137E7412D18B7FB8CD2101CAA45 /* FBSDKDynamicFrameworkLoader.m */, + 0D5E61D9AAE2825876056C5946837448 /* FBSDKError.h */, + B9F01B540FBA768CC5B1ED5E4CB082ED /* FBSDKError.m */, + EB38EA42488CDFA9A25D5C88E5EC448C /* FBSDKErrorConfiguration.h */, + 6A705D8A48421013F5568907F7037BFE /* FBSDKErrorConfiguration.m */, + 1151176DC631DC8880B0DFE75E589247 /* FBSDKErrorRecoveryAttempter.h */, + 8018977B3C1F04CE3BDC19BEB81B82C6 /* FBSDKErrorRecoveryAttempter.m */, + 160E5A71B22B8B1A18E97BA919B5F144 /* FBSDKErrorRecoveryConfiguration.h */, + 024C6B01C6E24A3B0CD04FCA6E89437D /* FBSDKErrorRecoveryConfiguration.m */, + EA9A8895176C3EF88781F3D858D64B85 /* FBSDKGraphErrorRecoveryProcessor.h */, + 647446655F272BCEB4BCA45BFAA5B179 /* FBSDKGraphErrorRecoveryProcessor.m */, + F2663F5AAD58F5DDB8152233991CB7D3 /* FBSDKGraphRequest.h */, + E50CA9D3CAC4277F213EB2CE740F6637 /* FBSDKGraphRequest.m */, + 67B18595F0972A3AB16887A321CEA63E /* FBSDKGraphRequest+Internal.h */, + 72368B5F6CE78E5A71494904E1BF6A2A /* FBSDKGraphRequestBody.h */, + 9FFD4AB8527F87C2209F50D058AE1757 /* FBSDKGraphRequestBody.m */, + E9AE806C1661967AFF98E95273B6A735 /* FBSDKGraphRequestConnection.h */, + 8FCFF7DE41501C360BAE4EF1FD7E676D /* FBSDKGraphRequestConnection.m */, + 3B8FC5E769497DDD932001E3FC3D6D31 /* FBSDKGraphRequestConnection+Internal.h */, + 2D698628237BFA603EB974416673161F /* FBSDKGraphRequestDataAttachment.h */, + 419C2160813EC7395FFBFC56C1B9F6DD /* FBSDKGraphRequestDataAttachment.m */, + 2243EA0A134A72759F45E32D3104E68D /* FBSDKGraphRequestMetadata.h */, + D6CE48B9F9CACF5BD4149F45C812D86A /* FBSDKGraphRequestMetadata.m */, + E16E03402073A874C8813B023873FAC1 /* FBSDKGraphRequestPiggybackManager.h */, + F8CD5A7842DC1B0CBEE0A769781C2E19 /* FBSDKGraphRequestPiggybackManager.m */, + 8203477FCE0A0D183D7B03DB5F881B78 /* FBSDKIcon.h */, + 4ACE998D41526CE7C774B1DF98EF1437 /* FBSDKIcon.m */, + 90B83EE42D6C8ED73790BAB11C825457 /* FBSDKInternalUtility.h */, + EAB6B3AD923015C03A808EEBC5CF36BB /* FBSDKInternalUtility.m */, + C38A0BEE1751EDDB79D5C7C5AD96F40D /* FBSDKKeychainStore.h */, + C2B69CFBDB9AC3E4CC67945E8D1697B5 /* FBSDKKeychainStore.m */, + 1E8743B04B1511510FDABFF1D5263370 /* FBSDKKeychainStoreViaBundleID.h */, + 04B2CD3D3801849D84B5A9E493B186E5 /* FBSDKKeychainStoreViaBundleID.m */, + 0C1EE52701EF5123B696725EB3225F45 /* FBSDKLogger.h */, + B9E332B79385264F8B7852737CE4938F /* FBSDKLogger.m */, + 2646E59E684B9D22F3D77EF53A53F05E /* FBSDKLogo.h */, + 1E7DDC41A24040C06634E3929F74198C /* FBSDKLogo.m */, + E75D266AF0A8C9F2146EF8DC48BE60B5 /* FBSDKMacros.h */, + 2BFEF3E09D8AF55E082F0A5ADDE0BE62 /* FBSDKMaleSilhouetteIcon.h */, + F6E5DCDA2F21884E7A487387385395C5 /* FBSDKMaleSilhouetteIcon.m */, + 03EC4B6660D8E598C5DF9D6B829E4213 /* FBSDKMath.h */, + F219D5C60EC65751E95EA1C8AAD34831 /* FBSDKMath.m */, + 21A0CAC32EA114EFCEE3397692BBF0E3 /* FBSDKMonotonicTime.h */, + 4B097E11F39423A0981DA61A73AD317E /* FBSDKMonotonicTime.m */, + F79D22EB3B698D4FD016A0F367923406 /* FBSDKMutableCopying.h */, + 667491E91CFC2F668ACD3FC9705E8267 /* FBSDKOrganicDeeplinkHelper.h */, + D1E41C0152BC921D4AC9B6D87D389D8D /* FBSDKOrganicDeeplinkHelper.m */, + 7E79CAD12662F8E74E4001911EC74414 /* FBSDKPaymentObserver.h */, + E177E82668E0F94482653AB710D44420 /* FBSDKPaymentObserver.m */, + DDCCEF2CB8ACD90F4F5F59AF8485106E /* FBSDKProfile.h */, + D1F1ACA67D2E8485E0B100101C598CD3 /* FBSDKProfile.m */, + 535B0E61174AA7836FDF1CCAEB7A9C97 /* FBSDKProfile+Internal.h */, + A7E06CF563BEA4569F545734CB95BCED /* FBSDKProfilePictureView.h */, + B144FAF591DED2315CFC6271711C290B /* FBSDKProfilePictureView.m */, + CF747078C75A9D322D6D54646F946BBE /* FBSDKServerConfiguration.h */, + 6D79FE1BFB1530D5930A6A515DAE55FD /* FBSDKServerConfiguration.m */, + EE473C4FBABFD1D223F9CFE1FAF757B8 /* FBSDKServerConfiguration+Internal.h */, + CB21D4ED4DC9E17465E14881DBC7D4F4 /* FBSDKServerConfigurationManager.h */, + C37F9F0310090296790EAD37B6231B84 /* FBSDKServerConfigurationManager.m */, + FA30E690C7ACAB9894B6428E1065D5AA /* FBSDKServerConfigurationManager+Internal.h */, + F8697C57258D8F99E93ECBF0FB63E899 /* FBSDKSettings.h */, + CBB0E75D9F2DA1452798FDA1CD7FD775 /* FBSDKSettings.m */, + CBF2C84EE33EFA3775C4EC8132EEF767 /* FBSDKSettings+Internal.h */, + 6C907BBC5D50B128B81C9035A09DF6EF /* FBSDKSystemAccountStoreAdapter.h */, + DD3C8296D75587381A70BE5A0360EBE4 /* FBSDKSystemAccountStoreAdapter.m */, + 7180B871CFDEC41DEE090DFD594853C5 /* FBSDKTestUsersManager.h */, + 5E29F947759DD700FDD4F067D92399D5 /* FBSDKTestUsersManager.m */, + ECC44ED9454A624BC95A6D8EB937B699 /* FBSDKTimeSpentData.h */, + 55A62C6D92EA7B9199A393B2D46D87D4 /* FBSDKTimeSpentData.m */, + 06D5D0D292FAE0B0E480828F0C597827 /* FBSDKTriStateBOOL.h */, + 2D961BB58853D24F700F6704AB7BF748 /* FBSDKTriStateBOOL.m */, + 3C2A3DC052387A2523692FFDE7037CBF /* FBSDKTypeUtility.h */, + 72C49E937EB70ECD27872633533F1CC1 /* FBSDKTypeUtility.m */, + 1FECAB965701806D681C868C59C0823F /* FBSDKUIUtility.h */, + B700A8FD23BF35334DACAFB707549E0E /* FBSDKURLConnection.h */, + C9869875E5404D178C15287F1BD5F1A2 /* FBSDKURLConnection.m */, + 69FB3482169453D0CCB7C8DC98027EB4 /* FBSDKURLOpening.h */, + 5ECEEE593931D24B8922E3810A6D6A64 /* FBSDKURLSessionTask.h */, + B512F8DD69DB7C1EBF6CB020456E81AF /* FBSDKURLSessionTask.m */, + 352EB84AE5E7C6D488C23CF41B9723E1 /* FBSDKUtility.h */, + B2B186DC238B4C67B057D99BDBFD6ABE /* FBSDKUtility.m */, + DF614CE1B00F6AED7D8B4B7FF7780A92 /* FBSDKViewImpressionTracker.h */, + EF0D7D2619673A2CCC2447E2CDE2C676 /* FBSDKViewImpressionTracker.m */, + FA024AE9AE5B17FE3F9F3BA167B45325 /* FBSDKWebDialog.h */, + 91669085EDED3715E0D5F6125CAF8A15 /* FBSDKWebDialog.m */, + 9E96EE9608779D338859C3849A7E3CCE /* FBSDKWebDialogView.h */, + D39494C59ECE7D64261B42AACDCFF7DB /* FBSDKWebDialogView.m */, + 2C26652B4F69858FB9DD19343C90A76F /* Resources */, + A1263022FCAF242DE94082E0B5CA866E /* Support Files */, ); - name = Resources; + path = FBSDKCoreKit; sourceTree = ""; }; - 79CA9D6EB80C6A2B12F0999B3381B97C /* FirebaseAnalytics */ = { + 6E377C46D58F635DF22D3350059BDE5C /* Support Files */ = { isa = PBXGroup; children = ( - DBE93CBDEFD92C5A6B6946A42984901C /* Frameworks */, + EFE6A0FF4831B59FD5BDB9929922ECBA /* AeroGearHttp.modulemap */, + E775ADF0F1DE936E779259305C249DD5 /* AeroGearHttp.xcconfig */, + 01B57E9DB65D55F43451B95735B294A1 /* AeroGearHttp-dummy.m */, + AE328A3937F90B7731391105CCA47802 /* AeroGearHttp-prefix.pch */, + DAE938BCBE6F70DC24F176D639DC1215 /* AeroGearHttp-umbrella.h */, + 56AC4C041BAB61E94CAF5542290E68D5 /* Info.plist */, ); - path = FirebaseAnalytics; + name = "Support Files"; + path = "../Target Support Files/AeroGearHttp"; + sourceTree = ""; + }; + 776CD2191CB3005BC7A8E582D358A458 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 30D12B8D60A8941B2670BF9ACB460197 /* FirebaseAnalytics.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 7CE555E3096CCAA0520F90CC11CE5352 /* Support Files */ = { + isa = PBXGroup; + children = ( + B4329E6A285264C48A3A8A63B191226C /* Info.plist */, + B4EF3503ECDB742BEC83E97C4E1A7CEE /* UIImageViewModeScaleAspect.modulemap */, + 9E1070EB6FC498D7608DE0773C1DC977 /* UIImageViewModeScaleAspect.xcconfig */, + 284A86E55EA49FF60F6A65557E11C7BD /* UIImageViewModeScaleAspect-dummy.m */, + F458B0380628981A921747FCA64682F5 /* UIImageViewModeScaleAspect-prefix.pch */, + 23D4935B0418E453182C9814FCB04689 /* UIImageViewModeScaleAspect-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/UIImageViewModeScaleAspect"; + sourceTree = ""; + }; + 7D4DAB67B1A87579C6B4484ED49F9D01 /* Support Files */ = { + isa = PBXGroup; + children = ( + 59ABE71EDA50EB3FDDE7CA8597E750B6 /* Info.plist */, + C7F30152069443E9176951EC9D5EE8CF /* OAuthSwift.modulemap */, + 70972190DF891CF51777FC24E52F79D9 /* OAuthSwift.xcconfig */, + 689CA61A2D5A47E6F7144D8E5ED6EA12 /* OAuthSwift-dummy.m */, + 6CB384B8B7E1B7F9DF4F7EDB8E7FEEBE /* OAuthSwift-prefix.pch */, + C6661A5AF83DA7D7BD40895CBE1BA7E5 /* OAuthSwift-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/OAuthSwift"; sourceTree = ""; }; 7DB346D0F39D3F0E887471402A8071AB = { @@ -2740,735 +2757,698 @@ children = ( 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 33C83BF3190CA129C81079F014E29A1F /* Frameworks */, - A6FE4711112EE3BC7280F9280BEB9761 /* Pods */, + E6751DF9ABC8EA0FA73F6427185A49B4 /* Pods */, 06BC65EC8555178401515199505D0E55 /* Products */, F585CC511838E9673860926B85847598 /* Targets Support Files */, ); sourceTree = ""; }; - 7E311918B2F9BDA3AFB0E1B60E6EE141 /* FirebaseDatabase */ = { + 8A802E6F3863DA28C3100AA8DB6E6FC2 /* TYMActivityIndicatorView */ = { isa = PBXGroup; children = ( - 906B71F37F869685481FB3FB7B5C2C8C /* Frameworks */, + C8FEDC39E5CBF30ABCC802286452401F /* TYMActivityIndicatorView.h */, + F1C2898D0AC0043B1CB05FD4112E74E1 /* TYMActivityIndicatorView.m */, + D16F921B0246A29962FA9C0CDFC4C068 /* Resources */, + AA649F32931801F9DFF095E7B90DFB6C /* Support Files */, ); - path = FirebaseDatabase; + path = TYMActivityIndicatorView; sourceTree = ""; }; - 7E770BE874214A92CECEFC31BDDC84C9 /* BSGridCollectionViewLayout */ = { + 8CF5D2D1C62E3451DD6A1A0A9064EFFA /* Support Files */ = { isa = PBXGroup; children = ( - 512B061CCD4719F2DB8CF067B61BB903 /* GridCollectionViewLayout.swift */, - B3CF272E5BBBFBE177CA800C7847274D /* Support Files */, - ); - path = BSGridCollectionViewLayout; - sourceTree = ""; - }; - 7FD02E0F41EE5094DFC4F8A3986C8E53 /* Support Files */ = { - isa = PBXGroup; - children = ( - B5A1B9E4A75F5B62A073311D80F9253E /* AeroGearOAuth2.modulemap */, - 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */, - 7FDDEF84189F43CFB074278587F13019 /* AeroGearOAuth2-dummy.m */, - 332E9ADCDB1A37E41540865A4A73B07B /* AeroGearOAuth2-prefix.pch */, - 1558E1357BE03000E98FFEE56D1E1DE3 /* AeroGearOAuth2-umbrella.h */, - 8C2D0E6279241B28F02C33D1A4C39DF3 /* Info.plist */, + 53487A9E33D0949B2CB99E0576846C42 /* Alamofire.modulemap */, + 251C1C2A981601408A85E91AA33D482F /* Alamofire.xcconfig */, + 1282C5ED9E863E94BF29966D8EB115BD /* Alamofire-dummy.m */, + 9026ECC5561318C4AE3385041716DF06 /* Alamofire-prefix.pch */, + 0319E11B04CF83F03018A52A1B70A418 /* Alamofire-umbrella.h */, + C3470A088CFA97B38CFED5CF3BB351C2 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/AeroGearOAuth2"; + path = "../Target Support Files/Alamofire"; sourceTree = ""; }; - 851E08BBE73E33520598809DF0769E7F /* FBSDKCoreKit */ = { + 94D0D75E241FC571F9DE0E99EF36A5C9 /* AeroGearHttp */ = { isa = PBXGroup; children = ( - 274402C750F02C7753DA0A1808189AF9 /* _FBSDKTemporaryErrorRecoveryAttempter.h */, - 5AA8F245D01102A52F45777264C584FA /* _FBSDKTemporaryErrorRecoveryAttempter.m */, - 2D38A4B06DBCE6241BF23EE59DA2EC00 /* FBSDKAccessToken.h */, - 0BA69F359686D0DF13E8908891278F2B /* FBSDKAccessToken.m */, - E317B9D5CFF520B3690F6E5AD930138D /* FBSDKAccessTokenCache.h */, - F7D1135C708CFABDCEF0A3508501EA2D /* FBSDKAccessTokenCache.m */, - 037BEC0658766E3CC7D1521E3D8314B5 /* FBSDKAccessTokenCacheV3.h */, - C07887C7B74DD6446A7AE9876C719B95 /* FBSDKAccessTokenCacheV3.m */, - 1F84E0250821081E5D6E4D529F79671F /* FBSDKAccessTokenCacheV3_17.h */, - 80625927A0A8240A11820485C1B89E1D /* FBSDKAccessTokenCacheV3_17.m */, - 73F1953D06394C717AE56AEF0BDDB4FA /* FBSDKAccessTokenCacheV3_21.h */, - 90589F272B98647EC0E23AFCCA91E6B8 /* FBSDKAccessTokenCacheV3_21.m */, - 3392A1562EEECDDCE5ABD3904BFAF496 /* FBSDKAccessTokenCacheV4.h */, - 71C78B47AAD708C337C652098585D02D /* FBSDKAccessTokenCacheV4.m */, - CC7827DFEA640657B36BF25F407DE23F /* FBSDKAccessTokenCaching.h */, - BBEBC850596B4F6F86F529C0BCA43EDE /* FBSDKAppEvents.h */, - DC9BED0D6C773E3725A004F799012C45 /* FBSDKAppEvents.m */, - 9E37232EA795BD54902F9DA507144E03 /* FBSDKAppEvents+Internal.h */, - 3801A6586C20BA514D687E5CB9811FE3 /* FBSDKAppEventsDeviceInfo.h */, - F403D913349292156367832BB68EDEBA /* FBSDKAppEventsDeviceInfo.m */, - 9116DB6971CA6E1FF43A462B21D1B7A3 /* FBSDKAppEventsState.h */, - 13E485FD2622941556EC545D8E597CD9 /* FBSDKAppEventsState.m */, - D3219AEED0D229D413971C6A2DCEB389 /* FBSDKAppEventsStateManager.h */, - D3C023CAB4F2364653FE94AE7D7989C9 /* FBSDKAppEventsStateManager.m */, - F9C7C0D3ADE9E5FDD958B1F54E512561 /* FBSDKAppEventsUtility.h */, - 42BDF66743CD3E171F3466C6982B33AF /* FBSDKAppEventsUtility.m */, - 7A25AEEBB73C1A6F99CE31001CC8E7D5 /* FBSDKApplicationDelegate.h */, - 72245D286497643AEC39CFD51C055F36 /* FBSDKApplicationDelegate.m */, - 97397E57104D5D6DEC9FE2ECE449F708 /* FBSDKApplicationDelegate+Internal.h */, - BFF8C76E844CB9E2F51EE0CA89497C4F /* FBSDKAppLinkResolver.h */, - 56C62ACDBAC74EBED7CA84A6A12227C6 /* FBSDKAppLinkResolver.m */, - 815884EE68A2843EE9E92A62361D5865 /* FBSDKAppLinkUtility.h */, - CB03DF2760683BF429AE919F41884E80 /* FBSDKAppLinkUtility.m */, - CE3B4D504E1D4AEB468003967B2EBE94 /* FBSDKAudioResourceLoader.h */, - 40860CE4791C20738F3B29A2D545328F /* FBSDKAudioResourceLoader.m */, - CA18F7E3B63386B99BC27FE3891447FB /* FBSDKBase64.h */, - 179F7B8C1F165CEA1130EABEEC849EB9 /* FBSDKBase64.m */, - B63504FA5832B525F19DF6594AC6FB9D /* FBSDKBoltsMeasurementEventListener.h */, - 3873EE2B52B1DF5A7434C81CD98CE17B /* FBSDKBoltsMeasurementEventListener.m */, - DCCA5879C89062A06F6669EEC7EE9423 /* FBSDKBridgeAPICrypto.h */, - 57B4E1E26A52262A705E7EAA60D4F3C0 /* FBSDKBridgeAPICrypto.m */, - F5BD3504B96359BD27FEBA4D8AD4E18A /* FBSDKBridgeAPIProtocol.h */, - C58103D81E9C42491AA9266AE753D199 /* FBSDKBridgeAPIProtocolNativeV1.h */, - 8A38272687E05C4229D23CB5DE59A4FD /* FBSDKBridgeAPIProtocolNativeV1.m */, - 80EFAB771868CE6DEFEEC2E09785125B /* FBSDKBridgeAPIProtocolType.h */, - 04C630A21B0B22B553420BCFFF34A307 /* FBSDKBridgeAPIProtocolWebV1.h */, - CDB067EADA78F19BE0B2C323DAC087BA /* FBSDKBridgeAPIProtocolWebV1.m */, - 59294C30161CC7DA8F58614411D98259 /* FBSDKBridgeAPIProtocolWebV2.h */, - 2A97717F4F7ECC0DEC471C7C302AF960 /* FBSDKBridgeAPIProtocolWebV2.m */, - B80A07D9D7AFB969E72F14412BEB388B /* FBSDKBridgeAPIRequest.h */, - B3C7FB15CC8A499B4E316FCF04D2E2FF /* FBSDKBridgeAPIRequest.m */, - 831F01F23D3F1DC8A1E13167976B0163 /* FBSDKBridgeAPIRequest+Private.h */, - 66024A49B3EC28081C1692C2040D11D7 /* FBSDKBridgeAPIResponse.h */, - 4879AE8293911291B535A5FF6E44592C /* FBSDKBridgeAPIResponse.m */, - 0BDD86C6317DD2E1A2D61337F22A55DE /* FBSDKButton.h */, - 975515A6E522EEF8B1D5CEC7BCC5679B /* FBSDKButton.m */, - EC9F13F9E8CAAACFF78326E45C40599F /* FBSDKButton+Subclass.h */, - 806C2D6BD79698DD3F5D505EC0EF3137 /* FBSDKCloseIcon.h */, - 0DCDACB474AC3ADD768D6B1C3DC646FE /* FBSDKCloseIcon.m */, - 0FA328E4B9D90899E6BC7FC9780CD385 /* FBSDKColor.h */, - B34B8DDB4A0AB0AE10712A6E9AD3AD98 /* FBSDKColor.m */, - 65E09A4D2744DCD15D59FFBEC09F06FE /* FBSDKConstants.h */, - 3B81CC9EF67BDCEF23158C3FFEAA9F5A /* FBSDKConstants.m */, - 9CEFAD237F62111CE519B3B3D8CEB628 /* FBSDKContainerViewController.h */, - CEEDEAA3B1D0E7F51C42A0FF4D04155F /* FBSDKContainerViewController.m */, - 7AAAF26C01B2BFD6C274E707708CFFE9 /* FBSDKCopying.h */, - F53B4CC4415CE07123BF063BBB373F7C /* FBSDKCoreKit.h */, - E71829FF290118344E90D187DAB55969 /* FBSDKCoreKit+Internal.h */, - B5CC773751C97D5CF077570D03A9765F /* FBSDKCrypto.h */, - 0DF0F9821ABBDAACF5F415C842360459 /* FBSDKCrypto.m */, - EB342C66340F0F9CC8BC06EA44FB9716 /* FBSDKDialogConfiguration.h */, - 42EED0D66730A14C542FFAB588757458 /* FBSDKDialogConfiguration.m */, - 5171047B32E16A56212576AF9C927ACD /* FBSDKDynamicFrameworkLoader.h */, - B62A5569FC7D6F49DDF2E9EE5A048EB3 /* FBSDKDynamicFrameworkLoader.m */, - 9DF40AE913CA0B12932E513EA49D973D /* FBSDKError.h */, - BB69CDD045397A0C3BBD4BA9E14DC9EB /* FBSDKError.m */, - 00A4FA97903758A3B2737BD06B92134C /* FBSDKErrorConfiguration.h */, - 5072C8B1E1D466A2BB7524C239A94612 /* FBSDKErrorConfiguration.m */, - 658C82613C9FB905AB99A1A9CF2F6372 /* FBSDKErrorRecoveryAttempter.h */, - 410ACCE4C6EEFC8B50268F3ADB5D4A10 /* FBSDKErrorRecoveryAttempter.m */, - 2BA6133139D645A886D2696A5332348C /* FBSDKErrorRecoveryConfiguration.h */, - 34C0B1F7EB452212E19F6C9997008B3A /* FBSDKErrorRecoveryConfiguration.m */, - 24D5D774BFB590DE4A8D8308CA4249E6 /* FBSDKGraphErrorRecoveryProcessor.h */, - 0FDCFC0010E47AC0BE5AE3E177D32528 /* FBSDKGraphErrorRecoveryProcessor.m */, - AE174E4E8CAD8215E3889AD1FDF89D60 /* FBSDKGraphRequest.h */, - BF4ABFB3666982C4726ADDAC9255BAAE /* FBSDKGraphRequest.m */, - 12C1E065A6B3D67E434B973AE1123ACA /* FBSDKGraphRequest+Internal.h */, - 9030292F16ADD1982577B2FDD78186B9 /* FBSDKGraphRequestBody.h */, - 5EB68B5A119AFA8929C94D2CB9AD2A37 /* FBSDKGraphRequestBody.m */, - 0D9C8E01DB21AAF105C10CF909B18718 /* FBSDKGraphRequestConnection.h */, - 88800517C0B4F604753E9AFF3E380BAD /* FBSDKGraphRequestConnection.m */, - 45A9A8FCBE779F8A7ACE59BD1AE2066F /* FBSDKGraphRequestConnection+Internal.h */, - 87DAE8DD5362B98E2BC36A88BA93AEEA /* FBSDKGraphRequestDataAttachment.h */, - 0E3CC35EBB907779C52E2BA419C652C7 /* FBSDKGraphRequestDataAttachment.m */, - 0210649A551E0AFEB3BE52532D0579EA /* FBSDKGraphRequestMetadata.h */, - 7451DC440007CAE64F8E4F46AF67ADA2 /* FBSDKGraphRequestMetadata.m */, - 66DBCB3C69D5BEC6307565074B290069 /* FBSDKGraphRequestPiggybackManager.h */, - 8CB0342EBAA4FFC79E61FB37A28AE1B0 /* FBSDKGraphRequestPiggybackManager.m */, - ED48F8029AD4431700989A7222F7E972 /* FBSDKIcon.h */, - 6564D6E0C0B299EF82715CA242A8DB02 /* FBSDKIcon.m */, - 18A7615FFEDC1FB3348C7337D0FE0C71 /* FBSDKInternalUtility.h */, - FDEE1A982BF65E50670F7668F193DBC3 /* FBSDKInternalUtility.m */, - 45D5C4E7D18866F0718F53294F8092B7 /* FBSDKKeychainStore.h */, - 5763164C84BA1444CC801F972E189C0A /* FBSDKKeychainStore.m */, - 2A8EB10B18921992E9989829B0393AC9 /* FBSDKKeychainStoreViaBundleID.h */, - 31197CF960F9C2232A1DDCAB3F8DB68A /* FBSDKKeychainStoreViaBundleID.m */, - 2F70D5CBD03BBE49AB8DC112573F8844 /* FBSDKLogger.h */, - E86011139202C985DE4BDA1418B15737 /* FBSDKLogger.m */, - 53EA5490BD2D8F3B93640F57466D86F1 /* FBSDKLogo.h */, - FE7056B94E9F7C98902BD400A22CD9DB /* FBSDKLogo.m */, - AC85F823B6A43EA175D2E6FAF7318FF4 /* FBSDKMacros.h */, - BD0949DB26EE5E98FA8179E03525183C /* FBSDKMaleSilhouetteIcon.h */, - 2A6819D9457898F2A08A44231008DB20 /* FBSDKMaleSilhouetteIcon.m */, - 1230D4DFFC0A1487CBEA467F6A300C4C /* FBSDKMath.h */, - BD9C731E16EF98A744EA0140D9B661A9 /* FBSDKMath.m */, - 6715DBC39B429F89E9D03F7BC03F2176 /* FBSDKMonotonicTime.h */, - 92C59EBDF18FC2BF05CB5407C4A0E77D /* FBSDKMonotonicTime.m */, - 688D4D0BE6D044686882A32AACB60D78 /* FBSDKMutableCopying.h */, - 7B23EEC9EF98E18BA78C2574CB347939 /* FBSDKOrganicDeeplinkHelper.h */, - CA9561940BD63CEA1F00E7E114F5705B /* FBSDKOrganicDeeplinkHelper.m */, - 4FCEA524CE985F9574ABDED0790C8315 /* FBSDKPaymentObserver.h */, - 1659A098D97B7F23B12651594133C44F /* FBSDKPaymentObserver.m */, - 822D72BA8B1F86602793321A425FE83A /* FBSDKProfile.h */, - 7B1DA2F438778DFCB7E920B0ADEE002A /* FBSDKProfile.m */, - 44BA5CB60B2E0632713031C09DA8FF35 /* FBSDKProfile+Internal.h */, - A9E02F55BA8A59296583E6985EDA7384 /* FBSDKProfilePictureView.h */, - 79ABEA5584C4377DCDDAFFAA0E036696 /* FBSDKProfilePictureView.m */, - 215716BB207EFED998E747C8916018F9 /* FBSDKServerConfiguration.h */, - 15B0D519C13A85B81EBA251944FD9E65 /* FBSDKServerConfiguration.m */, - 8A6772F2DEDFB439091E0C61DA3CEC95 /* FBSDKServerConfiguration+Internal.h */, - BDCDB4AC58638D44FA6AFD685AD3513F /* FBSDKServerConfigurationManager.h */, - 769BE9934A6B18F097264F40ED80D5DB /* FBSDKServerConfigurationManager.m */, - 23D9EA6CD3EA83023E3E99F37858D897 /* FBSDKServerConfigurationManager+Internal.h */, - 211FC4C7B1EDCEA8885F03EB57487C9D /* FBSDKSettings.h */, - 8E1044C75CB962E20676E677131B7087 /* FBSDKSettings.m */, - EFDB9B82E6870E8F4E1F563CB761F2B4 /* FBSDKSettings+Internal.h */, - 58FE854B7DE94EBF654DC928C4316293 /* FBSDKSystemAccountStoreAdapter.h */, - 7D97429AD2D786FDD7A057B4B5BA31FB /* FBSDKSystemAccountStoreAdapter.m */, - 57C261DD8D16CB4A5AA9E9C697887864 /* FBSDKTestUsersManager.h */, - A43CAD01E6E600EA142DEA4770099EA9 /* FBSDKTestUsersManager.m */, - A15B02EF19E187B02A55F3C1ECAD08BF /* FBSDKTimeSpentData.h */, - C852408AFC2802B823BA4A17ADF80B1B /* FBSDKTimeSpentData.m */, - AAE788501ADB377A8157DE39AFD5A8B5 /* FBSDKTriStateBOOL.h */, - 1485CD0D6CC46C66362314FFA0A959A6 /* FBSDKTriStateBOOL.m */, - B57041BF243720546E2B3BBEBAB9A548 /* FBSDKTypeUtility.h */, - 7D03884E6D124364437EC429FFB2DF62 /* FBSDKTypeUtility.m */, - AF824C365242B0C20945253374774C1F /* FBSDKUIUtility.h */, - 98DBA61E57524B271DACDBF349DC5DB6 /* FBSDKURLConnection.h */, - 978A4B1D5DD8E6E69DF6BD58923D66BB /* FBSDKURLConnection.m */, - BDC826F2E70996C9AE87B96D3211DA29 /* FBSDKURLOpening.h */, - 998D15982DC46B745B0595086744C788 /* FBSDKUtility.h */, - DF2271DD0897F59E56F8E7966E5AC243 /* FBSDKUtility.m */, - 2C3240C489113EC7B1A848A55548D802 /* FBSDKViewImpressionTracker.h */, - EC88F0E7D91840D2776494E7DCDFEA1C /* FBSDKViewImpressionTracker.m */, - 601D3CA4BD4F7F6D295C4947E66295EB /* FBSDKWebDialog.h */, - 14D5C9BBF76C567DFE57F34DBDE0602A /* FBSDKWebDialog.m */, - 91BAD915B94B6D087A68C7166E45C7FD /* FBSDKWebDialogView.h */, - 5EB5B13D0786F0EDE912B10169B689A5 /* FBSDKWebDialogView.m */, - 3B021F36E2C1B8BB26AB2D4103F820B5 /* Support Files */, + 2BFCF57757EBDBC63CB0A7A7F54BA339 /* AuthzModule.swift */, + EBDB496D61682669999C4E90ECDB9E98 /* Http.swift */, + 9B7A1572F19175303D904A980B89E8B6 /* HttpRequestSerializer.swift */, + B19A858CB6E7BF06F16102CE64336889 /* JsonRequestSerializer.swift */, + 83E750719C957EB24FD6106917FEFDE0 /* JsonResponseSerializer.swift */, + BF12933570F80FED0925C27876FFD910 /* MultiPartData.swift */, + A901F83EBEAF145244494EF7D6CB240A /* RequestSerializer.swift */, + 28BB183BD8FF92AD3E6D74CBCA24D080 /* ResponseSerializer.swift */, + F7A4D9C93632C55CA16093730E3873E7 /* StringResponseSerializer.swift */, + 001ED1E1D09FB853BDAF73FC1B8F377F /* Utils.swift */, + 6E377C46D58F635DF22D3350059BDE5C /* Support Files */, ); - path = FBSDKCoreKit; + path = AeroGearHttp; sourceTree = ""; }; - 8A9528511EB91A680411348277F9404B /* GoogleUtilities */ = { + 96140128678E2B0F834685CC7CA563A2 /* GoogleParsingUtilities */ = { isa = PBXGroup; children = ( - C3F96170CB3C14E83628D013D268D271 /* Frameworks */, + 673411C4394CC31BD1BAB00D3920B081 /* Frameworks */, ); - path = GoogleUtilities; + path = GoogleParsingUtilities; sourceTree = ""; }; - 8D4DC7CE92AB96C1F72322AFB2E7DD0C /* NSURLConnection */ = { + 986DB2697C8AE98873B49C8F3533B48D /* Frameworks */ = { isa = PBXGroup; children = ( - 0DB476976DBD8C5481E989BDDB475605 /* AFHTTPRequestOperation.h */, - 754B56B34B29990770364603E688F08B /* AFHTTPRequestOperation.m */, - 4852ABFCF4F0FA929A4EC5BC39C0B44F /* AFHTTPRequestOperationManager.h */, - DC4358A4E9F5CD0E977BA79631BAD3F3 /* AFHTTPRequestOperationManager.m */, - 64E3B4BBF0885812ABC85A381066A943 /* AFURLConnectionOperation.h */, - 1F3045CE36007174B5AE014116FB12A5 /* AFURLConnectionOperation.m */, - ); - name = NSURLConnection; - sourceTree = ""; - }; - 906B71F37F869685481FB3FB7B5C2C8C /* Frameworks */ = { - isa = PBXGroup; - children = ( - 8CEAF64433FE0B8BF0E4044AB798F808 /* FirebaseDatabase.framework */, + C19BF05853131A6720FB43924BEBFF7C /* GoogleUtilities.framework */, ); name = Frameworks; sourceTree = ""; }; - 92E54435F2489E6CFE86D553B52ED5A5 /* SwiftyJSON */ = { + 9A8CC7EBB06D87D0F14BCB6381CC71F7 /* FirebaseStorage */ = { isa = PBXGroup; children = ( - 868DCF6FDE1015433F1DDF2E38D64C1E /* SwiftyJSON.swift */, - 1BABDC773269F05D4A039AC3372296E8 /* Support Files */, - ); - path = SwiftyJSON; - sourceTree = ""; - }; - 96945DDB31DDA27C2E4F23A8091D9B49 /* Support Files */ = { - isa = PBXGroup; - children = ( - 154E3CF52EB5D09A7733CBB9D06C1EF5 /* AeroGearHttp.modulemap */, - E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */, - BBBB1EB8362300197917511E324A727C /* AeroGearHttp-dummy.m */, - 1BDC798AC5D47CD190B16D3757D416CD /* AeroGearHttp-prefix.pch */, - E64651DB95E0B15BB312F6312ACBE569 /* AeroGearHttp-umbrella.h */, - A5C54E6B310A8A6D5F17E487F4FD4E90 /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/AeroGearHttp"; - sourceTree = ""; - }; - 98CF92F5D08DBDC8EA7830F69F2FBE7A /* Support Files */ = { - isa = PBXGroup; - children = ( - C1A5C330776B11C1F30A3F5D7CE61FFE /* FBSDKLoginKit.modulemap */, - 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */, - C2A024614035DD5EB6FBDE765EC32C7C /* FBSDKLoginKit-dummy.m */, - A3523A664363BAA156F31B974381BCEE /* FBSDKLoginKit-prefix.pch */, - 0FF02B199B8D42DE42D826C56B971B1C /* FBSDKLoginKit-umbrella.h */, - 8BB8FDCE60E4FDDFB68FCF6AFB09D36A /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FBSDKLoginKit"; - sourceTree = ""; - }; - 995159D6C63302734CB20CD4DCC73797 /* Tasks */ = { - isa = PBXGroup; - children = ( - 7A7C7CEED29FD3533FA87314D4AAD92E /* BFCancellationToken.h */, - F3656113C4722F5334A57E106D278299 /* BFCancellationToken.m */, - EB76ABEEC84D94281BBA33F8A707F52B /* BFCancellationTokenRegistration.h */, - 78707D42C9424E9D1BC3A19DE5C23E39 /* BFCancellationTokenRegistration.m */, - 521428FAB97E69066F88237BE8C4AE9B /* BFCancellationTokenSource.h */, - 4FC5191945366DAC35747F2456E28998 /* BFCancellationTokenSource.m */, - 83046507F9437DD39784307FE629DB93 /* BFExecutor.h */, - B11102A8441AC1AA0813A59FC1535D98 /* BFExecutor.m */, - 6A460517F9FC1CD644C63D90CA376D69 /* BFTask.h */, - 561CE7829E757FDC6AC24B2794E98D95 /* BFTask.m */, - EADAF8354E076C200F01AD3E52A05201 /* BFTask+Exceptions.h */, - 2847E87631E080F6DE4980B5438780DA /* BFTask+Exceptions.m */, - 6D4F3DD6A7BF4185DFE772EA964B09F7 /* BFTaskCompletionSource.h */, - F8DFF9AD2140B7424CF0E7B0C26DC7E9 /* BFTaskCompletionSource.m */, - D5230F3C993EF53931931F6A58EBBECD /* Bolts.h */, - 26D049B6CDE17197E09B5FFAE7F64565 /* Bolts.m */, - ); - name = Tasks; - sourceTree = ""; - }; - A4AF5BF99A081992C196CE67842D29BA /* Support Files */ = { - isa = PBXGroup; - children = ( - 5377850009ED2C9DCC8B62C24AAC728A /* Info.plist */, - 3D2898F978B2ED9E604E36EA4FF85288 /* TYMActivityIndicatorView.modulemap */, - D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */, - 5ED6116A97A900E30653A427BC042E62 /* TYMActivityIndicatorView-dummy.m */, - 899A95C142F12D481CD55CE31B877707 /* TYMActivityIndicatorView-prefix.pch */, - 67F91B1466145C07925698D1F7162CB9 /* TYMActivityIndicatorView-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/TYMActivityIndicatorView"; - sourceTree = ""; - }; - A52CD0F05E111D038AE0F3823BBDB923 /* Bolts */ = { - isa = PBXGroup; - children = ( - 1323CC8DD6F7F5E82EF49DD27FB294DA /* AppLinks */, - 370FC070B73A3B3B7A07F3ECBD83AB9F /* Support Files */, - 995159D6C63302734CB20CD4DCC73797 /* Tasks */, - ); - path = Bolts; - sourceTree = ""; - }; - A54BFD8BDD7E78D01F5762FAE290A89B /* Security */ = { - isa = PBXGroup; - children = ( - 11E9F653A2B9096D9B942AF36AF450D5 /* AFSecurityPolicy.h */, - 76C86C7E48E9DA6F8DFE5A2E31E43A7A /* AFSecurityPolicy.m */, - ); - name = Security; - sourceTree = ""; - }; - A61B6E1028EFDD5EF3D087E83C987E54 /* PicoKit */ = { - isa = PBXGroup; - children = ( - ACFBD72C3F7D37FA24A46FD3C65C7C82 /* Core */, - 1FB1AD1BFDC12437FEF3A335105F99C7 /* OrderedDictionary */, - C701E824A4DF7CBA99FE50E6EC127D1B /* Soap */, - 0AB7E25EE0656493E818C770C9310143 /* Support Files */, - 77CD72E4DC2DD087CFD550AA1E5E3CC3 /* WebService */, - FB95D8909D87C076DC9CABBD0833E70D /* XMLWriter */, - ); - path = PicoKit; - sourceTree = ""; - }; - A6FE4711112EE3BC7280F9280BEB9761 /* Pods */ = { - isa = PBXGroup; - children = ( - E94F5ACFDE74455027776112477F2BB6 /* AeroGearHttp */, - 73F1FE7E86CE5EB92AE209D54671BCAF /* AeroGearOAuth2 */, - 2AEA15F60540B1D423D74B3A237E794C /* AFNetworking */, - CE8F9E62CC87D6100649919DABAAB521 /* Alamofire */, - 0A0612EF72AC2AB92D1FDE05D748714B /* Alamofire-SwiftyJSON */, - A52CD0F05E111D038AE0F3823BBDB923 /* Bolts */, - 7E770BE874214A92CECEFC31BDDC84C9 /* BSGridCollectionViewLayout */, - E9A70ED2AD89F57E3C04E750457BF475 /* BSImagePicker */, - 851E08BBE73E33520598809DF0769E7F /* FBSDKCoreKit */, - BFD2AA546181C489417C37EFBED3A5C3 /* FBSDKLoginKit */, - 65AEDAEFE046A6942729E3E8193B5AB7 /* FBSDKShareKit */, - 3A2200257E7CC63B84F4B53C17C52328 /* Firebase */, - 79CA9D6EB80C6A2B12F0999B3381B97C /* FirebaseAnalytics */, - C22CE60DD5EEC4D0410B6966AB741397 /* FirebaseAuth */, - 7E311918B2F9BDA3AFB0E1B60E6EE141 /* FirebaseDatabase */, - C762480FB77E6E088828F873F5863F7D /* FirebaseInstanceID */, - B3589E829E0E23D26E3A68B9A1C402C1 /* FirebaseStorage */, - 08E27163AC2565A04F3DAF72DD1949E7 /* GDataXML-HTML */, - 2D8CC0BEBC02303458C5F95CF79941BC /* GoogleInterchangeUtilities */, - 5F5DA892D45C3E3F7E73A067C130BF75 /* GoogleNetworkingUtilities */, - E7BCFD662016F269AB99438F5A924BD2 /* GoogleParsingUtilities */, - 3DEAABAA4328FF2D8B0511477AA80EC0 /* GoogleSymbolUtilities */, - 8A9528511EB91A680411348277F9404B /* GoogleUtilities */, - 1D998FC360E497FC0623DDBCA3B3D58D /* Locksmith */, - 0B63332F2C06215723740D87352A1B37 /* OAuthSwift */, - A61B6E1028EFDD5EF3D087E83C987E54 /* PicoKit */, - 92E54435F2489E6CFE86D553B52ED5A5 /* SwiftyJSON */, - 6CB8A372BE9AD1BBEC68B7DCD6EE3D18 /* SWRevealViewController */, - C99A481225AABE529B82F6B38F367F9C /* TYMActivityIndicatorView */, - 5771D549B9C8265CF01C9C7474D3D389 /* UIImageViewModeScaleAspect */, - ); - name = Pods; - sourceTree = ""; - }; - ACFBD72C3F7D37FA24A46FD3C65C7C82 /* Core */ = { - isa = PBXGroup; - children = ( - DB866DB9DE8C316714FABD3690C1FB6F /* PicoBindable.h */, - 986183AA529E912B1C2EC48417B8A8B1 /* PicoBindingSchema.h */, - 2811C81F012D28F9EE3BED52201D1727 /* PicoBindingSchema.m */, - BC243D2E1C4F2FC292C0E39E689B5F0D /* PicoBoolConverter.h */, - FCAA36A134D55C201B7C9F0B1FB78EE7 /* PicoBoolConverter.m */, - 552F8C6AFBDAC976539CCE95279EFB00 /* PicoCache.h */, - C76755FC326B96C91E3B9227D2F4AF6F /* PicoCache.m */, - 2364FFE484047028D0864C0A9C409AA8 /* PicoCacheEntry.h */, - 6A2FF495ACA841678ABF1B82FF9DF99B /* PicoCacheEntry.m */, - B10D7016FB6C94ABFB9F51BC7762EFC9 /* PicoClassSchema.h */, - 6365223D2EE04FC4D1CBF866F038B308 /* PicoClassSchema.m */, - EAE080E43FE64694DEB0DE294C12D829 /* PicoConfig.h */, - 03E21F8FBBB65AE846CC06CAC959D4D8 /* PicoConfig.m */, - 1EAE2D13588C432E6B57CBCD939C6B4B /* PicoConstants.h */, - 6985E24A3958AF81630E6675F2B49884 /* PicoConstants.m */, - 91C12F6034F46AAC8A4681C7FF33414B /* PicoConvertable.h */, - CBE72FEA2F43AED48946AFC19793F24B /* PicoConverter.h */, - 81098AB9B6F098FF1D8D11E982676637 /* PicoConverter.m */, - 05511F985C1A4179E3E9024B07BE3DCB /* PicoDataConverter.h */, - 3E18B060939A2A20AC35F497BB8D9F7C /* PicoDataConverter.m */, - BA3F89C1AD1AD2D15A12A3B25F5C0C9F /* PicoDateConverter.h */, - C4ECE6267F2839D6ACCA3EBEF29942E9 /* PicoDateConverter.m */, - 293280C88802CCE9D78CD1E4253F3654 /* PicoNumberConverter.h */, - BBD5681377B692D09F16AB0C9AC0EC4F /* PicoNumberConverter.m */, - 522C992A032A2E406FD63462F865D592 /* PicoPropertySchema.h */, - 5B6C01EF3CFD2A471E161F4785915A2C /* PicoPropertySchema.m */, - B5983DBD6749A5D349163E0E21E89AF8 /* PicoReadable.h */, - B2360067ED951454DC182114DED0A114 /* PicoStringConverter.h */, - 1D5C2FDDF0F88752AF5E4684ED9E4F0E /* PicoStringConverter.m */, - 0422CFF19F0CCFB878B807ABC01C7866 /* PicoWritable.h */, - 88F86ECA1EA6EDABB24AF66849570899 /* PicoXMLElement.h */, - 2022303C12E152EA7B44B53848940E1C /* PicoXMLElement.m */, - 22D7031B071EF194F113DD5232C9B52A /* PicoXMLReader.h */, - B2E2FF3863A99E97ACD3D94F345939F3 /* PicoXMLReader.m */, - E32563002394581385A3D32A16C7719A /* PicoXMLWriter.h */, - 77F245EC157687963EDF650BBC4784FC /* PicoXMLWriter.m */, - ); - name = Core; - sourceTree = ""; - }; - B3589E829E0E23D26E3A68B9A1C402C1 /* FirebaseStorage */ = { - isa = PBXGroup; - children = ( - 25025A34C3A70208BF165330E1A770BF /* Frameworks */, + DBB5AB52EB5AB5863A223C3ED40A1FCE /* Frameworks */, ); path = FirebaseStorage; sourceTree = ""; }; - B3CF272E5BBBFBE177CA800C7847274D /* Support Files */ = { + 9C086EEB26E6DAED352A65E3F1FF98AD /* Support Files */ = { isa = PBXGroup; children = ( - 201F21FDB9DC9CB6D20957853F7ABF70 /* BSGridCollectionViewLayout.modulemap */, - C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */, - A4AE7EFCD4DFD967F80F5E666FCB9282 /* BSGridCollectionViewLayout-dummy.m */, - DCC445491493492EC123D21A28983519 /* BSGridCollectionViewLayout-prefix.pch */, - 2D9F9416BF5E8231542F184A97B97CE3 /* BSGridCollectionViewLayout-umbrella.h */, - 8D55AAF03A70BC4FAA313B2B6542B17C /* Info.plist */, + 33D2F0AAD935AAE80D3EC077B7160900 /* Alamofire-SwiftyJSON.modulemap */, + D8E33D706F8D6D456C4698C4CB8E94BD /* Alamofire-SwiftyJSON.xcconfig */, + 830A613563F181EF723A8F8B8EBD567C /* Alamofire-SwiftyJSON-dummy.m */, + 5FE3E28828FA7D22CC1EBFA89D67EE3C /* Alamofire-SwiftyJSON-prefix.pch */, + 96397070BF268DF785F1A9FB6DAAAF96 /* Alamofire-SwiftyJSON-umbrella.h */, + 813AECF2665F588D5F20EC20F68B11AF /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire-SwiftyJSON"; + sourceTree = ""; + }; + 9FB6C5E941B490416B60CAB062C07AC0 /* Support Files */ = { + isa = PBXGroup; + children = ( + A4975C68F1DDF7F50A147C3F596C9E6F /* BSGridCollectionViewLayout.modulemap */, + 545DFBD4CED3702290AC2A376522C2D2 /* BSGridCollectionViewLayout.xcconfig */, + 985347AA4358FE406E7AE4CCC22A12C1 /* BSGridCollectionViewLayout-dummy.m */, + A9BA391E5FB61A88FB165FB3C5091404 /* BSGridCollectionViewLayout-prefix.pch */, + 2548479331D978B9E023B5CE82D85237 /* BSGridCollectionViewLayout-umbrella.h */, + 87D9C936AD457B9677299F46FBAD8020 /* Info.plist */, ); name = "Support Files"; path = "../Target Support Files/BSGridCollectionViewLayout"; sourceTree = ""; }; - B97741E982BC51B89EDB5E7EF1230915 /* Resources */ = { + A1263022FCAF242DE94082E0B5CA866E /* Support Files */ = { isa = PBXGroup; children = ( - CEE29DA5F3F709007178DB0D8ACD98ED /* add_photo.png */, - F74C14BEF6DB17CD8EF940C4A4EEAC0F /* add_photo@2x.png */, - 6064ECECE29155F4247517D0C00AF3A5 /* add_photo@3x.png */, - A7535F846CF37530222EBC3F982229D3 /* Albums.storyboard */, - 878672475429BDB481207467B7AAE1A6 /* AlbumTitleView.xib */, - C9D8FBD89835630122F2346C2E06C937 /* arrow_down@1x.png */, - 8A9747642FF9076856DC777306ADCBF2 /* arrow_down@2x.png */, - DA4F83C6113FDD8CDA96DA359763EB39 /* arrow_down@3x.png */, - 9B3CA22AEC305112AA84ABC1273EE1DE /* CameraCell.xib */, - E0E604595694E7875598C8C51087F04B /* PhotoCell.xib */, - ); - name = Resources; - sourceTree = ""; - }; - BA68F370EF4DEB8DCE046469A531757E /* Support Files */ = { - isa = PBXGroup; - children = ( - B51DB1ADE6D8BE96F14089F82828C510 /* GDataXML-HTML.modulemap */, - AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */, - C8A6D2E098F2375395A4B9BF4B9221D0 /* GDataXML-HTML-dummy.m */, - 093DAF379B09CB9CC8C2594730E6C861 /* GDataXML-HTML-prefix.pch */, - 2E0A612D1C153F05BE41C16F4462C893 /* Info.plist */, + AEE9CE2141D4BBD638AA3319A06387C6 /* FBSDKCoreKit.modulemap */, + DFC00E5D3520F42E36E3D1F3BE0E93DE /* FBSDKCoreKit.xcconfig */, + F034CD05E5F2CE43E7ED3AB7A41F3FA7 /* FBSDKCoreKit-dummy.m */, + 130C4946F08E6D653B107C20365B65C3 /* FBSDKCoreKit-prefix.pch */, + 200BF9A23099783EF66C47AB0034F887 /* FBSDKCoreKit-umbrella.h */, + 5FD3D51B14E4EA1D7C6DADA7866870D7 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/GDataXML-HTML"; + path = "../Target Support Files/FBSDKCoreKit"; sourceTree = ""; }; - BFD2AA546181C489417C37EFBED3A5C3 /* FBSDKLoginKit */ = { + A129399FAF4A041183FEF27917E1D647 /* Security */ = { isa = PBXGroup; children = ( - F1765ACC268C5E65419329269F216130 /* _FBSDKLoginRecoveryAttempter.h */, - B14E14A70D93E17D007755A845A6F035 /* _FBSDKLoginRecoveryAttempter.m */, - 2D88B095A3E16088F69F7946ABFEEB71 /* FBSDKLoginButton.h */, - 36135C08380EB61B7ED8884350600F98 /* FBSDKLoginButton.m */, - 784FB02CAF784BEDDCEA4B30A3ABF477 /* FBSDKLoginCompletion.h */, - A7D89B9EE45612459A887A379DB0C6C2 /* FBSDKLoginCompletion.m */, - 5D4ED8D0A31D91EFC609099F382FA31B /* FBSDKLoginCompletion+Internal.h */, - 976B4D03A9321B412230E9EF4529F3F8 /* FBSDKLoginConstants.h */, - 75B013B5CC469E61C3A5FCE922726DCD /* FBSDKLoginConstants.m */, - 6E1B51E195D0E8064960DF10B15B6ED4 /* FBSDKLoginError.h */, - DEA9834FAC9B8FF918BDD38196090F4B /* FBSDKLoginError.m */, - 94492FDA360876E5CDA95B99988E2B94 /* FBSDKLoginKit.h */, - 5FEAE5B025211278744F393C5B0C36EB /* FBSDKLoginKit+Internal.h */, - 6D4331801A35FEB709F666C93CD2F86E /* FBSDKLoginManager.h */, - EA9672FE60ACFA6FD39010D2AA9CF225 /* FBSDKLoginManager.m */, - DA8D2F518A8BABD6E589DCC7ABAAD2D2 /* FBSDKLoginManager+Internal.h */, - 9F027A34F37FC5B1E04DA0CDAEEA3F90 /* FBSDKLoginManagerLogger.h */, - B27C96616209DB1E8C988C7A289AFC29 /* FBSDKLoginManagerLogger.m */, - 75717B0EE6927EDD4C83D0DA97D0FAD0 /* FBSDKLoginManagerLoginResult.h */, - B9A9E24E48892C412B3EBB0DD83970EE /* FBSDKLoginManagerLoginResult.m */, - D620CA6670E89627877735C51B3F6CF3 /* FBSDKLoginManagerLoginResult+Internal.h */, - 61B7F40A3681BE0DE011323E347C40F0 /* FBSDKLoginTooltipView.h */, - 1ADAAE793D80602C9B4C2663F838B071 /* FBSDKLoginTooltipView.m */, - 93CB1CDBD0B28BB95D1442933494F779 /* FBSDKLoginUtility.h */, - 4632B5EF96567E5690D2872ED18DB524 /* FBSDKLoginUtility.m */, - F6FE5C7BF10EBAD6F29B4122869155BC /* FBSDKTooltipView.h */, - 082189F18A13ACF939C12C480EAE5E35 /* FBSDKTooltipView.m */, - 98CF92F5D08DBDC8EA7830F69F2FBE7A /* Support Files */, + 5E4160851FE654599E47943F042571E6 /* AFSecurityPolicy.h */, + 172CD8CF2AB42ED5AA9D1E9C6D8F1E87 /* AFSecurityPolicy.m */, ); - path = FBSDKLoginKit; + name = Security; sourceTree = ""; }; - C22CE60DD5EEC4D0410B6966AB741397 /* FirebaseAuth */ = { + A430A9E9DF2C7EECF18BD5394D709237 /* Frameworks */ = { isa = PBXGroup; children = ( - 59A80EE8128BEB42174AF56238C330BE /* Frameworks */, - ); - path = FirebaseAuth; - sourceTree = ""; - }; - C2DA0322F2A0EE09E30294A1A431C4F5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 354093A3F49294E88E6A9D1C720D76CE /* Info.plist */, - E8FDBBD68A80D214BC46B5AE53D4F76F /* UIImageViewModeScaleAspect.modulemap */, - 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */, - 5AAA9FA721AC86560C982C18A31F3D91 /* UIImageViewModeScaleAspect-dummy.m */, - 827DF8A7D55FF991FBAE6D38BA69E49A /* UIImageViewModeScaleAspect-prefix.pch */, - AEECAD598F614CB0F93432ADB80E8005 /* UIImageViewModeScaleAspect-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/UIImageViewModeScaleAspect"; - sourceTree = ""; - }; - C3F96170CB3C14E83628D013D268D271 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 339D24377EF92D935F881CD2DDBCE13B /* GoogleUtilities.framework */, + E32819276E448656CB309C7FD3657235 /* FirebaseDatabase.framework */, ); name = Frameworks; sourceTree = ""; }; - C701E824A4DF7CBA99FE50E6EC127D1B /* Soap */ = { + AA649F32931801F9DFF095E7B90DFB6C /* Support Files */ = { isa = PBXGroup; children = ( - C1118BB5F6DDA46AAAB877C937B1F35A /* PicoSOAPReader.h */, - 41E305ED98B2F8952D7CDA42A7ADFBE9 /* PicoSOAPReader.m */, - 7DEA5BCBA51E22D7D5ADBCA12734090C /* PicoSOAPWriter.h */, - F59560067A0BF43C1DC254FA93DF5B7F /* PicoSOAPWriter.m */, - 420AA687265F34C1B92A6D2B694EED54 /* SOAP11Body.h */, - F7C5F771D232A4C7C5491ADB514E62CB /* SOAP11Body.m */, - 3B6284E8F6E616899222D07D6E94CFA6 /* SOAP11Detail.h */, - D672054D42DA9801632183EF1C590B71 /* SOAP11Detail.m */, - 5E7CC12D5F3E06BF8E801CE52A7A74D4 /* SOAP11Envelope.h */, - 1B07AA5EBDF3A432722AEA054F7AE702 /* SOAP11Envelope.m */, - CB3AE43A409680DFB7DA272E5663295F /* SOAP11Fault.h */, - E7A090313974760BAFE6E711F781CABA /* SOAP11Fault.m */, - E229D8176F4CEC52ACE0B7DD090CD054 /* SOAP11Header.h */, - 8ECC5535112943F64CCB311287110ADB /* SOAP11Header.m */, - 09523AB3CD75B683590559B093F010C0 /* SOAP12Body.h */, - 34DBB921CD25DBE5E18FEF70FED44E53 /* SOAP12Body.m */, - F10E09F24A3B6BA2E4BD36FCBAB32383 /* SOAP12Detail.h */, - 2A4B59D684FDB8F3B584C240E622C58A /* SOAP12Detail.m */, - FC702CB7B4E400D11C8330D914F6641A /* SOAP12Envelope.h */, - B557F414AD4CD70507913B3D559F93EC /* SOAP12Envelope.m */, - D65C597C7BFEA9ACB22F9D23F518616A /* SOAP12Fault.h */, - 08E86A9CEAE1073F8EB06D095899EC8E /* SOAP12Fault.m */, - C738D0637CB939CB88A8E9B07D9B0F6E /* SOAP12Faultcode.h */, - 75DA66CAE047B220F692A33AB8BBA621 /* SOAP12Faultcode.m */, - 0FDF3E2A68787915419418623FAE5E4A /* SOAP12FaultcodeEnum.h */, - CAD1C7D4763119F0CC06ED45B5D6F786 /* SOAP12FaultcodeEnum.m */, - 09C5F06A3BDBC389FC4668700A485B26 /* SOAP12Faultreason.h */, - B15A73D687F9E0EB14350C64DA7534F3 /* SOAP12Faultreason.m */, - 65943526BB25489F3C16E16622D1E779 /* SOAP12Header.h */, - 943A6529529ECC1F684DA2A4FEB226B9 /* SOAP12Header.m */, - 17D5F633C3BA9C080CCE39DFDEC7F5F2 /* SOAP12NotUnderstoodType.h */, - 254A8C0C0E243EE779478F2BABD0F2F8 /* SOAP12NotUnderstoodType.m */, - 2EF43C2EA6C705C1E7948DBEF8197450 /* SOAP12Reasontext.h */, - 6A0FF05765511513470CC978B10207D2 /* SOAP12Reasontext.m */, - 3D6C6609F47675D67542BFBA691F142A /* SOAP12Subcode.h */, - 0CC5A36875AFC0238B595A727AA19879 /* SOAP12Subcode.m */, - F0E46430AB0156C611FF7A4E3D4882A8 /* SOAP12SupportedEnvType.h */, - 45183A70E1DF80AA4424A99EBDD072BD /* SOAP12SupportedEnvType.m */, - 268C0B06B14A4BCDE90E3F5E70B93A61 /* SOAP12UpgradeType.h */, - 0A478018630430D50CB7CF361E5AB164 /* SOAP12UpgradeType.m */, + 4CD6AB55C4FEFE58E3AF6C88DB111383 /* Info.plist */, + F0693A57D7A0E86E9930C46747DAA338 /* TYMActivityIndicatorView.modulemap */, + EC78F7AE3EC6C2CBBED4A8CE414AA9FA /* TYMActivityIndicatorView.xcconfig */, + 71110B4517006E80554B2E500D3A76E6 /* TYMActivityIndicatorView-dummy.m */, + C0E2FE037F3897494F8F50829A3E4D90 /* TYMActivityIndicatorView-prefix.pch */, + 641911AFD95B862873D0DF97FC94B94E /* TYMActivityIndicatorView-umbrella.h */, ); - name = Soap; + name = "Support Files"; + path = "../Target Support Files/TYMActivityIndicatorView"; sourceTree = ""; }; - C762480FB77E6E088828F873F5863F7D /* FirebaseInstanceID */ = { + C25633F0876EE899A74F5AD9E4CFD80B /* Frameworks */ = { isa = PBXGroup; children = ( - DA94C6591FD96A4B7462E306BF834C57 /* FIRInstanceID.h */, - 73100B1D781A7937E0B59F78422A2B69 /* Frameworks */, - ); - path = FirebaseInstanceID; - sourceTree = ""; - }; - C99A481225AABE529B82F6B38F367F9C /* TYMActivityIndicatorView */ = { - isa = PBXGroup; - children = ( - 480EAF767C67AE676AFEBA2B2C72DD95 /* TYMActivityIndicatorView.h */, - 657944D0882FE5E3659E6739B34E4AC3 /* TYMActivityIndicatorView.m */, - 79C1F66DDAB18BBA6634A8DCBD69EFC4 /* Resources */, - A4AF5BF99A081992C196CE67842D29BA /* Support Files */, - ); - path = TYMActivityIndicatorView; - sourceTree = ""; - }; - CE8F9E62CC87D6100649919DABAAB521 /* Alamofire */ = { - isa = PBXGroup; - children = ( - E1498D3AB8502D993842832DE34046C3 /* Alamofire.swift */, - EDB6A7A2286F25B59DDAD3B2E68D208A /* Download.swift */, - 02F16D93F7CBC4DDFC72FC03A0E42E82 /* Error.swift */, - 727549E62BD7A32551D9A4A495E77A99 /* Manager.swift */, - E8EAA1D518760505308ED46344A40B55 /* MultipartFormData.swift */, - 6EDB9D463C502DF5FFF6440CAC522213 /* NetworkReachabilityManager.swift */, - EDDEC727D8DAF0DA2BBFB591ED21B56F /* Notifications.swift */, - 295C05B50FFE2CCBBD4D128933A88FDF /* ParameterEncoding.swift */, - 547F0F61578EE093020B8127CFD6661D /* Request.swift */, - D0386A7DC808534C0548BC11C07B7B9A /* Response.swift */, - 5E83C4119367B3BB115800ABB3DFA47F /* ResponseSerialization.swift */, - A185AC5E050F21355385EA759FE5EEF1 /* Result.swift */, - 63D541600AB0BC0B46F7A0D8896AC894 /* ServerTrustPolicy.swift */, - 0FBD5B2058DE2B16BC3F1B5A7B04E40F /* Stream.swift */, - 0E9E12C665A69B68F3CF98C3E7E2289C /* Timeline.swift */, - 10A4E1C9F61C475D495D58BF2DD5AEFF /* Upload.swift */, - 1AAF3229A34E9C0D5C8019CC2A75EEA5 /* Validation.swift */, - 16327DEBBB47D0A98F35685FC3BEEB28 /* Support Files */, - ); - path = Alamofire; - sourceTree = ""; - }; - D2084E0C4E10BC98AE2ED31B1C232A39 /* UIKit */ = { - isa = PBXGroup; - children = ( - 3B67245E41A4AF1938E37858C3C72D44 /* AFNetworkActivityIndicatorManager.h */, - C40DAE14029892B289A8FE01392AA863 /* AFNetworkActivityIndicatorManager.m */, - DD70A3643DC0CEFD5CBE01C0B6705477 /* UIActivityIndicatorView+AFNetworking.h */, - 79CA30FE6F1DBFBF380140B5FB47263C /* UIActivityIndicatorView+AFNetworking.m */, - 2B2F7EBA8867723F12C25840D1E88243 /* UIAlertView+AFNetworking.h */, - D9DD479673E8B396F89A7DAA2143A711 /* UIAlertView+AFNetworking.m */, - E9300385F72720F6C95944F2CBADC1F7 /* UIButton+AFNetworking.h */, - C1656555CF10DA82E136D8067B87620E /* UIButton+AFNetworking.m */, - D0010F5E558D2E0DD1C452C881BBAA6F /* UIImage+AFNetworking.h */, - 144D5484885E6C90AB797898C08E7374 /* UIImageView+AFNetworking.h */, - 8FA186481586667CF25E85D337A85871 /* UIImageView+AFNetworking.m */, - CCE3A0AEEA51C049E1C8A8C2335A32D2 /* UIKit+AFNetworking.h */, - FA2374B3C414371278389E8BD50D6C01 /* UIProgressView+AFNetworking.h */, - 32DA793C1694801D6DD0DD16FED99266 /* UIProgressView+AFNetworking.m */, - 0131DEFA58ED7F61883CE8CCFC049AF1 /* UIRefreshControl+AFNetworking.h */, - 1864F630CE031BF44EDE61E5DF26ECCD /* UIRefreshControl+AFNetworking.m */, - 2C7D30E84A7446738D0FC06667D18A86 /* UIWebView+AFNetworking.h */, - 7D5C411FA498BF0C8663F9BA74B398FC /* UIWebView+AFNetworking.m */, - ); - name = UIKit; - sourceTree = ""; - }; - DBE93CBDEFD92C5A6B6946A42984901C /* Frameworks */ = { - isa = PBXGroup; - children = ( - 830D7C28C7F7C7E68853BAAF9C67506C /* FirebaseAnalytics.framework */, + 3A7E900800CE42BDE701A3400409BA26 /* GoogleSymbolUtilities.framework */, ); name = Frameworks; sourceTree = ""; }; - E3E2E316480FD05ECD4A96928D606694 /* Support Files */ = { + C2E1A4384FA492EF1AD6090C27736F6A /* Frameworks */ = { isa = PBXGroup; children = ( - 4C24E9863E58DC41ED1E5B1C4A56C71E /* BSImagePicker.modulemap */, - DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */, - 92259F25DCE2BF1611B75E4F4840AB5D /* BSImagePicker-dummy.m */, - 023F4374BD9F7B4F8555090AA7A8267E /* BSImagePicker-prefix.pch */, - CD33485C1C502613F59CF52A0AF56C00 /* BSImagePicker-umbrella.h */, - 7B3D6B712BF9A7AE7667FCF079270313 /* Info.plist */, - 0EFE3877D6773C11887700B43A5A1BC2 /* ResourceBundle-BSImagePicker-Info.plist */, + 8CBCD7285180AA45678D34B43304FC68 /* GoogleNetworkingUtilities.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + C2F58F30E03681EDD63FB6C403051246 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4B868E99CCA5B3466984E6B7D4A2DEF3 /* Info.plist */, + 5762039239D0A2A79E4294F0B1B8DFBD /* Locksmith.modulemap */, + 5F1E683D36F969F98DEC6249ADF0BC8A /* Locksmith.xcconfig */, + 54FBE64C914B141164A2B089BDCB456F /* Locksmith-dummy.m */, + 3F54B238272020D5CC27E37D10D9605F /* Locksmith-prefix.pch */, + 86626845F9BFD19AA0B7EFB46AB4F4E0 /* Locksmith-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/Locksmith"; + sourceTree = ""; + }; + C3B96AF16E38AD81EF73CC91AF9DCBAE /* Support Files */ = { + isa = PBXGroup; + children = ( + A7661C4DEE30BB3A478F82FAA1857BFF /* BSImagePicker.modulemap */, + 8C97E09214D28B9BAF3E58F4F6213331 /* BSImagePicker.xcconfig */, + 00468CA987B4A935546FE35CE63FFAF8 /* BSImagePicker-dummy.m */, + 000E1042A47DE50562D5C1A4C6FF9974 /* BSImagePicker-prefix.pch */, + 21C86285910A7BB663217575F2A350EC /* BSImagePicker-umbrella.h */, + 94D9D3472083D8245A77D63467B9792F /* Info.plist */, + 50BA3CEFA6F5E5A330C64E7B2C409E14 /* ResourceBundle-BSImagePicker-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/BSImagePicker"; sourceTree = ""; }; - E7BCFD662016F269AB99438F5A924BD2 /* GoogleParsingUtilities */ = { + C3F0C80BCCE095743E5B47D3619924FA /* Core */ = { isa = PBXGroup; children = ( - 510A9C803CFB7C0B43B0AFDFEEE5E690 /* Frameworks */, + 6A49025A6681123C28C8013B0D51A40C /* PicoBindable.h */, + 37766421CDDB8E71D920BE9105F6BAC1 /* PicoBindingSchema.h */, + 2B84576C09BC2BF20C14AF748C9CBBBC /* PicoBindingSchema.m */, + 83626CD5D098BBE028979A7EB83CE112 /* PicoBoolConverter.h */, + 8DA72F1F50853417E570AE73C82F23DA /* PicoBoolConverter.m */, + 76A87F95DC8203D14B80793CACF1ACF1 /* PicoCache.h */, + 4C1A3946D19638239E5F703F648C5725 /* PicoCache.m */, + 92A43D550109E09F95DD446D60D99C10 /* PicoCacheEntry.h */, + 205FDCE2F6A29694B0DABB3DB234FE4C /* PicoCacheEntry.m */, + A747347B4CD12E772F84D4E24B9AE0AE /* PicoClassSchema.h */, + D812467F81B8AA497BC37E03A16E1432 /* PicoClassSchema.m */, + E4E9378D60B58BF3402760A161B45FEB /* PicoConfig.h */, + 1E8F2A147E46504579F90A9C658C6521 /* PicoConfig.m */, + 2DC4E5A663C0014AB450F143CC83F3D8 /* PicoConstants.h */, + C8C06F5719DBF3249A009D906F77DD55 /* PicoConstants.m */, + BA9EF4AF477D693E529BAFADAAC98B64 /* PicoConvertable.h */, + 4549489BDB508FBA017742B2DF350A31 /* PicoConverter.h */, + DEB7A54EDE273540D0671EA9494F3CA3 /* PicoConverter.m */, + 67F074202B8FC6B7D7D56B4283D6C913 /* PicoDataConverter.h */, + 556FD9B52DC4AC4AD2DCBC8C46437653 /* PicoDataConverter.m */, + D9DCFC9B97F93DCF4AE39617F7DB55A3 /* PicoDateConverter.h */, + CE4B6983282888AEA552E71CF6E31064 /* PicoDateConverter.m */, + AA43C3D10F97C543F17F070A89A48AD9 /* PicoNumberConverter.h */, + BEA0423DD01AB15986A6DD29F8F8BA32 /* PicoNumberConverter.m */, + 451E1AF77E26258AE5123C751DE2FCA7 /* PicoPropertySchema.h */, + 7D2EA275E320DE2D01B082C95227C586 /* PicoPropertySchema.m */, + 41FE2D6084081C1E5B19A65FEB5B2F1B /* PicoReadable.h */, + 3940C53E02697860F32218623C63E187 /* PicoStringConverter.h */, + 9C61F474B338CF7C1BB19CBE19535D81 /* PicoStringConverter.m */, + C84640E84123682719DCE1D4DE3A88D0 /* PicoWritable.h */, + DE5A2A24BA7DBBE04350D595A97CFB16 /* PicoXMLElement.h */, + F42D7F297FBAD5439200429C252D066B /* PicoXMLElement.m */, + E6480232EB96F2819CB3BCC5F0F73690 /* PicoXMLReader.h */, + 29D1AE81796DC5124809B3890F6B175A /* PicoXMLReader.m */, + 0A5067076AB83F35B4C05F2B94807AEA /* PicoXMLWriter.h */, + 409A4FCE599012C18433BAB02082F141 /* PicoXMLWriter.m */, ); - path = GoogleParsingUtilities; + name = Core; sourceTree = ""; }; - E94F5ACFDE74455027776112477F2BB6 /* AeroGearHttp */ = { + C4ACFD69B51A995968C29ACEC20EEE1E /* Soap */ = { isa = PBXGroup; children = ( - 63537DDFAEFE1F2749F7CB8138DE2F98 /* AuthzModule.swift */, - C403253C46C7A568F5503C1533E1A6DD /* Http.swift */, - 095E0A3472702B8830A756EDD556D632 /* HttpRequestSerializer.swift */, - CAF4FEBFDAA5E7131CB46C2415B06035 /* JsonRequestSerializer.swift */, - AABACEDD73398DA40B1435947C6ABC59 /* JsonResponseSerializer.swift */, - A70771279652CFA5CE255D71FEEF81F8 /* MultiPartData.swift */, - 3D7AFF33D7BD46B127501BFA1A1F3FCF /* RequestSerializer.swift */, - 4B6A56C3289C34F84A3243B0C29EFF86 /* ResponseSerializer.swift */, - 991BCEC0B65FED6B7FD2C418B7F2462E /* StringResponseSerializer.swift */, - 476CC038C9ACA70BB8A6166B222BCAD4 /* Utils.swift */, - 96945DDB31DDA27C2E4F23A8091D9B49 /* Support Files */, + CD70D3777B3D418D3209786B47918E43 /* PicoSOAPReader.h */, + CE0968D9085FD092BC938C5E21F64285 /* PicoSOAPReader.m */, + 46D385E8BB079D515E729AEA5090ED4D /* PicoSOAPWriter.h */, + 1C2CE74AF731BB4E3D687268087D61A8 /* PicoSOAPWriter.m */, + 28671C74E6219AA98F752E15384911B3 /* SOAP11Body.h */, + 1AD4E1575F3248B8734677F17536F00E /* SOAP11Body.m */, + BCB16FF346A0151CC019D3643A9AA82F /* SOAP11Detail.h */, + 2A628B6C9BA20CFDBAC57EF7555C30D6 /* SOAP11Detail.m */, + 5339061BB4B4F2F0C45118854A1A077D /* SOAP11Envelope.h */, + DA62BAE7BB85018E087EF3FA7C100C8C /* SOAP11Envelope.m */, + 9F07E6952EB0163416EFF3FEFDAE2D4D /* SOAP11Fault.h */, + 58CB0B9B46D79AA4C054584A02553BE8 /* SOAP11Fault.m */, + 3C391BBBED993C1AF3B869B0E59BE5DE /* SOAP11Header.h */, + 1E4F79E73EE57B00EFC0DA73E64F4100 /* SOAP11Header.m */, + 4C779E912258AD1658DD397B739EC40A /* SOAP12Body.h */, + 0F837176C8A8ADCEBF0D5EF3ED8BEBDD /* SOAP12Body.m */, + C0ADAA6DA3AA7B912E11408314681B3C /* SOAP12Detail.h */, + 246004C7A6D6DA56AB48D9BF34A7F38E /* SOAP12Detail.m */, + 090419E6F854BFF0E1B9A850299FF78B /* SOAP12Envelope.h */, + FB3F09AAE4CA7AA0F9DB68AC8C0BB90A /* SOAP12Envelope.m */, + 3BD30D72E3096CF62F4B9A44F14C4313 /* SOAP12Fault.h */, + 8D5783CD01D709D572D478BF714A9AA5 /* SOAP12Fault.m */, + 8A9DF7A43BC74A48C809AF250ADD3254 /* SOAP12Faultcode.h */, + 95F713A97F80C87CB1775F88C248120D /* SOAP12Faultcode.m */, + A083A10B54D386144A719D8A962051FB /* SOAP12FaultcodeEnum.h */, + 6ED54AF2A1C0F991D0F1DF1881D846BE /* SOAP12FaultcodeEnum.m */, + D62730F80C040A16E2B57DF50BCA48F6 /* SOAP12Faultreason.h */, + C0CE684E607AFC1CFD0F514DB536B97F /* SOAP12Faultreason.m */, + 933142069DFEC15DB540DA18EB6426A0 /* SOAP12Header.h */, + 99360848EB61B858946726FEBFF40D79 /* SOAP12Header.m */, + 078AE6D25BDE890AECD4ADDEBC3676A0 /* SOAP12NotUnderstoodType.h */, + 08033C10521E7D136E0CA79E36FCAF3B /* SOAP12NotUnderstoodType.m */, + 35E64A6433C0BD85B2192C41AE6F609D /* SOAP12Reasontext.h */, + 8A97B7CFD7538DF6DF552A7C2FA8A1C5 /* SOAP12Reasontext.m */, + C64AC2AF64F84E02FB32E63FE4241683 /* SOAP12Subcode.h */, + 040B1C87CFA5083D92259ADC456C1CB7 /* SOAP12Subcode.m */, + 53C4E8CF7470A7ECC205F50CE312F67B /* SOAP12SupportedEnvType.h */, + CAD9578D60357F0F29413DDFBBAF6C7E /* SOAP12SupportedEnvType.m */, + 1FE12FFDA530FF3488C11F9B8D176B30 /* SOAP12UpgradeType.h */, + 0A10C682C58ECEBF06CDB1A4456190BD /* SOAP12UpgradeType.m */, ); - path = AeroGearHttp; + name = Soap; sourceTree = ""; }; - E9A70ED2AD89F57E3C04E750457BF475 /* BSImagePicker */ = { + C5012CD32290A8A0FBC44384FCB5399B /* GoogleInterchangeUtilities */ = { isa = PBXGroup; children = ( - 1B2C68E220839E29E6A84EBF102579FF /* AlbumCell.swift */, - BE89C747E695A6E4A2EA0E44966C2F7A /* AlbumsViewController.swift */, - D80E1C76A1D754C95364D1348D4C126D /* AlbumTableViewDataSource.swift */, - A9142058C7DCDCDF7FDA0BE52E8088C1 /* AlbumTitleView.swift */, - 1DEE2A1DC3205A63F646221427149EBC /* BSImagePickerSettings.swift */, - 5BEBBBF889045CD3EC3B7CDA99BC6C5C /* BSImagePickerViewController.swift */, - 4F48974850CDE3FAA87DE439C405E05D /* CameraCell.swift */, - 7C1B1BEC31288186EE8561AA7F71966C /* CameraCollectionViewDataSource.swift */, - DE82249BC48423C663A690EFFF728AA0 /* ComposedCollectionViewDataSource.swift */, - 012FC612A0C3FCDAB9DA9A4656CA3831 /* NSIndexSet+NSIndexPath.swift */, - 7AE0BBD7A0874B2672F5EC0AF4575B96 /* PhotoCell.swift */, - 487DE7F49F11B7D2AC55EA1944166AAF /* PhotoCollectionViewDataSource.swift */, - BB0BA77DCD3D63BB0322E2C78E4B8CA8 /* PhotosViewController.swift */, - FD9887BB7AC33622204D53639F7A1E17 /* PreviewViewController.swift */, - 58D9D0DA1ACDA3CDC1B76D9B740A1879 /* SelectionView.swift */, - 86C571A7C6CCB47DE0E45FFB6EBAFDAE /* Settings.swift */, - AD7F5C2E34CDB1EC74E0074099A8FF35 /* UIButton+NoAnimation.swift */, - 962CFAA54B4E9B6B2FAF786E86978FA7 /* UIViewController+BSImagePicker.swift */, - E3CE70F7EC79F8127B634681942B5E63 /* ZoomAnimator.swift */, - B97741E982BC51B89EDB5E7EF1230915 /* Resources */, - E3E2E316480FD05ECD4A96928D606694 /* Support Files */, + 06250DED04F635C8DA79B008E433DDD0 /* Frameworks */, + ); + path = GoogleInterchangeUtilities; + sourceTree = ""; + }; + C75FF9919E4C65DA42571A014D169867 /* Resources */ = { + isa = PBXGroup; + children = ( + 8DCECD85DA19D09B055B6CD7D8E35576 /* add_photo.png */, + C6B46653AB8FD4971EEE917C82A106DD /* add_photo@2x.png */, + BB38ED156886CB26B74967F0C4F9C319 /* add_photo@3x.png */, + F3A7188D7281E637DF8E97E65D90A844 /* Albums.storyboard */, + D5A2446AA7887850C1169F52EE23F6D5 /* AlbumTitleView.xib */, + FAFCB07EA7D4A1B07613DCEDC87F22FA /* arrow_down@1x.png */, + 9D6992FC69DF59B52E07277E48745B26 /* arrow_down@2x.png */, + F681007FF47215BEC0AA7E78A76430BC /* arrow_down@3x.png */, + 70F457F1438C91B35D050C98740288F3 /* CameraCell.xib */, + 9034582F1E5055076AD18B3B73A91B3F /* PhotoCell.xib */, + ); + name = Resources; + sourceTree = ""; + }; + CD12811FF0D4739F5E03D6ADE51443A8 /* FBSDKLoginKit */ = { + isa = PBXGroup; + children = ( + 23774AA865667FB41934D5B732037AB9 /* _FBSDKLoginRecoveryAttempter.h */, + 85710F2EA4587DF63AB8AF807AABA0D9 /* _FBSDKLoginRecoveryAttempter.m */, + F3842FC1C68E33505984100066E7A3DD /* FBSDKLoginButton.h */, + C6CC44BF3488C2EBE101350D5C0327C5 /* FBSDKLoginButton.m */, + E0FC3A9DFF5D282B919350D08CA64D28 /* FBSDKLoginCompletion.h */, + C035D07B1CE0ED5D0B63A0B5AA350523 /* FBSDKLoginCompletion.m */, + 16B2704B24E0E5F19E35200C55FEBDF3 /* FBSDKLoginCompletion+Internal.h */, + CE5D8E8AC711AD1657B41F814CF1F82E /* FBSDKLoginConstants.h */, + CBFA5A620C46C051E6F87C8B7CFF5BF9 /* FBSDKLoginConstants.m */, + E580C8330D96978E9075A673270918C4 /* FBSDKLoginError.h */, + F182DC4D01A6F4D337DDE7CAA80E8879 /* FBSDKLoginError.m */, + 6D3F760E392AA44CFC261B6AD790A0D5 /* FBSDKLoginKit.h */, + 50FADBB02B12E0D145E0C472ABC70E5F /* FBSDKLoginKit+Internal.h */, + C58868F6EFAF5E600300FA7D336D544D /* FBSDKLoginManager.h */, + 8E656711F617BB7DBCD7C70BDFEC8A85 /* FBSDKLoginManager.m */, + 12C8B4D86273676E4E854315C92CC366 /* FBSDKLoginManager+Internal.h */, + 0FA138DE081CDD324D5B069BC604820B /* FBSDKLoginManagerLogger.h */, + 8440EBD3104FBD8FFDE088073125AFE0 /* FBSDKLoginManagerLogger.m */, + FB07DEFFE137B3AABE7C362797093718 /* FBSDKLoginManagerLoginResult.h */, + 351258D9C6911A688EA99DA405AA95BB /* FBSDKLoginManagerLoginResult.m */, + EC778C88065DFE2000487B345F672483 /* FBSDKLoginManagerLoginResult+Internal.h */, + 3CD3183F52CE592128325219D88BC80E /* FBSDKLoginTooltipView.h */, + F490B7DC1305E9A66122A47F3CB85757 /* FBSDKLoginTooltipView.m */, + B9FDA1A8DDB91255E08458CC4E262BFA /* FBSDKLoginUtility.h */, + 9A4641E3199B72C05B4D415AAFE43ABB /* FBSDKLoginUtility.m */, + 713D82839468147062E384DC624DF98E /* FBSDKTooltipView.h */, + E7B4C0E1CFE93A43E1381CAEC314B57D /* FBSDKTooltipView.m */, + 1B99BFACC14E51088F7C4673A3490056 /* Support Files */, + ); + path = FBSDKLoginKit; + sourceTree = ""; + }; + CD5F72B5B94535EA80600957FFDD7732 /* WebService */ = { + isa = PBXGroup; + children = ( + 00F2D185A2B217B695F3DB73006C1BF7 /* PicoSOAPClient.h */, + 8EC593BF6CC7AAD5D815612BE37B2D6D /* PicoSOAPClient.m */, + DBB0BEA4A4B2EAFB0CCBBEF0095F471C /* PicoSOAPRequestOperation.h */, + DF7BF92D087D22B6914FD55420F90DC0 /* PicoSOAPRequestOperation.m */, + 98B5EABB13CD2DD29B6C5BAF939FACCD /* PicoXMLClient.h */, + BA479F4FE94277EA3120D5F7E1B990FE /* PicoXMLClient.m */, + 3061C2192D37EEAC3A9D7892087979E1 /* PicoXMLRequestOperation.h */, + 37A95F35F48B7A9D92D4BAA3ABA71E42 /* PicoXMLRequestOperation.m */, + ); + name = WebService; + sourceTree = ""; + }; + D16F921B0246A29962FA9C0CDFC4C068 /* Resources */ = { + isa = PBXGroup; + children = ( + D8B856751B06BA4344E29899ADF27FCE /* TYMActivityIndicatorView.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + D4E04F369E4488E1D0C0A0C574DD0622 /* NSURLConnection */ = { + isa = PBXGroup; + children = ( + 1B87BEC3578B141498AA5BF02A884A9B /* AFHTTPRequestOperation.h */, + 6C20915E828DAB39A928197ADDE81CD5 /* AFHTTPRequestOperation.m */, + E3A98E3C19B2AD7BA05839E94694A968 /* AFHTTPRequestOperationManager.h */, + 72539655BD88854832A7A61DE5DA2076 /* AFHTTPRequestOperationManager.m */, + EA754B3A028704735298B9BF19A39296 /* AFURLConnectionOperation.h */, + A54F4EC5B23C73A9818BD80F36A19287 /* AFURLConnectionOperation.m */, + ); + name = NSURLConnection; + sourceTree = ""; + }; + D6A8A620CA8D68051B831608847A6D73 /* FBSDKShareKit */ = { + isa = PBXGroup; + children = ( + 222786A8195A4F04A0E8FAD833693FAE /* FBSDKAppGroupAddDialog.h */, + 60CA845C2D440E3DE8D118AB6EAA2B9F /* FBSDKAppGroupAddDialog.m */, + 71B3955871C5EB62A7901AC3695B4805 /* FBSDKAppGroupContent.h */, + 34947BC2056A1C61E666A1AAEFBF09EA /* FBSDKAppGroupContent.m */, + 49ABEB10FAB660E5D89469161487A505 /* FBSDKAppGroupJoinDialog.h */, + 8EC5DA418AF6E726D934E346D01837AD /* FBSDKAppGroupJoinDialog.m */, + 4B2ED7E70F73B3C1767C61CB8848FE16 /* FBSDKAppInviteContent.h */, + B8DC3995639C217520E3464C61FCACE9 /* FBSDKAppInviteContent.m */, + 330FEF1100FFC4446231D88FA09EF1A8 /* FBSDKAppInviteDialog.h */, + 08868D332E9A307BCDD76B67933CD4F3 /* FBSDKAppInviteDialog.m */, + A24055E115FEA2D7C81055FDB1E885FE /* FBSDKCheckmarkIcon.h */, + F39AA9E920379DBB3184A314F5C45AB4 /* FBSDKCheckmarkIcon.m */, + 99C8F74DF0DFBD8B226B4F6E48960871 /* FBSDKGameRequestContent.h */, + BDC71964908DC3CC914637F79EA96CF9 /* FBSDKGameRequestContent.m */, + D0E24FA3C7957B4CBDFB2470C0A0AF62 /* FBSDKGameRequestDialog.h */, + 8083E7364020A68A66B966B84E0F6EE8 /* FBSDKGameRequestDialog.m */, + 01CEEAE2517300FA734CB255C0D037B2 /* FBSDKGameRequestFrictionlessRecipientCache.h */, + 992577582CDA1F836F3DE4A99AA4B357 /* FBSDKGameRequestFrictionlessRecipientCache.m */, + 81BD42E8BA677F5A489C3108E0C0838D /* FBSDKHashtag.h */, + 691A4C04F98345445788E4C08002C21D /* FBSDKHashtag.m */, + AE953CCFE9328E35F6ABC8000A3F5A27 /* FBSDKLikeActionController.h */, + D5B3029BCD5B7B247B673665A938E523 /* FBSDKLikeActionController.m */, + 8E4FD839F822DC10E214ECDB29D8728A /* FBSDKLikeActionControllerCache.h */, + 1412E8DACE8DE3F85C8D36EF981DE70E /* FBSDKLikeActionControllerCache.m */, + BF21317F4F66C9CD4DA546CAC8C7EE0A /* FBSDKLikeBoxBorderView.h */, + A818209969772B5723B73894950CC419 /* FBSDKLikeBoxBorderView.m */, + 322547E7E04FA5908825574BBFE285B2 /* FBSDKLikeBoxView.h */, + 72442121717D1628561BB98E53FB727C /* FBSDKLikeBoxView.m */, + C6A0A86C95239E50BA9957EAFC9A0189 /* FBSDKLikeButton.h */, + 01D65C9D849C0D378B55D3405227EA75 /* FBSDKLikeButton.m */, + BDD0E71A21297C08D0DFD37986B541A1 /* FBSDKLikeButton+Internal.h */, + 8EB238066DCCE7713E1B30B8DAB5B9FA /* FBSDKLikeButtonPopWAV.h */, + 4D65B31F5D7FE4EA3E9E19E69C68C7EB /* FBSDKLikeButtonPopWAV.m */, + D27DCF962F745B174BD504543C4C801E /* FBSDKLikeControl.h */, + 38EDA3D1F656F3D3694F14675525A11C /* FBSDKLikeControl.m */, + 891545B8A3CE2232DC8B5BA5483072CA /* FBSDKLikeControl+Internal.h */, + 1E5E83893196A501BFFD8CBA641D8166 /* FBSDKLikeDialog.h */, + 360F8AB5707BC9F13F682FB8D7E43621 /* FBSDKLikeDialog.m */, + FD589BC85EFE1E870864DBE31214F300 /* FBSDKLikeObjectType.h */, + 8122BB4305E407D61447DB744AFF6016 /* FBSDKLikeObjectType.m */, + FA1A23D9DB8064D490EB64DF17E1702C /* FBSDKLiking.h */, + 3181FD32AE9D274A1339FEDFED53A8D6 /* FBSDKMessageDialog.h */, + ADB0920F0C6F8F66D375388494BEE0CB /* FBSDKMessageDialog.m */, + 59593E4991A2A6E7B5CFE638F58BD27B /* FBSDKMessengerIcon.h */, + 553891046D53593D9944607098F2E819 /* FBSDKMessengerIcon.m */, + 789CF77B11315E865591B1C8716C5185 /* FBSDKSendButton.h */, + 3DED2A540227FA95BE9A2F4ACB84E9F7 /* FBSDKSendButton.m */, + 96256A10B1A5A6BC4A03A29715BCDF2B /* FBSDKShareAPI.h */, + AAFDFDDE872EA0BB05E999E32C04383A /* FBSDKShareAPI.m */, + E6235927DC181F87310675A4E49BC8D3 /* FBSDKShareButton.h */, + 8475EDFA88678CDE8BB5836A276C57E7 /* FBSDKShareButton.m */, + 47381F3BEE25E40C0B809697A8CBF6BA /* FBSDKShareConstants.h */, + 201D4DBC404971D6752E70BDEF1D72D0 /* FBSDKShareConstants.m */, + 0701C830C629BCA34DE60D87911D4CDC /* FBSDKShareDefines.h */, + 94166A645490985426F053FBD0EB0F0F /* FBSDKShareDialog.h */, + 66EACF8725C6388E98F1AE858899605C /* FBSDKShareDialog.m */, + FF20245B99135141FEAED1052DD1423E /* FBSDKShareDialogMode.h */, + 8F441FA0CFED6EBB0705B175EA032F31 /* FBSDKShareDialogMode.m */, + B9B2FF3B208D34C4209C13F5364708EE /* FBSDKShareError.h */, + AB48598B489DA1DEA9F0A9DE6428E970 /* FBSDKShareError.m */, + 283A5783856350F1C4A7C5B513AFDC55 /* FBSDKShareKit.h */, + 574CE8185F6E56277CBE7548C47970C4 /* FBSDKShareKit+Internal.h */, + 8B7E8B30154CF1205169F8B954F620EF /* FBSDKShareLinkContent.h */, + 9A1F991094F696B84A482E0D877166D8 /* FBSDKShareLinkContent.m */, + 5844E122C6EAEB6A480CDE62D846448F /* FBSDKShareLinkContent+Internal.h */, + D9C69E366BEBF527B7F1AF310931A8A7 /* FBSDKShareMediaContent.h */, + 2C7FD5B09A112AD2C2CBCAF3A88785B4 /* FBSDKShareMediaContent.m */, + 9B7389C2E951B60B7DC2FC736BCE2CA4 /* FBSDKShareOpenGraphAction.h */, + 36CFB57F844C32DC09E88FD38B91FE79 /* FBSDKShareOpenGraphAction.m */, + 1A79D3619A7BB66A35F7D3F56AE85E00 /* FBSDKShareOpenGraphContent.h */, + 1045BDCE4D5F66B2ACDA03A29A39367C /* FBSDKShareOpenGraphContent.m */, + 36D7CC0B09DE9E90BFE79B8D14D0BFBE /* FBSDKShareOpenGraphObject.h */, + CF1F13EF21629FB7D6F3FEB9EC65C7BB /* FBSDKShareOpenGraphObject.m */, + ABF9CCA29758F5A351EA141EA10084A4 /* FBSDKShareOpenGraphValueContainer.h */, + 0BBD41CC7E7BD8BBFB53C61E172181F5 /* FBSDKShareOpenGraphValueContainer.m */, + 2BA9CC7A480C394DEC76D2D6110B7522 /* FBSDKShareOpenGraphValueContainer+Internal.h */, + 96CC1650BF4FB3366E452A5366A50EC6 /* FBSDKSharePhoto.h */, + 001B13036A37B063BB1CAD904F029CD1 /* FBSDKSharePhoto.m */, + 7F8FEB850D665C585E9AE04C81F77D59 /* FBSDKSharePhotoContent.h */, + CADFC76B44850C7946B50E9820B70ACC /* FBSDKSharePhotoContent.m */, + 21D1ADDC1224132590604BCD92B1F976 /* FBSDKShareUtility.h */, + F19678FFEA615255AD53723B79938D08 /* FBSDKShareUtility.m */, + BC85A65D48AFFCEB54A64A125C296A2D /* FBSDKShareVideo.h */, + B8936B9D91297AD2089196C777FD7F3C /* FBSDKShareVideo.m */, + 225AB771EBFA572B49A7B8B7974B8856 /* FBSDKShareVideoContent.h */, + 24F026AA9D124A3205922BA305780C7F /* FBSDKShareVideoContent.m */, + A6A7313EE0477F6F6B8E4BD936890B10 /* FBSDKSharing.h */, + 41D087E9CA4CBB0BACBD263894534508 /* FBSDKSharingButton.h */, + 60B51A6BF0322300A5842DABA3C1397E /* FBSDKSharingContent.h */, + 1D3759E9DFBEB8BE48F07D1736D3A314 /* FBSDKVideoUploader.h */, + 2DEF3170C8B804A5D1EA200137D7BD46 /* FBSDKVideoUploader.m */, + 10880224917000A397C0139CFE786D73 /* Support Files */, + ); + path = FBSDKShareKit; + sourceTree = ""; + }; + DA5970DD623968051FEC907FC4874CDE /* Tasks */ = { + isa = PBXGroup; + children = ( + 82052588172AD4C414701FA37E46E0C9 /* BFCancellationToken.h */, + B8CBA7AA79683731F8CC494DFD1E0B15 /* BFCancellationToken.m */, + CCEDCA4188B6DAC9C404C7A3AF525E01 /* BFCancellationTokenRegistration.h */, + 447CD894B8CED3EE972C5B1699CAD835 /* BFCancellationTokenRegistration.m */, + 8E8AD74661343DEB3D6E25E4B6B39FD0 /* BFCancellationTokenSource.h */, + 9B262302BC70CCCE70E413574FCB85D6 /* BFCancellationTokenSource.m */, + 1824A2DFE2858FDD3F1B2E5FBA9D9289 /* BFExecutor.h */, + B7E4C2544A661BB83AE834122300425D /* BFExecutor.m */, + 5BE46316993C53B5E6274DA9F4A6E104 /* BFTask.h */, + 1D7806C43D330BBDC43982CBBA7E6DE0 /* BFTask.m */, + 2C1DE87C8F229D16BAFF51F1CD2388BD /* BFTask+Exceptions.h */, + C2C43B1166A56BC3F2EBB983B658C150 /* BFTask+Exceptions.m */, + 00EEBF80693871C1EF789A2413AB207F /* BFTaskCompletionSource.h */, + B90EFF130C0B2546D491AA3DC22E5A4F /* BFTaskCompletionSource.m */, + EF0C32B9766C24D6965E5D6E61970D76 /* Bolts.h */, + ADC68F3EB4B5F25DA03F1F7A6E835F72 /* Bolts.m */, + ); + name = Tasks; + sourceTree = ""; + }; + DBB5AB52EB5AB5863A223C3ED40A1FCE /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3CEA019296E1F57B8381B0293C6C762C /* FirebaseStorage.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + DE98C57CA09194308E9267C719F821E1 /* OAuthSwift */ = { + isa = PBXGroup; + children = ( + 7FEEE4B1E8958126C54B40ACA56D0169 /* Dictionary+OAuthSwift.swift */, + B3EBCD45D75CF51861CE00CA24401018 /* HMAC.swift */, + EE6BEB51F81397963E78C4D03F07E720 /* Int+OAuthSwift.swift */, + 749F2D3A27A296B02B79C38664928E39 /* NSData+OAuthSwift.swift */, + 5FCCD05992C6EB92262237C9B9C5516D /* NSDate+OAuthSwift.swift */, + EF32961903C9ADDD05A8E3C57EB657C4 /* NSURL+OAuthSwift.swift */, + C02F1EB2C069E2DEC3DB773E19B3525C /* OAuth1Swift.swift */, + 509467BE41DEAA3A3523C77C1491C0E0 /* OAuth2Swift.swift */, + D2E71750D600AE44A9F739893F2C1C03 /* OAuthSwift.swift */, + E648B93ACAABAB4D3D74E457174B1977 /* OAuthSwiftClient.swift */, + AAF07E693A6AF15C0FFA931C466133C6 /* OAuthSwiftCredential.swift */, + 1931A1D6E3520BBCB7812C0122509AE3 /* OAuthSwiftHTTPRequest.swift */, + 5F6BD0DADEFB7B7ECF43FFE5C22BC489 /* OAuthSwiftMultipartData.swift */, + 731A2EE1C4D3A53E178B7C8321B6CCC6 /* OAuthSwiftURLHandlerType.swift */, + E3A304153BBB0D6E6BEDD37B54B54005 /* OAuthWebViewController.swift */, + BA132A006301A8B6177F85F17BADF660 /* SHA1.swift */, + 193CF8FE6A437E2F5A48AC8BB33A1AC2 /* String+OAuthSwift.swift */, + 018B6A2A607AA9D54157177041BD539F /* UIApplication+OAuthSwift.swift */, + 3E9D12AF46145888EE10F157BC6C892B /* Utils.swift */, + 7D4DAB67B1A87579C6B4484ED49F9D01 /* Support Files */, + ); + path = OAuthSwift; + sourceTree = ""; + }; + DF2B09E95A43FA0B129F790BD8B84C6F /* GDataXML-HTML */ = { + isa = PBXGroup; + children = ( + 8A77BD1D2225DD7010930169495194FF /* GDataXMLNode.h */, + 1EA1AFF043613265D9F78F0459EF3FAF /* GDataXMLNode.m */, + 1D6A40A0BC6B51AD3D0D0C1BE0040770 /* Support Files */, + ); + path = "GDataXML-HTML"; + sourceTree = ""; + }; + E2F3D2014BFE11EEC8DED125F5152201 /* Alamofire */ = { + isa = PBXGroup; + children = ( + 96B851599575E2E0F9CD816FCED76611 /* Alamofire.swift */, + 2382C64C41BB3FA220C1C7FE22B3002D /* Download.swift */, + AEAE931D349272ECB605283D3BD15A6C /* Error.swift */, + 60EB7350A9933A50C654060F05888904 /* Manager.swift */, + E4A27BC37602D4069AC6CDBF98BCEEF7 /* MultipartFormData.swift */, + B8C0286C2EAD805B0FF93C26544A7A7B /* NetworkReachabilityManager.swift */, + 2DAAED79E3269FC96BDBA2AFF6409347 /* Notifications.swift */, + 0C3F6CD242A3136EFA8BD6714E7B2FAB /* ParameterEncoding.swift */, + 710687F25B543757A7FB0983E5E2B292 /* Request.swift */, + 08B2D6B0395EC4DD61DFBE193203CD69 /* Response.swift */, + D3AEB23FDFCB04745EE62B3C778A990F /* ResponseSerialization.swift */, + 34FCB6A8D2BE9277C60E9AB560757B66 /* Result.swift */, + 1FF1E518119DEB300F48FD1D92CC0554 /* ServerTrustPolicy.swift */, + 207394D180556A2249071C99776304B7 /* Stream.swift */, + B087091BEB52E26D24E7CCA32EADB036 /* Timeline.swift */, + 8FBC6CF60E2642DC57BB0CB06C13892A /* Upload.swift */, + 8EF31BE827F639B0B551DEEBCC1D8C36 /* Validation.swift */, + 8CF5D2D1C62E3451DD6A1A0A9064EFFA /* Support Files */, + ); + path = Alamofire; + sourceTree = ""; + }; + E4BEF34CCF52F2D2F0D79AC24DF02FCE /* FirebaseAnalytics */ = { + isa = PBXGroup; + children = ( + 776CD2191CB3005BC7A8E582D358A458 /* Frameworks */, + ); + path = FirebaseAnalytics; + sourceTree = ""; + }; + E6751DF9ABC8EA0FA73F6427185A49B4 /* Pods */ = { + isa = PBXGroup; + children = ( + 94D0D75E241FC571F9DE0E99EF36A5C9 /* AeroGearHttp */, + 58314BCAB815E636F7C2864283F9E50F /* AeroGearOAuth2 */, + EB68BA79257230588B3413FD14D1E247 /* AFNetworking */, + E2F3D2014BFE11EEC8DED125F5152201 /* Alamofire */, + 38B14ED43BD6D0AAEB2529C27560FA7C /* Alamofire-SwiftyJSON */, + F26A07FB588868A7F90BC3451A86FA31 /* Bolts */, + 53801B144A5910B9D30F6538B6971AEE /* BSGridCollectionViewLayout */, + E7F5D8C87C9B1A12AAE88A1B858304F0 /* BSImagePicker */, + 6C800FD737A01A9CD39409EE0C7C3022 /* FBSDKCoreKit */, + CD12811FF0D4739F5E03D6ADE51443A8 /* FBSDKLoginKit */, + D6A8A620CA8D68051B831608847A6D73 /* FBSDKShareKit */, + 3130EACED06B2DA94D6658C72D9AFBF5 /* Firebase */, + E4BEF34CCF52F2D2F0D79AC24DF02FCE /* FirebaseAnalytics */, + 1FC8E19B7F609038767B05EE52DC5F77 /* FirebaseAuth */, + 5C5B29534B72DC245E0CE70A500A1AC3 /* FirebaseDatabase */, + 2904DBF68E3054C5FF23C6EB91346A76 /* FirebaseInstanceID */, + 9A8CC7EBB06D87D0F14BCB6381CC71F7 /* FirebaseStorage */, + DF2B09E95A43FA0B129F790BD8B84C6F /* GDataXML-HTML */, + C5012CD32290A8A0FBC44384FCB5399B /* GoogleInterchangeUtilities */, + 4DCDC6D8F8089E9964010766B1E10983 /* GoogleNetworkingUtilities */, + 96140128678E2B0F834685CC7CA563A2 /* GoogleParsingUtilities */, + 2D3670C0EDBA1270E5F9FC390F437924 /* GoogleSymbolUtilities */, + FAA3E0768D459A916532C3155C6091B9 /* GoogleUtilities */, + FBEAEF710841310DF5DFA940451BA159 /* Locksmith */, + DE98C57CA09194308E9267C719F821E1 /* OAuthSwift */, + 03569D0851BF238CF1B2AF66021D47E1 /* PicoKit */, + 30FF427F4AB5E759B6FBAC8B31489259 /* SwiftyJSON */, + 388C149CC0F510097C3A9E70702FFCB0 /* SWRevealViewController */, + 8A802E6F3863DA28C3100AA8DB6E6FC2 /* TYMActivityIndicatorView */, + 11CC09F2BA26EAAE03304D5E55EAB74C /* UIImageViewModeScaleAspect */, + ); + name = Pods; + sourceTree = ""; + }; + E7F5D8C87C9B1A12AAE88A1B858304F0 /* BSImagePicker */ = { + isa = PBXGroup; + children = ( + A942D1B15C6CBC802EBDF434543CDDD9 /* AlbumCell.swift */, + 4331B18A8846B65FD09B3EAD8BCD71E3 /* AlbumsViewController.swift */, + FD78F5FCB8D4F937BFC951D5EAA34932 /* AlbumTableViewDataSource.swift */, + FDA6ADF9D4B80B839291C00D64FFD91D /* AlbumTitleView.swift */, + BEC3B1B9BBDD0062CE508687146F41C7 /* BSImagePickerSettings.swift */, + D8934360081AC8349300F70495B28FCF /* BSImagePickerViewController.swift */, + 820B0DB39D19E191C1E0FDD1EF8E3DA7 /* CameraCell.swift */, + D34A7B1EBB475A43499DD37B00C1BF54 /* CameraCollectionViewDataSource.swift */, + CEC8034F2C5D296D6EE86EE685AAEEA3 /* ComposedCollectionViewDataSource.swift */, + 7CC0B0503711DC6ECFCF4ED191D053CB /* NSIndexSet+NSIndexPath.swift */, + 1E710A0B01CE73B1EBF047D08A33B860 /* PhotoCell.swift */, + 9190E4A2144304CA16736182E069C70E /* PhotoCollectionViewDataSource.swift */, + A4387D3414EB8B0BF8D4C38C55C5A208 /* PhotosViewController.swift */, + 3C6DF59CA85E6A0D7A667C8D47C4C062 /* PreviewViewController.swift */, + 224EF1E0BE2877039FB4B94A04308D90 /* SelectionView.swift */, + 95B225CE142617A39390D406EC015622 /* Settings.swift */, + FF5591981F324B3C92329972D4891714 /* UIButton+NoAnimation.swift */, + F7369FDF8303C18BFC01D8B77285FB12 /* UIViewController+BSImagePicker.swift */, + DD6F86FA5BB0599052D48F1E63F5A771 /* ZoomAnimator.swift */, + C75FF9919E4C65DA42571A014D169867 /* Resources */, + C3B96AF16E38AD81EF73CC91AF9DCBAE /* Support Files */, ); path = BSImagePicker; sourceTree = ""; }; + EB68BA79257230588B3413FD14D1E247 /* AFNetworking */ = { + isa = PBXGroup; + children = ( + 8A1448D48335AAE4B529604752B89B8A /* AFNetworking.h */, + D4E04F369E4488E1D0C0A0C574DD0622 /* NSURLConnection */, + 5094B7BD59371C45A78986B529429691 /* NSURLSession */, + 0B9EE37398077E3861CFBDA7883D7682 /* Reachability */, + A129399FAF4A041183FEF27917E1D647 /* Security */, + EE71717FE6FABCC8AF3FA5EBBFAFDC1A /* Serialization */, + EE59FFB05A64DE0F534153735DE8665A /* Support Files */, + 04A46DDF9F627861B1E5812FDE1F9EF6 /* UIKit */, + ); + path = AFNetworking; + sourceTree = ""; + }; + EE59FFB05A64DE0F534153735DE8665A /* Support Files */ = { + isa = PBXGroup; + children = ( + 375FB692C9C403AAA856F10F1D203454 /* AFNetworking.modulemap */, + D89781AF8258FFA5A3ED97890F4AC7FE /* AFNetworking.xcconfig */, + 13BCCE81892E6B9456CBAA4E9B012EF9 /* AFNetworking-dummy.m */, + 024ED946C43252B6F56278263E703AA9 /* AFNetworking-prefix.pch */, + DCAC93332ACD8FCCB95863696523B8F3 /* AFNetworking-umbrella.h */, + 5B15B41E934F97F43A53A8C35E8B19B9 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/AFNetworking"; + sourceTree = ""; + }; + EE71717FE6FABCC8AF3FA5EBBFAFDC1A /* Serialization */ = { + isa = PBXGroup; + children = ( + 746045D0BC534013A455BF59C15D9F10 /* AFURLRequestSerialization.h */, + 147CE037744629278068612DD0F635D0 /* AFURLRequestSerialization.m */, + 6C28443FE1B08EC27CB75A33D9C094B7 /* AFURLResponseSerialization.h */, + 4FA60510D1A25F56E24AF24FC36B3F9E /* AFURLResponseSerialization.m */, + ); + name = Serialization; + sourceTree = ""; + }; + F26A07FB588868A7F90BC3451A86FA31 /* Bolts */ = { + isa = PBXGroup; + children = ( + 56BD5A402E89F2C2BB4BF1B16FC2C40A /* AppLinks */, + 262CEFB8B08E6F446622FED9944F3F3B /* Support Files */, + DA5970DD623968051FEC907FC4874CDE /* Tasks */, + ); + path = Bolts; + sourceTree = ""; + }; F2A9C0177A485A9E6672EFB3141567E7 /* Pods-Vendoo-VendooTests */ = { isa = PBXGroup; children = ( @@ -3487,6 +3467,20 @@ path = "Target Support Files/Pods-Vendoo-VendooTests"; sourceTree = ""; }; + F2DD9D0175AF302E2127D0AA89569FFC /* Support Files */ = { + isa = PBXGroup; + children = ( + E9A416C84991F81D28A1B85EDAD0B598 /* Info.plist */, + A89AC216A27F8EE04857357E35520D6B /* SWRevealViewController.modulemap */, + 39981C28DFE2B2F33789DEE588B41716 /* SWRevealViewController.xcconfig */, + C1D7C9953DE734B726C69D64122D8D5F /* SWRevealViewController-dummy.m */, + 199F09A6639EBEA3BFB9E3184AE9FDCC /* SWRevealViewController-prefix.pch */, + 4E2D0A6D8828F124981A51813C767D91 /* SWRevealViewController-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/SWRevealViewController"; + sourceTree = ""; + }; F37DEDD58D36362EC24A2D9E23A2052C /* Pods-Vendoo-VendooUITests */ = { isa = PBXGroup; children = ( @@ -3515,13 +3509,36 @@ name = "Targets Support Files"; sourceTree = ""; }; - FB95D8909D87C076DC9CABBD0833E70D /* XMLWriter */ = { + FAA3E0768D459A916532C3155C6091B9 /* GoogleUtilities */ = { isa = PBXGroup; children = ( - 6F43B1645F9281E3893D341A6889B613 /* XMLWriter.h */, - DAB1B89813CDD043CC410F5DFE0A6452 /* XMLWriter.m */, + 986DB2697C8AE98873B49C8F3533B48D /* Frameworks */, ); - name = XMLWriter; + path = GoogleUtilities; + sourceTree = ""; + }; + FBEAEF710841310DF5DFA940451BA159 /* Locksmith */ = { + isa = PBXGroup; + children = ( + D2FD166BBAE2AAEC3D6DD4E6AD075E58 /* Dictionary_Initializers.swift */, + 51FAC9A6B889BC3DE78E109AAC5CD9CE /* Locksmith.h */, + 30DE14E146C77F25CB56ABC9A3269988 /* Locksmith.swift */, + CD5FC279D566BA86BBC95DA7DCDE7E3A /* LocksmithAccessibleOption.swift */, + 2427B6BCA76A9BCB44CB5BA6D9D8DCD4 /* LocksmithError.swift */, + 6423F7738ED7B01D28D8518ADE03D6EF /* LocksmithInternetAuthenticationType.swift */, + D1B465330778E216B708731B59E7099C /* LocksmithInternetProtocol.swift */, + 02A34F20776D0C30D28831194C07A2FD /* LocksmithSecurityClass.swift */, + C2F58F30E03681EDD63FB6C403051246 /* Support Files */, + ); + path = Locksmith; + sourceTree = ""; + }; + FC5AAE7AD7120CEE6A02C9EA1DDB6AF6 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3CFA8FE986D7C4167B0F4481E4A3EB91 /* FirebaseAuth.framework */, + ); + name = Frameworks; sourceTree = ""; }; /* End PBXGroup section */ @@ -3584,103 +3601,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4F0AD5F6BD9D9DCE821C6CBEBD2CB361 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 2F9492A82F7B9F44D6452E5A1DFB986E /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */, - 537E710078694948A4693E42674ED1B9 /* FBSDKAccessToken.h in Headers */, - E9EEC6C8F1D68B18137981BE5EE2CF36 /* FBSDKAccessTokenCache.h in Headers */, - A28B68F8AF4A8ED3F8DEDF23CFCA8FEC /* FBSDKAccessTokenCacheV3.h in Headers */, - 15157568822DD94ED8A8F3A24BCF47C0 /* FBSDKAccessTokenCacheV3_17.h in Headers */, - B713790B233CC21726C5E02E7DA44516 /* FBSDKAccessTokenCacheV3_21.h in Headers */, - 4091FBB9624025711B56808DA069BB99 /* FBSDKAccessTokenCacheV4.h in Headers */, - 0F6FD8711C8484D95F5B586274678491 /* FBSDKAccessTokenCaching.h in Headers */, - E6D504A4DEDA3BB58E7C6493EE96AFD9 /* FBSDKAppEvents+Internal.h in Headers */, - 2E8C5651C2D34FAD23D4395363E80A3F /* FBSDKAppEvents.h in Headers */, - DF89CBE6455EE673C13371ABD62DBC51 /* FBSDKAppEventsDeviceInfo.h in Headers */, - EFFD6E269F82360F54906FD396256E9C /* FBSDKAppEventsState.h in Headers */, - EB2670466E38D34F603B6BC0313A6742 /* FBSDKAppEventsStateManager.h in Headers */, - 4F3AF2A36297BA61978025EE89C7FE97 /* FBSDKAppEventsUtility.h in Headers */, - CA08081E0B27DF4B55A911DD597BAD73 /* FBSDKApplicationDelegate+Internal.h in Headers */, - 7002E8961D24E86FD580DBAE8ECB8D5E /* FBSDKApplicationDelegate.h in Headers */, - 87FB0D874B72B2C3475F51AB24F61817 /* FBSDKAppLinkResolver.h in Headers */, - 04C3A0DB3D6632E53AF7FE845B45A3CD /* FBSDKAppLinkUtility.h in Headers */, - FBE9ECC4946A8FAF7DB8B42B4D547C1D /* FBSDKAudioResourceLoader.h in Headers */, - 0A8703E4AF0023F131B79866B4B705D4 /* FBSDKBase64.h in Headers */, - FC4C7FA94B9B25828BC94A10E24CC21B /* FBSDKBoltsMeasurementEventListener.h in Headers */, - 0F7824F41301AFB6FAB5725D85BB111A /* FBSDKBridgeAPICrypto.h in Headers */, - E2F415ECE30EBBDF2E791FA0A12ECC29 /* FBSDKBridgeAPIProtocol.h in Headers */, - 928AA17E8C87D9559CEC0F3EFD75EACD /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */, - 2FFADE6D19B6BED1A0650D0CEC6EC9A1 /* FBSDKBridgeAPIProtocolType.h in Headers */, - 0A7D3F6374E8E2B7E8CB9B2D3E83A83A /* FBSDKBridgeAPIProtocolWebV1.h in Headers */, - AB221C6A426CC9274B00DEB45A2A7693 /* FBSDKBridgeAPIProtocolWebV2.h in Headers */, - 6F59181990A639365B6BDCE65407275A /* FBSDKBridgeAPIRequest+Private.h in Headers */, - B1033B9D20ABC4D28DD47AE664FDFDBE /* FBSDKBridgeAPIRequest.h in Headers */, - DA2F3DBB93F7A770AC12AA9769105CE3 /* FBSDKBridgeAPIResponse.h in Headers */, - F133C9F1A15818518D0FB10A4ED0DD09 /* FBSDKButton+Subclass.h in Headers */, - 771AD42E937BEEC7A076A4BF17648EF8 /* FBSDKButton.h in Headers */, - DA62B1DACA061A8DE4B7BE418CE33E5D /* FBSDKCloseIcon.h in Headers */, - 6745F3DFC6CCC37EA42C4930668DA40F /* FBSDKColor.h in Headers */, - 86627AB26AAD2D5D5B60FD98BF9F3BE1 /* FBSDKConstants.h in Headers */, - 6EF01843152A0624110E6E8CAB0BCA51 /* FBSDKContainerViewController.h in Headers */, - D6A93D87E6D9F0596FF0B0FADA862421 /* FBSDKCopying.h in Headers */, - D0379DD1F84E1FA4302325370FC583C9 /* FBSDKCoreKit+Internal.h in Headers */, - 7996B7702DB8A5159CD112BE8CFA5224 /* FBSDKCoreKit-umbrella.h in Headers */, - C682BB7427AE5EF8582DC373EBBBA2E8 /* FBSDKCoreKit.h in Headers */, - 24874650BA474E95829A5FCF9FC7E70E /* FBSDKCrypto.h in Headers */, - 9AE3BB10BC5F5D2AE74A19D30917617A /* FBSDKDialogConfiguration.h in Headers */, - D7A3DDFC81E5F492259FDA6E57748A59 /* FBSDKDynamicFrameworkLoader.h in Headers */, - 7384AFE0F0221D2843EF6451D653C441 /* FBSDKError.h in Headers */, - D1D0521423FC9587DACE99599F3871BF /* FBSDKErrorConfiguration.h in Headers */, - 08C57BA7C4611C12262FD7D63BEE8C1E /* FBSDKErrorRecoveryAttempter.h in Headers */, - FAFAF3B263C62E610796FC8125B073C8 /* FBSDKErrorRecoveryConfiguration.h in Headers */, - 09CA89656321616AB2CF649279B400C1 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */, - ECC1A980B063554D6B4B8B75FCDEB777 /* FBSDKGraphRequest+Internal.h in Headers */, - 4151A1A3483D663770E5AC8E08E89474 /* FBSDKGraphRequest.h in Headers */, - D7E7CC8C8AB8DC9253A661C7374A9F93 /* FBSDKGraphRequestBody.h in Headers */, - 9ED4B168116CB499803EC612E1DB1396 /* FBSDKGraphRequestConnection+Internal.h in Headers */, - 0354AFAE7420F7E18D47C9E19BB5F0AE /* FBSDKGraphRequestConnection.h in Headers */, - ABE45433C4D5440C9B6331AF3C825B52 /* FBSDKGraphRequestDataAttachment.h in Headers */, - EAE5D0F5B70E304DE8E8F3F5B14828B1 /* FBSDKGraphRequestMetadata.h in Headers */, - C52665EDC9F106BD8B2418D97AAEC357 /* FBSDKGraphRequestPiggybackManager.h in Headers */, - 4B42AB3B0147E10869BABB83CC9D1770 /* FBSDKIcon.h in Headers */, - 5EA916E98A026DD4FC5E05EF9B921F0F /* FBSDKInternalUtility.h in Headers */, - 4B4B2B87CA851CEDEDF6AC671EC8D862 /* FBSDKKeychainStore.h in Headers */, - D965808A254FA29240788115D19F782C /* FBSDKKeychainStoreViaBundleID.h in Headers */, - FF0354628483B192A13C84851E9D523F /* FBSDKLogger.h in Headers */, - 8DA408A27B20CFD43FDA70C8FC647AC9 /* FBSDKLogo.h in Headers */, - 89DB4F68F200EACC31577431D7AAB64A /* FBSDKMacros.h in Headers */, - DB83FFC19AAC1D048DD3B89367D5890D /* FBSDKMaleSilhouetteIcon.h in Headers */, - F98D25A874AA92FABCBF4A434A573933 /* FBSDKMath.h in Headers */, - BF9787C62584C694E9263666FD94139F /* FBSDKMonotonicTime.h in Headers */, - FE9045BA12AD90F3D0F121FFAE699AD5 /* FBSDKMutableCopying.h in Headers */, - B0311FBDE031798111EC0E5DB55540BA /* FBSDKOrganicDeeplinkHelper.h in Headers */, - 48D8F32EC0B32EEE9FA0B8F60E447887 /* FBSDKPaymentObserver.h in Headers */, - 932C49EB7BA256473D43C610DA6BF386 /* FBSDKProfile+Internal.h in Headers */, - 156E7E46571EB8762B7507B951FC499B /* FBSDKProfile.h in Headers */, - 2FF1B23AA41F471B163257FEF07E3B95 /* FBSDKProfilePictureView.h in Headers */, - F3959192ABF7A0AE04D1FB636B8A4CE2 /* FBSDKServerConfiguration+Internal.h in Headers */, - E42423F8227FE330F57E6CA7AA468D45 /* FBSDKServerConfiguration.h in Headers */, - 55844A207DAD926A4DAFC046046450B5 /* FBSDKServerConfigurationManager+Internal.h in Headers */, - 29D5072854A624ECD53A502670BE3498 /* FBSDKServerConfigurationManager.h in Headers */, - 7C0A600BF8CCA0567E34D7525B1E3885 /* FBSDKSettings+Internal.h in Headers */, - EF4FD235DD1FA69D7E3F07CE6BBE6A87 /* FBSDKSettings.h in Headers */, - 3823A8BFFA8A36D1F2B1D718A1057719 /* FBSDKSystemAccountStoreAdapter.h in Headers */, - 27475CD6178BFAF6C02F071E7D6B8695 /* FBSDKTestUsersManager.h in Headers */, - C382AD64490D77D61B1A4318A031DC7C /* FBSDKTimeSpentData.h in Headers */, - F86F451F6AA6FB408A6DB5A117CB96BE /* FBSDKTriStateBOOL.h in Headers */, - EA9B123CC873F3B5BE785FDFA96B057F /* FBSDKTypeUtility.h in Headers */, - 36EC0F3B99211C490C358637095E707F /* FBSDKUIUtility.h in Headers */, - A7E04563503B066374A95EDAFD8104DA /* FBSDKURLConnection.h in Headers */, - 1466EF30D00D1177D0DE725B8D61C061 /* FBSDKURLOpening.h in Headers */, - 763D43357E0BE90EA6462FC331E8302F /* FBSDKUtility.h in Headers */, - D902EF709FC83BE17940BEF6CBB7F94C /* FBSDKViewImpressionTracker.h in Headers */, - 59837E92C1E6B0650A77FC8664DF9DA9 /* FBSDKWebDialog.h in Headers */, - 518C27917941491F2434FDE54E13684E /* FBSDKWebDialogView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 56CB78EF78ADF2E03A1B2E479123B689 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -3760,6 +3680,104 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 84AF357549AF770EBB43719BE71FCCA7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E01B6FB3EADDAC7C44EC21B9772970B /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */, + 3B18861D19FC85A3223E026A203F308F /* FBSDKAccessToken.h in Headers */, + 6A37B6504924D65B10568589A7185B11 /* FBSDKAccessTokenCache.h in Headers */, + 9E042750F110357AFDC50C196B95312D /* FBSDKAccessTokenCacheV3.h in Headers */, + C6F4C6BD5EAB253BEECDDFCFF9BF50B1 /* FBSDKAccessTokenCacheV3_17.h in Headers */, + 7811ACFF0D495E36145314F50695E6FB /* FBSDKAccessTokenCacheV3_21.h in Headers */, + FC200A9381A95330335EF014E5C6C189 /* FBSDKAccessTokenCacheV4.h in Headers */, + 8D577F5FA92B50A7BB0443FA1B54DFE8 /* FBSDKAccessTokenCaching.h in Headers */, + 1C761FA7FEBBEC35842CC6962A0D654C /* FBSDKAppEvents+Internal.h in Headers */, + B86D15D17C38ED13C9E92B7A45BF4DC0 /* FBSDKAppEvents.h in Headers */, + 494A29BF9B430E07187F064CD2CA35DC /* FBSDKAppEventsDeviceInfo.h in Headers */, + F70816F8F114A222C2F279FD9CD97067 /* FBSDKAppEventsState.h in Headers */, + 1EEF079E4FF4085AE364315665FB1FBD /* FBSDKAppEventsStateManager.h in Headers */, + 35CDDACB102D8F9429BE489DFD2A7912 /* FBSDKAppEventsUtility.h in Headers */, + 14AD623AB64850B09A59DFA3EA9539A0 /* FBSDKApplicationDelegate+Internal.h in Headers */, + 2473913F9702CFC9D0FF1C8829C45423 /* FBSDKApplicationDelegate.h in Headers */, + DB750A5DECB869C874B984A4DA8ED742 /* FBSDKAppLinkResolver.h in Headers */, + 9EB705A7B645FD8F577485B85740DD5C /* FBSDKAppLinkUtility.h in Headers */, + B06E5A4AFB7F7EB6F77B350300CFA011 /* FBSDKAudioResourceLoader.h in Headers */, + 87B967838FEAC041D4E66F302AD0D45B /* FBSDKBase64.h in Headers */, + 4B82F506FE42EFE13E63A21F1F1CCC01 /* FBSDKBoltsMeasurementEventListener.h in Headers */, + 2673FD9EC0AEA53E3A1E665BE1BF9036 /* FBSDKBridgeAPICrypto.h in Headers */, + 1C65770ACE4BCBF7B6C16A5E1C51263B /* FBSDKBridgeAPIProtocol.h in Headers */, + 3AB4398C33E1A2E5438754250E432050 /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */, + B0DAA7C1965DB77C16D6A593F0A673E0 /* FBSDKBridgeAPIProtocolType.h in Headers */, + 7C3C789C4C4F8688A60A682EC2036D7D /* FBSDKBridgeAPIProtocolWebV1.h in Headers */, + A4B4F91D6EBF8FE964A5BAC7E12B5A3B /* FBSDKBridgeAPIProtocolWebV2.h in Headers */, + AD0899D6ABCF37C9F9D97138417110BE /* FBSDKBridgeAPIRequest+Private.h in Headers */, + 4EB769CCAF8F8E9AA7414A46EC625526 /* FBSDKBridgeAPIRequest.h in Headers */, + 13D6DE08DF985F6094A23EE5D804928A /* FBSDKBridgeAPIResponse.h in Headers */, + DB61D931DBA06BA1C856EF2AC3C45997 /* FBSDKButton+Subclass.h in Headers */, + A947972E2EBE74B9B8A75B9F07817BC8 /* FBSDKButton.h in Headers */, + 992769DF4C822CA5A78904E29E27F5E4 /* FBSDKCloseIcon.h in Headers */, + 15572CA29BED0A8AC7B272204E9B3ACC /* FBSDKColor.h in Headers */, + 62A35225EE3C0267303CF46D18D50044 /* FBSDKConstants.h in Headers */, + 32389B33AA1C99FE12E735C3E88AB2EB /* FBSDKContainerViewController.h in Headers */, + 7A66154FF8B8CAD9887477157E2EE695 /* FBSDKCopying.h in Headers */, + AB28AF04EF21BE2C5DBB9956D21D33FE /* FBSDKCoreKit+Internal.h in Headers */, + D74E0514F8C0B87B7E1D62172A1AFD86 /* FBSDKCoreKit-umbrella.h in Headers */, + 6CA76726D74BC974AC720E390CD78ED9 /* FBSDKCoreKit.h in Headers */, + 1425B382B4BCB6CD7AB6D31EA1C7332F /* FBSDKCrypto.h in Headers */, + 878FFF34B876888F8102C8748CA5350B /* FBSDKDialogConfiguration.h in Headers */, + CB1C55E3A0AF0A192EE3A4C969AF6710 /* FBSDKDynamicFrameworkLoader.h in Headers */, + 3407AD594A2BC3BB1C83BB2A40EDC375 /* FBSDKError.h in Headers */, + F8C37640F70CF5E8A10A24292746AB07 /* FBSDKErrorConfiguration.h in Headers */, + FD07C2C9130217F82A4AF1110643C643 /* FBSDKErrorRecoveryAttempter.h in Headers */, + 881E572AF750505FE7362B3580A6422A /* FBSDKErrorRecoveryConfiguration.h in Headers */, + 03ABE7B2848925BD128E27C3D1387301 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */, + CB507243BA4BCD86AB0B04C3C3FDF911 /* FBSDKGraphRequest+Internal.h in Headers */, + DBCFBC00B4F7EDF50738BDAC6ECDCAA5 /* FBSDKGraphRequest.h in Headers */, + 2A2EDCB3C56D4CECCBB316BC99AFDF7C /* FBSDKGraphRequestBody.h in Headers */, + AD2ABA129A8954FACEAA003AADE854AD /* FBSDKGraphRequestConnection+Internal.h in Headers */, + A97007C0361F790136D35C6A9FB2CB61 /* FBSDKGraphRequestConnection.h in Headers */, + 032A768D9CE16A071DE9EB6636E06C5E /* FBSDKGraphRequestDataAttachment.h in Headers */, + A770F5CEA719136A936FDB05A9189B47 /* FBSDKGraphRequestMetadata.h in Headers */, + C885AA57B89190ED816C2D893B855658 /* FBSDKGraphRequestPiggybackManager.h in Headers */, + C877B62645108E070DA0B379160A1A55 /* FBSDKIcon.h in Headers */, + 52011F7A021E6981D1A14346F69DF581 /* FBSDKInternalUtility.h in Headers */, + C184E8C2D214F748E3D6A1E2218D2A19 /* FBSDKKeychainStore.h in Headers */, + 3F046B457AF3D946EF13CF18AF9A57E1 /* FBSDKKeychainStoreViaBundleID.h in Headers */, + 05838119F45D43092FAB71F0E0CBCA28 /* FBSDKLogger.h in Headers */, + F85354C1D0CE284186E33D11A7705121 /* FBSDKLogo.h in Headers */, + 4D95E4B6A8C358484209E9E7FB800DA4 /* FBSDKMacros.h in Headers */, + A2BA59DFF1F34B3939EE149F397FC810 /* FBSDKMaleSilhouetteIcon.h in Headers */, + A9A8ED995CD370E24382EBDCC334824C /* FBSDKMath.h in Headers */, + E877B228583F698EA6DED79611528F7E /* FBSDKMonotonicTime.h in Headers */, + 4BA6F0F91FB75C8EE4CE8F4B8AAA2277 /* FBSDKMutableCopying.h in Headers */, + 835AA610077197F037D055C1A48006F8 /* FBSDKOrganicDeeplinkHelper.h in Headers */, + B6EC50FC61AB099EC644EF9706BF5E0D /* FBSDKPaymentObserver.h in Headers */, + 159EE1B54032138A5981201F706BE73E /* FBSDKProfile+Internal.h in Headers */, + 2ABD8A9D5FB1989CCC282860A266C3FA /* FBSDKProfile.h in Headers */, + D303D8B7C86247B245A6E270DB4C6305 /* FBSDKProfilePictureView.h in Headers */, + C8FC64FA5FBEE8C4D47723CC40A4DC21 /* FBSDKServerConfiguration+Internal.h in Headers */, + 7624340250C98C860968CB3CE965DB10 /* FBSDKServerConfiguration.h in Headers */, + D903D18CE755D6F9CB04D54320B79755 /* FBSDKServerConfigurationManager+Internal.h in Headers */, + C14F7D3CC388177330229D8197AAC8D2 /* FBSDKServerConfigurationManager.h in Headers */, + AB50A198C25516A19902265B3257AD01 /* FBSDKSettings+Internal.h in Headers */, + 4F460FF3009054F235D91A0FF3A6B77D /* FBSDKSettings.h in Headers */, + 49D41882B2AC3AA1412543C573A449BC /* FBSDKSystemAccountStoreAdapter.h in Headers */, + 46F9BBEA50C3B8E2D2993356B4A37670 /* FBSDKTestUsersManager.h in Headers */, + C90902EF283215237A2DFF6446C2EE23 /* FBSDKTimeSpentData.h in Headers */, + E6E30A8821FBC1CF0934F9352AF19D24 /* FBSDKTriStateBOOL.h in Headers */, + ED83C408C030422AEC3908B9F909E8CC /* FBSDKTypeUtility.h in Headers */, + 9C1E5F739BBF75CF3CB13A9DCD1EBBB5 /* FBSDKUIUtility.h in Headers */, + 1D2A35FF41EBE49D92C2FF5B573D54A4 /* FBSDKURLConnection.h in Headers */, + 39EA32E18C764A782707D24DBF221E92 /* FBSDKURLOpening.h in Headers */, + F54CD48DE0D95FB475A76DC0BE00EDEC /* FBSDKURLSessionTask.h in Headers */, + AF29430A1EC422777D052F142CD8F311 /* FBSDKUtility.h in Headers */, + 88B1A3A8E4D30F1BE8C28A84AED31EBD /* FBSDKViewImpressionTracker.h in Headers */, + B4A5C6CDFF9F5F2A03E456E3BB57F8FC /* FBSDKWebDialog.h in Headers */, + 71A3F252248185B6F92BC9186474CF1E /* FBSDKWebDialogView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 95EE69169CC28F281F0B27A490BDB19D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -3970,24 +3988,6 @@ productReference = 49B6B3AA873F4F4971FAAFC663B2E729 /* SWRevealViewController.framework */; productType = "com.apple.product-type.framework"; }; - 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7F53C29A72B6CC355FE4F6B52F98F774 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */; - buildPhases = ( - 95D82D9943D7EEA0AB8068FF3BDB1822 /* Sources */, - 30F78C2DFDAD4B8B98D898DA2DF46D2F /* Frameworks */, - 4F0AD5F6BD9D9DCE821C6CBEBD2CB361 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 4A2A4A039944577C369BBE84367A1720 /* PBXTargetDependency */, - ); - name = FBSDKCoreKit; - productName = FBSDKCoreKit; - productReference = 3E761E000A87CDA00D2C3CB849EF5842 /* FBSDKCoreKit.framework */; - productType = "com.apple.product-type.framework"; - }; 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */ = { isa = PBXNativeTarget; buildConfigurationList = 9F1716D804B22F3E073389A93AF3013F /* Build configuration list for PBXNativeTarget "UIImageViewModeScaleAspect" */; @@ -4114,6 +4114,25 @@ productReference = 5005A8699C453626503502CFA2E8301E /* GDataXML_HTML.framework */; productType = "com.apple.product-type.framework"; }; + 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = CD529933467F667985E07EBEABA061D2 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */; + buildPhases = ( + FAA8981C7FA1463BB1B9E81D685F99AB /* Sources */, + DBFAA94BD33BE385639E5A23427AF072 /* Frameworks */, + 84AF357549AF770EBB43719BE71FCCA7 /* Headers */, + B82C30F527BA9FDFAA7B952AF3672A5D /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 9EC7C0200691F3F296A18FFC71E892A7 /* PBXTargetDependency */, + ); + name = FBSDKCoreKit; + productName = FBSDKCoreKit; + productReference = 3E761E000A87CDA00D2C3CB849EF5842 /* FBSDKCoreKit.framework */; + productType = "com.apple.product-type.framework"; + }; 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */ = { isa = PBXNativeTarget; buildConfigurationList = 65C945B9F8F7427F83E2AD2F43DF0BC5 /* Build configuration list for PBXNativeTarget "OAuthSwift" */; @@ -4446,7 +4465,7 @@ 8AA3DDB8797222294E1288CB197A8347 /* BSGridCollectionViewLayout */, C59EE95662AD4757E7FCE220DB1AFA41 /* BSImagePicker */, F7DE5171AA3C53DA4E4A078B795C78EE /* BSImagePicker-BSImagePicker */, - 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */, + 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */, 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */, 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */, 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */, @@ -4490,6 +4509,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B82C30F527BA9FDFAA7B952AF3672A5D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D7E6959475A3102974DAA7D4DE44CD3F /* FacebookSDKStrings.bundle in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E8DBE0D4A340EA6EA028C39FF0164968 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -4723,83 +4750,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 95D82D9943D7EEA0AB8068FF3BDB1822 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1A41AA1660DA17FD9EEE7CC544D1C0A4 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */, - 0B74B022BF109C2753A56CD082E10C61 /* FBSDKAccessToken.m in Sources */, - FA5911BDD42D4D5735385D2761FC41A7 /* FBSDKAccessTokenCache.m in Sources */, - BD2ECAD3E71F4EE83864E6F14B67FBC2 /* FBSDKAccessTokenCacheV3.m in Sources */, - 2BD969D274F4CC68A4E73E74135AAAB6 /* FBSDKAccessTokenCacheV3_17.m in Sources */, - 57FA7FEEEF914BE0BF48A58ED1880B22 /* FBSDKAccessTokenCacheV3_21.m in Sources */, - 3D75C1A03F08AB28F30D41A9E3E5389E /* FBSDKAccessTokenCacheV4.m in Sources */, - 7ED5EB3F1C101076506DB68E0BC5B6AB /* FBSDKAppEvents.m in Sources */, - ABBC769244D3C1F076C3A7ABA6F2F330 /* FBSDKAppEventsDeviceInfo.m in Sources */, - 7F70DD03F9ACE65B00724DCA0309602D /* FBSDKAppEventsState.m in Sources */, - 1D716404A2353ADA0326C44132D1EFD9 /* FBSDKAppEventsStateManager.m in Sources */, - 60A2123AE07346F415CA44359F873F10 /* FBSDKAppEventsUtility.m in Sources */, - 9AEF21BC71A0C2AF841513A013F197EC /* FBSDKApplicationDelegate.m in Sources */, - 03E71DCD3453CC52D1503B92195F5091 /* FBSDKAppLinkResolver.m in Sources */, - EFCC14FC93C089D3303B86350EC7E255 /* FBSDKAppLinkUtility.m in Sources */, - 0FED72D02DF25255150B8301A353949A /* FBSDKAudioResourceLoader.m in Sources */, - 6607F176EF0C2BDF9BCC417DD295D59D /* FBSDKBase64.m in Sources */, - B52E11D4E947E41CE3A1E3221AB1BA6B /* FBSDKBoltsMeasurementEventListener.m in Sources */, - FA16BCB39DED31DEB5EE3BBADB13E204 /* FBSDKBridgeAPICrypto.m in Sources */, - 67C9843DC2B4557A9EE0C5D01604A0E7 /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */, - E5FFE022FD6699990599EEA6529BC636 /* FBSDKBridgeAPIProtocolWebV1.m in Sources */, - 4C1AD82A4DEEE0D1D2B34913ABBBC311 /* FBSDKBridgeAPIProtocolWebV2.m in Sources */, - 6F8F81979B066F27456733EB3BDD21FF /* FBSDKBridgeAPIRequest.m in Sources */, - 59B4A11C6CEB352D03892AF9828AB52B /* FBSDKBridgeAPIResponse.m in Sources */, - 3A31EE2CDC26FC7889C0059514E91C3D /* FBSDKButton.m in Sources */, - A484BD167B628487BBAAA674F5DB7B1A /* FBSDKCloseIcon.m in Sources */, - 4C1D00D2AAB1C6C511FF8F5FC76698D1 /* FBSDKColor.m in Sources */, - 86ACEBDE1686451F2370C05812756E23 /* FBSDKConstants.m in Sources */, - D5BAF5FC42E9BCD77EFC85D72EB2BA14 /* FBSDKContainerViewController.m in Sources */, - F26DEEAD3638F33F87903B3B59BF61A6 /* FBSDKCoreKit-dummy.m in Sources */, - 7008126788B83DF17DEFE2568CA741A3 /* FBSDKCrypto.m in Sources */, - 349308F0D458195CBF3C7D9078D59547 /* FBSDKDialogConfiguration.m in Sources */, - 1877520854C1B04C797C8FD94308AB48 /* FBSDKDynamicFrameworkLoader.m in Sources */, - B66A8B13B1A4DB797713351204E9754F /* FBSDKError.m in Sources */, - DAA9D0E08221846F34174BA9C7933C01 /* FBSDKErrorConfiguration.m in Sources */, - 3DB7D1D261D974F55FDB4DD7AAC42861 /* FBSDKErrorRecoveryAttempter.m in Sources */, - D47F5FD0F654ACB03A3948DB29B7EE2E /* FBSDKErrorRecoveryConfiguration.m in Sources */, - 6FBD31B0BB27AAEFFFFDB275DD3AE781 /* FBSDKGraphErrorRecoveryProcessor.m in Sources */, - 23772EC6E0C5B91318B4350D87BDCE6B /* FBSDKGraphRequest.m in Sources */, - 06B3CC660A3B863A48757A30E5343758 /* FBSDKGraphRequestBody.m in Sources */, - B7AA8DD951A2A0FD0DC01B4EC91C8153 /* FBSDKGraphRequestConnection.m in Sources */, - 242E73B2F0842E1CF5348D2BC765DE8A /* FBSDKGraphRequestDataAttachment.m in Sources */, - 5611FBD348B8C8A4FFF9875FF2F5BDA6 /* FBSDKGraphRequestMetadata.m in Sources */, - D6961FE567A047B2EE394D527EF414E0 /* FBSDKGraphRequestPiggybackManager.m in Sources */, - 1CF8B8AD6CAA603A95B2C395AB4057B6 /* FBSDKIcon.m in Sources */, - C0C062FB06B5A469FCABC55C619ABB2F /* FBSDKInternalUtility.m in Sources */, - 0D79E48F5B7F8FCAC2E90DBBCE5FA98F /* FBSDKKeychainStore.m in Sources */, - B005B379F2878E1CDA454C1A87879442 /* FBSDKKeychainStoreViaBundleID.m in Sources */, - FB7B76F9942AE0F7DEC11FAAEE4739B7 /* FBSDKLogger.m in Sources */, - 6FB287DB5361328A1AAFC6D644E94B07 /* FBSDKLogo.m in Sources */, - E9FF502F63179B3E7EEA42FB3A31017A /* FBSDKMaleSilhouetteIcon.m in Sources */, - C6F65A56D2A83EF7D2445EB1BC64B8D4 /* FBSDKMath.m in Sources */, - 3727D92D4B6CF5B09E53F33C773876D2 /* FBSDKMonotonicTime.m in Sources */, - D441FFFC4FE2E90573DBF2477DDF8B6E /* FBSDKOrganicDeeplinkHelper.m in Sources */, - 9C54F07A5D6128AEA08BE4131CCCF746 /* FBSDKPaymentObserver.m in Sources */, - E7EDF8AFADD549527BAA0FF0B813C44C /* FBSDKProfile.m in Sources */, - F1A619BA53B94B8F18245C7A7F17D52F /* FBSDKProfilePictureView.m in Sources */, - 31694BB1A321078621424E065953D9DD /* FBSDKServerConfiguration.m in Sources */, - 2E5AA7B66CE7F0DB9CEFC25F55C41124 /* FBSDKServerConfigurationManager.m in Sources */, - 8EDDCAE539DCE9EA7BCC1895C4C4A567 /* FBSDKSettings.m in Sources */, - DD203F22883C5445DDA618371EEFEC07 /* FBSDKSystemAccountStoreAdapter.m in Sources */, - C1EEA41ECBE43FAF3E230A70F481C0D9 /* FBSDKTestUsersManager.m in Sources */, - 1434A073055312B7CE4FB95A1605C0A5 /* FBSDKTimeSpentData.m in Sources */, - 6CBA87B13DCF3BB31FBC3F1CC4BBB7C6 /* FBSDKTriStateBOOL.m in Sources */, - A1A90659ED5B7540845C8185F8606FB9 /* FBSDKTypeUtility.m in Sources */, - 290E7890207984177124BD5F84F0D04C /* FBSDKURLConnection.m in Sources */, - 917B32BDBDF0928BAFF4201C924BA155 /* FBSDKUtility.m in Sources */, - F8FB7A9780E2A40ACDA1F21C5969B527 /* FBSDKViewImpressionTracker.m in Sources */, - 0BDC4DAA1B69B3349079C5432DE9AB58 /* FBSDKWebDialog.m in Sources */, - D2E7CA26EBA86717C6F9EF5F4988903C /* FBSDKWebDialogView.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 9E7BE1F2A7118BFE6EE01E7DC62C644F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4969,6 +4919,84 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FAA8981C7FA1463BB1B9E81D685F99AB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6C44D31EB0D12B10AEFA9430E0231820 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */, + E2C3319C291A2CF9EC84A6ACE989617F /* FBSDKAccessToken.m in Sources */, + C3BA284DD88441E67D4E270EFCA1A080 /* FBSDKAccessTokenCache.m in Sources */, + CC355D758AE08E115071B2FF0CBD04C4 /* FBSDKAccessTokenCacheV3.m in Sources */, + F046C25AECD212B3F8430A2EA457C80B /* FBSDKAccessTokenCacheV3_17.m in Sources */, + 6331364DCD208207D120923C0614A16D /* FBSDKAccessTokenCacheV3_21.m in Sources */, + 4C45976381F8783BB0418F3716B9819C /* FBSDKAccessTokenCacheV4.m in Sources */, + 1320D3F0D3A5BBD38DF0A42ED0743CDF /* FBSDKAppEvents.m in Sources */, + BA5C8C591879845F1C6E9E25FBC947CD /* FBSDKAppEventsDeviceInfo.m in Sources */, + C127C5AFB0E89365FB38A7B42FD9B551 /* FBSDKAppEventsState.m in Sources */, + 8D2CACA43E62A632A30B1915BC71B71B /* FBSDKAppEventsStateManager.m in Sources */, + 453CCFB95EFBBEFAF3653DA850ACB4C4 /* FBSDKAppEventsUtility.m in Sources */, + B3353F7D8F7E912F9721A2B2B9CABCEE /* FBSDKApplicationDelegate.m in Sources */, + AB2420047887F93F8E53D89FC87DAC70 /* FBSDKAppLinkResolver.m in Sources */, + 0B328FC5EF9E71F19E715466C68EE8AE /* FBSDKAppLinkUtility.m in Sources */, + C7DAA4567E3B64C06BAD3DF17E635D40 /* FBSDKAudioResourceLoader.m in Sources */, + 4128E3A5C4A0660FAA0BD4ADB3936709 /* FBSDKBase64.m in Sources */, + 78F2DFD0001D91AE4AD449C3244FB44D /* FBSDKBoltsMeasurementEventListener.m in Sources */, + 15C5E56BDBC01EFA13FE6B76ACA31C58 /* FBSDKBridgeAPICrypto.m in Sources */, + A81091E2470EEAB6E79A3107477B137A /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */, + 26AE7D9B8D68CAC9642DDFEDB8E8D771 /* FBSDKBridgeAPIProtocolWebV1.m in Sources */, + D4538A58795159857537840B56F1AC1B /* FBSDKBridgeAPIProtocolWebV2.m in Sources */, + C43BCEC6C63918E923BB2BC2485E6B98 /* FBSDKBridgeAPIRequest.m in Sources */, + 8882B054D62AAD6C9682B857A338DC11 /* FBSDKBridgeAPIResponse.m in Sources */, + C7C5D399380BA65F6F67F0C0C6122F97 /* FBSDKButton.m in Sources */, + 02C58742E0F06B89E19397112C03CF62 /* FBSDKCloseIcon.m in Sources */, + 59DFAD3C58F255C77985D4B9098F0B62 /* FBSDKColor.m in Sources */, + 86C430A858B0BBD373E0D33ED948CB2A /* FBSDKConstants.m in Sources */, + 3981B9E63BA2904A0114C751B1F55EEB /* FBSDKContainerViewController.m in Sources */, + 1F805E24D9254A455DE8E504786E31B6 /* FBSDKCoreKit-dummy.m in Sources */, + D13FAADBAE2A868A59D2A9B267034EC2 /* FBSDKCrypto.m in Sources */, + 9D960DFA8001A7569CCCD7E28087E166 /* FBSDKDialogConfiguration.m in Sources */, + 92D2355637AB086051E9F16001AE7F3B /* FBSDKDynamicFrameworkLoader.m in Sources */, + 3248D8EE5EAAD24ACA8DEB30A458DE48 /* FBSDKError.m in Sources */, + A85B3F05DA9720CF770E0B0890F944AE /* FBSDKErrorConfiguration.m in Sources */, + 1307025603A8C5E7C1EFE1E6A5BF8914 /* FBSDKErrorRecoveryAttempter.m in Sources */, + EBDFB9500C57F9D901114505D1C2E6C4 /* FBSDKErrorRecoveryConfiguration.m in Sources */, + 48B7B49F3456D2CB232DD0AE82276241 /* FBSDKGraphErrorRecoveryProcessor.m in Sources */, + 76BE7FCD0B1E5F1143211AC0E1C8169D /* FBSDKGraphRequest.m in Sources */, + E0D748922FE769746289B0CD735B7833 /* FBSDKGraphRequestBody.m in Sources */, + E5332D00D40DE3250A747DA0B0CCAB92 /* FBSDKGraphRequestConnection.m in Sources */, + E2084224DED264015ED724F9C76CE9D1 /* FBSDKGraphRequestDataAttachment.m in Sources */, + 722857CD50502969E884507B2B7806FB /* FBSDKGraphRequestMetadata.m in Sources */, + E6DE6F8659D111DCFAD553E961C182E6 /* FBSDKGraphRequestPiggybackManager.m in Sources */, + 765D6270928B1D3D4A3662561E5C1A11 /* FBSDKIcon.m in Sources */, + 07AE3DDD7B4F45601000B8970770D159 /* FBSDKInternalUtility.m in Sources */, + E7608E1D974155F4B932D6183F0A7B7A /* FBSDKKeychainStore.m in Sources */, + 66ECC384971FF9D783161F240FB96CB7 /* FBSDKKeychainStoreViaBundleID.m in Sources */, + BD2D4E29D27FB687EFA5D6A5348B7D8E /* FBSDKLogger.m in Sources */, + B7BD82689B9DBF97AB3B82B5B7DACC2A /* FBSDKLogo.m in Sources */, + C679FD190AF1FB48912CB446761112F2 /* FBSDKMaleSilhouetteIcon.m in Sources */, + 61CEC8866A6D2572089A904EA0F83F61 /* FBSDKMath.m in Sources */, + 6155675E344237CFB2682A3490B076BB /* FBSDKMonotonicTime.m in Sources */, + 80DC9A0369F4F2263C024EFDB1E73EE4 /* FBSDKOrganicDeeplinkHelper.m in Sources */, + DC50B80F9D22C906C77EC515D52250AC /* FBSDKPaymentObserver.m in Sources */, + 3A664C723C33E54F533E31F66EA22EC8 /* FBSDKProfile.m in Sources */, + BF07C002A875E226FDF05FF39FF950A6 /* FBSDKProfilePictureView.m in Sources */, + C8CEE4AAADEA0E70E94DF926E35B645C /* FBSDKServerConfiguration.m in Sources */, + C7E099EE12E508A46CE2DBE5AA13C4CA /* FBSDKServerConfigurationManager.m in Sources */, + 5C9EC73D0E19564C2109A6FB650614CE /* FBSDKSettings.m in Sources */, + DB6BE7479662943E2E9FAD94D8DA0009 /* FBSDKSystemAccountStoreAdapter.m in Sources */, + F2A76CF8550D617A7845594D12B2BC54 /* FBSDKTestUsersManager.m in Sources */, + 497287C7FBED4DCF7FDCF28A851B0B45 /* FBSDKTimeSpentData.m in Sources */, + 81FDC061E5AC74936F536C7704926B2F /* FBSDKTriStateBOOL.m in Sources */, + FFA2811F11EE13BDAF14CAEC92A3AFFD /* FBSDKTypeUtility.m in Sources */, + 2C5EC023FC39EFCBC5176E68F6082D6E /* FBSDKURLConnection.m in Sources */, + AEA845413EC59501F797ECA70581BF9C /* FBSDKURLSessionTask.m in Sources */, + 31B99640D7A7709B06B0701AC8BD08E6 /* FBSDKUtility.m in Sources */, + B740CB9EA2FDE25A6A15738285AC112D /* FBSDKViewImpressionTracker.m in Sources */, + AD40B6A9112D9F9FF37E9F91351B3FE0 /* FBSDKWebDialog.m in Sources */, + 40770650BDD2DBF27FDF899D1E20E1A3 /* FBSDKWebDialogView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ @@ -4987,7 +5015,7 @@ 0C380CB7D80E46C61B12217A17A426FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBSDKCoreKit; - target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + target = 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */; targetProxy = BFF128E5D040CC7DA2E11C09E08FA208 /* PBXContainerItemProxy */; }; 0D48F70E0A03093FE84EC7AD1C7091C7 /* PBXTargetDependency */ = { @@ -5041,7 +5069,7 @@ 428C982B583847EB13F72DF45910CABB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBSDKCoreKit; - target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + target = 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */; targetProxy = E250CF7CC130313AE0672DA2E999F5F7 /* PBXContainerItemProxy */; }; 42BECD503C098E91C6DD12632AA3C58A /* PBXTargetDependency */ = { @@ -5056,12 +5084,6 @@ target = 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */; targetProxy = AB87F20ADEAEFBB3B7530AA0EF8B122B /* PBXContainerItemProxy */; }; - 4A2A4A039944577C369BBE84367A1720 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Bolts; - target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; - targetProxy = 7BDFEC0F5B0693C2D315E9D3973E276E /* PBXContainerItemProxy */; - }; 4AD784C8D980750A2CB7E95896290010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Alamofire; @@ -5089,7 +5111,7 @@ 4F3CF331AB806BC4E9978A9118632162 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBSDKCoreKit; - target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + target = 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */; targetProxy = CFD970D7ADCC55CB11A7402ECAE02E55 /* PBXContainerItemProxy */; }; 522E6EB7CECCBCF3F38CFB5A76AEAADF /* PBXTargetDependency */ = { @@ -5119,7 +5141,7 @@ 665BF41340C0024822CC1975AD0DAAB2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBSDKCoreKit; - target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + target = 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */; targetProxy = 2092CA1C6780BE3C119CC0ABAE0477F9 /* PBXContainerItemProxy */; }; 69665AA7D0F588B39BA34A9382994C40 /* PBXTargetDependency */ = { @@ -5248,6 +5270,12 @@ target = 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */; targetProxy = CDEC1DDDDC87A123A6962ACDDD71BFCE /* PBXContainerItemProxy */; }; + 9EC7C0200691F3F296A18FFC71E892A7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bolts; + target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; + targetProxy = 00BDD9385D6AB29672E898F5EED64330 /* PBXContainerItemProxy */; + }; 9F22094A3FE1E5EF0C4FFE5CF8C34003 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BSGridCollectionViewLayout; @@ -5335,7 +5363,7 @@ EE4106E226CB0BEB4B8D5572E612A79A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBSDKCoreKit; - target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + target = 3C5685456B3ED2A700DBD8CC7DE83D96 /* FBSDKCoreKit */; targetProxy = ED9B8F8F8F84D09DE8A86E81383E7B0D /* PBXContainerItemProxy */; }; EF168E787231EE5ED7C0A3DCB6A8CAF0 /* PBXTargetDependency */ = { @@ -5431,7 +5459,7 @@ }; 09B8B93DA94703982480DC610CD974DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */; + baseConfigurationReference = F463A97412AB3E7FB671F91E1E01C3D8 /* PicoKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5460,7 +5488,7 @@ }; 09DCD7B5ABC0BE2422EC17FF22EEA61F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */; + baseConfigurationReference = F463A97412AB3E7FB671F91E1E01C3D8 /* PicoKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5487,38 +5515,9 @@ }; name = Debug; }; - 0A73F24D763A69076DD0422227C1211D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FBSDKCoreKit/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = FBSDKCoreKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 0AB96BB5ADF0CA3DC7023A727EC7E42F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; + baseConfigurationReference = 8C97E09214D28B9BAF3E58F4F6213331 /* BSImagePicker.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5580,7 +5579,7 @@ }; 1403937F7D50BE5E8B8301461B2686AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */; + baseConfigurationReference = 9E1070EB6FC498D7608DE0773C1DC977 /* UIImageViewModeScaleAspect.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5643,7 +5642,7 @@ }; 19A75C9F29108E52A98BE38D10AC071C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */; + baseConfigurationReference = 9E1070EB6FC498D7608DE0773C1DC977 /* UIImageViewModeScaleAspect.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5672,7 +5671,7 @@ }; 1CB3E21E57526DB7C8A1DB1DC30BDBA4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */; + baseConfigurationReference = EC78F7AE3EC6C2CBBED4A8CE414AA9FA /* TYMActivityIndicatorView.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5701,7 +5700,7 @@ }; 2DAE788836AF99D9E9D30504C4AB0763 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */; + baseConfigurationReference = CB8EF3589DABFE29936EE3DE53D4A614 /* FBSDKLoginKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5730,7 +5729,7 @@ }; 2FE54FCEB3F939FD620F30D6C5F20C3F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */; + baseConfigurationReference = 901C3C1290A71FFB9A40E7898DB97A6C /* FBSDKShareKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5759,7 +5758,7 @@ }; 32537CABB6F7EDB22B13F29F3D331428 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */; + baseConfigurationReference = D8E33D706F8D6D456C4698C4CB8E94BD /* Alamofire-SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5789,7 +5788,7 @@ }; 32AD5F8918CA8B349E4671410FA624C9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */; + baseConfigurationReference = 251C1C2A981601408A85E91AA33D482F /* Alamofire.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5818,7 +5817,7 @@ }; 38C3C075D5163F9981F9F18F907A3C9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */; + baseConfigurationReference = 614AC0A67DE24690C5C0A7B771F72ED8 /* SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5848,7 +5847,7 @@ }; 3D02698181454015113FCDC4E7C6149C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */; + baseConfigurationReference = 545DFBD4CED3702290AC2A376522C2D2 /* BSGridCollectionViewLayout.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5915,7 +5914,7 @@ }; 406C23A6F630DB686E934348A1CC25E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */; + baseConfigurationReference = AE2B19C0BF6EE7938D25D4102333578A /* GDataXML-HTML.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -5944,7 +5943,7 @@ }; 443F1C9186292B46442EE0B9FC38D90B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; + baseConfigurationReference = 8C97E09214D28B9BAF3E58F4F6213331 /* BSImagePicker.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BSImagePicker"; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -5961,7 +5960,7 @@ }; 4799CFBC99D2EDFFDAFD3DEF3186789C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */; + baseConfigurationReference = 5F1E683D36F969F98DEC6249ADF0BC8A /* Locksmith.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6024,7 +6023,7 @@ }; 52B77AA1DAD9C4DC2F490BEB54B3E0E5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */; + baseConfigurationReference = 614AC0A67DE24690C5C0A7B771F72ED8 /* SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6086,7 +6085,7 @@ }; 5B1F4C1F99921212216D8AA505FBF3E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */; + baseConfigurationReference = 70972190DF891CF51777FC24E52F79D9 /* OAuthSwift.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6115,7 +6114,7 @@ }; 5C79987B34F47B822ACAD37C2DF5D441 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; + baseConfigurationReference = 8C97E09214D28B9BAF3E58F4F6213331 /* BSImagePicker.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BSImagePicker"; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -6207,7 +6206,7 @@ }; 749A77BD462D323D181CF0CA3E668C3B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */; + baseConfigurationReference = 901C3C1290A71FFB9A40E7898DB97A6C /* FBSDKShareKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6236,7 +6235,7 @@ }; 75218111E718FACE36F771E8ABECDB62 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */; + baseConfigurationReference = 251C1C2A981601408A85E91AA33D482F /* Alamofire.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6264,9 +6263,38 @@ }; name = Debug; }; + 771DCB98FED1FF2302EC27A6122516A8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DFC00E5D3520F42E36E3D1F3BE0E93DE /* FBSDKCoreKit.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FBSDKCoreKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = FBSDKCoreKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 854B1A0FBABCC23E55F97B83AC2D5F15 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */; + baseConfigurationReference = CB8EF3589DABFE29936EE3DE53D4A614 /* FBSDKLoginKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6295,7 +6323,7 @@ }; 8CEB8F51710385309FFE6A414889FF43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */; + baseConfigurationReference = D8E33D706F8D6D456C4698C4CB8E94BD /* Alamofire-SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6324,7 +6352,7 @@ }; 8DA1DA9EAE81D3DB196E2F722C81AC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */; + baseConfigurationReference = AE2B19C0BF6EE7938D25D4102333578A /* GDataXML-HTML.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6353,7 +6381,7 @@ }; 921930B9ACE4505D9988EBB07BFEC851 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */; + baseConfigurationReference = 7BE8EB1BCC368D8EDE6708DAACCE4E63 /* AeroGearOAuth2.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6382,7 +6410,7 @@ }; 933454AB3B8E0564BA3DA640F235911A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */; + baseConfigurationReference = 39981C28DFE2B2F33789DEE588B41716 /* SWRevealViewController.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6411,7 +6439,7 @@ }; 9340D8E4B2DD920B75C8F847CAD25BB7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */; + baseConfigurationReference = D89781AF8258FFA5A3ED97890F4AC7FE /* AFNetworking.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6440,7 +6468,7 @@ }; A78CB9DDCA338DC66015FA65B1E768B2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */; + baseConfigurationReference = D89781AF8258FFA5A3ED97890F4AC7FE /* AFNetworking.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6469,7 +6497,7 @@ }; BBC7375D6A437EB9209BA9EEEFD0FA23 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */; + baseConfigurationReference = 39981C28DFE2B2F33789DEE588B41716 /* SWRevealViewController.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6498,7 +6526,7 @@ }; C8F24A56F9E1AD1E2DA11349F596E991 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */; + baseConfigurationReference = E775ADF0F1DE936E779259305C249DD5 /* AeroGearHttp.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6527,7 +6555,7 @@ }; CAA975EAF285C03D356B6BB3680C8442 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; + baseConfigurationReference = 8C97E09214D28B9BAF3E58F4F6213331 /* BSImagePicker.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6557,7 +6585,7 @@ }; CF237BF20314A0981AE48A1F7C43D94A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */; + baseConfigurationReference = 98DFED7E7AB0EA443A3B509A9E78ED4E /* Bolts.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6586,7 +6614,7 @@ }; D352A1B6EB59F8FB2FE83A83AE04A597 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */; + baseConfigurationReference = 98DFED7E7AB0EA443A3B509A9E78ED4E /* Bolts.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6615,7 +6643,7 @@ }; D58FAEAD6AE7D588840BDB610ED0D8A4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */; + baseConfigurationReference = 70972190DF891CF51777FC24E52F79D9 /* OAuthSwift.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6645,7 +6673,7 @@ }; DAD90D34FA3C7623B8A4CCE1E2D5E064 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */; + baseConfigurationReference = E775ADF0F1DE936E779259305C249DD5 /* AeroGearHttp.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6675,7 +6703,7 @@ }; DBA888CC199D653E1E5E69F6F16EE207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */; + baseConfigurationReference = 5F1E683D36F969F98DEC6249ADF0BC8A /* Locksmith.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6705,7 +6733,7 @@ }; DD5F9C906269A22E1B56C99551644664 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */; + baseConfigurationReference = EC78F7AE3EC6C2CBBED4A8CE414AA9FA /* TYMActivityIndicatorView.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6732,38 +6760,9 @@ }; name = Debug; }; - DE29E17EF9D69AAB47289CF7F77588BA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FBSDKCoreKit/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = FBSDKCoreKit; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; DEA6A42753EBCEF32992807141EB9AF4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */; + baseConfigurationReference = 545DFBD4CED3702290AC2A376522C2D2 /* BSGridCollectionViewLayout.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6791,9 +6790,38 @@ }; name = Debug; }; + EA361B37AD4619133BEE308700A77FF0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DFC00E5D3520F42E36E3D1F3BE0E93DE /* FBSDKCoreKit.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FBSDKCoreKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/FBSDKCoreKit/FBSDKCoreKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = FBSDKCoreKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; F310993D6A449DA5BD69FC752969BFD7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */; + baseConfigurationReference = 7BE8EB1BCC368D8EDE6708DAACCE4E63 /* AeroGearOAuth2.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -6923,15 +6951,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7F53C29A72B6CC355FE4F6B52F98F774 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0A73F24D763A69076DD0422227C1211D /* Debug */, - DE29E17EF9D69AAB47289CF7F77588BA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 80B13B6EAD86ED2D1C36A7A5494AC881 /* Build configuration list for PBXNativeTarget "AeroGearHttp" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7004,6 +7023,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + CD529933467F667985E07EBEABA061D2 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 771DCB98FED1FF2302EC27A6122516A8 /* Debug */, + EA361B37AD4619133BEE308700A77FF0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; D5E1317A17A0F704FD55EB601C38ED14 /* Build configuration list for PBXNativeTarget "Pods-Vendoo" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme index ee67fb3..12ac834 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/FBSDKCoreKit.xcscheme @@ -14,7 +14,7 @@ buildForArchiving = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist index e417190..e52404f 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist @@ -127,11 +127,6 @@ primary - 0EB19C1377A747F81110D44E2D5FCF78 - - primary - - 0FF38C485BD8E73F614C919F834D6EAB primary @@ -162,6 +157,11 @@ primary + 3C5685456B3ED2A700DBD8CC7DE83D96 + + primary + + 45935B91DF0442390E2CA6DEEF68AE99 primary diff --git a/Pods/Target Support Files/AeroGearHttp/Info.plist b/Pods/Target Support Files/AeroGearHttp/Info.plist index 89a577b..75ba4d0 100644 --- a/Pods/Target Support Files/AeroGearHttp/Info.plist +++ b/Pods/Target Support Files/AeroGearHttp/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.0 + 0.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/AeroGearOAuth2/Info.plist b/Pods/Target Support Files/AeroGearOAuth2/Info.plist index 1c2e79e..75ba4d0 100644 --- a/Pods/Target Support Files/AeroGearOAuth2/Info.plist +++ b/Pods/Target Support Files/AeroGearOAuth2/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.5.1 + 0.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/FBSDKCoreKit/Info.plist b/Pods/Target Support Files/FBSDKCoreKit/Info.plist index 6258f71..9fc8f7c 100644 --- a/Pods/Target Support Files/FBSDKCoreKit/Info.plist +++ b/Pods/Target Support Files/FBSDKCoreKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 4.14.0 + 4.15.0 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/FBSDKLoginKit/Info.plist b/Pods/Target Support Files/FBSDKLoginKit/Info.plist index 6258f71..9fc8f7c 100644 --- a/Pods/Target Support Files/FBSDKLoginKit/Info.plist +++ b/Pods/Target Support Files/FBSDKLoginKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 4.14.0 + 4.15.0 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/FBSDKShareKit/Info.plist b/Pods/Target Support Files/FBSDKShareKit/Info.plist index 6258f71..9fc8f7c 100644 --- a/Pods/Target Support Files/FBSDKShareKit/Info.plist +++ b/Pods/Target Support Files/FBSDKShareKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 4.14.0 + 4.15.0 CFBundleSignature ???? CFBundleVersion diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown index 4512c74..cfb0e79 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown @@ -646,7 +646,7 @@ Copyright 2016 Google ## FirebaseStorage -Copyright 2016 Google Inc. +Copyright 2016 Google ## GDataXML-HTML diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist index 06a3952..34c10b8 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist @@ -721,7 +721,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FooterText - Copyright 2016 Google Inc. + Copyright 2016 Google Title FirebaseStorage Type diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig index 47fa7c5..e62c057 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig @@ -1,5 +1,5 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks/frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig index 47fa7c5..e62c057 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig @@ -1,5 +1,5 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks/frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown index 4512c74..cfb0e79 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown @@ -646,7 +646,7 @@ Copyright 2016 Google ## FirebaseStorage -Copyright 2016 Google Inc. +Copyright 2016 Google ## GDataXML-HTML diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist index 06a3952..34c10b8 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist @@ -721,7 +721,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FooterText - Copyright 2016 Google Inc. + Copyright 2016 Google Title FirebaseStorage Type diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig index 47fa7c5..e62c057 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig @@ -1,5 +1,5 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks/frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig index 47fa7c5..e62c057 100644 --- a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig @@ -1,5 +1,5 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks/frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown index 4512c74..cfb0e79 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown @@ -646,7 +646,7 @@ Copyright 2016 Google ## FirebaseStorage -Copyright 2016 Google Inc. +Copyright 2016 Google ## GDataXML-HTML diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist index 06a3952..34c10b8 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist @@ -721,7 +721,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FooterText - Copyright 2016 Google Inc. + Copyright 2016 Google Title FirebaseStorage Type diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig index 47fa7c5..e62c057 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig @@ -1,5 +1,5 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks/frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig index 47fa7c5..e62c057 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig @@ -1,5 +1,5 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks/frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' diff --git a/Vendoo.xcodeproj/project.pbxproj b/Vendoo.xcodeproj/project.pbxproj index 5715c21..c4ff4cf 100644 --- a/Vendoo.xcodeproj/project.pbxproj +++ b/Vendoo.xcodeproj/project.pbxproj @@ -432,7 +432,7 @@ TargetAttributes = { 3E6CC3521CF2A94B00E00A70 = { CreatedOnToolsVersion = 7.3.1; - DevelopmentTeam = AP9PJ45KS8; + DevelopmentTeam = 24WJ762CQL; }; 3E6CC3681CF2A94B00E00A70 = { CreatedOnToolsVersion = 7.3.1; @@ -994,7 +994,7 @@ "-framework", "\"TYMActivityIndicatorView\"", ); - PRODUCT_BUNDLE_IDENTIFIER = com.Kroleo.Vendoo; + PRODUCT_BUNDLE_IDENTIFIER = "com.Kroleo.Vendoo-D"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE = ""; SDKROOT = iphoneos; @@ -1093,7 +1093,7 @@ "-framework", "\"TYMActivityIndicatorView\"", ); - PRODUCT_BUNDLE_IDENTIFIER = com.Kroleo.Vendoo; + PRODUCT_BUNDLE_IDENTIFIER = "com.Kroleo.Vendoo-D"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE = ""; SDKROOT = iphoneos; diff --git a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate index e35b2a9..456e6b2 100644 Binary files a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate and b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist deleted file mode 100644 index 75c7d77..0000000 --- a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ /dev/null @@ -1,692 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Vendoo/.DS_Store b/Vendoo/.DS_Store index 661de9b..851e8ae 100644 Binary files a/Vendoo/.DS_Store and b/Vendoo/.DS_Store differ diff --git a/Vendoo/Assets.xcassets/.DS_Store b/Vendoo/Assets.xcassets/.DS_Store new file mode 100644 index 0000000..872aedd Binary files /dev/null and b/Vendoo/Assets.xcassets/.DS_Store differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Contents.json b/Vendoo/Assets.xcassets/AppIcon.appiconset/Contents.json index eeea76c..4865656 100755 --- a/Vendoo/Assets.xcassets/AppIcon.appiconset/Contents.json +++ b/Vendoo/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -1,68 +1,81 @@ { "images" : [ { - "idiom" : "iphone", "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-Small@2x.png", "scale" : "2x" }, { - "idiom" : "iphone", "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-Small@3x.png", "scale" : "3x" }, { - "idiom" : "iphone", "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-Spotlight-40@2x.png", "scale" : "2x" }, { - "idiom" : "iphone", "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-Spotlight-40@3x.png", "scale" : "3x" }, { - "idiom" : "iphone", "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-60@2x.png", "scale" : "2x" }, { - "idiom" : "iphone", "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-60@3x.png", "scale" : "3x" }, { - "idiom" : "ipad", "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-Small.png", "scale" : "1x" }, { - "idiom" : "ipad", "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-Small@2x-1.png", "scale" : "2x" }, { - "idiom" : "ipad", "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-Spotlight-40.png", "scale" : "1x" }, { - "idiom" : "ipad", "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-Spotlight-40@2x-1.png", "scale" : "2x" }, { - "idiom" : "ipad", "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-76.png", "scale" : "1x" }, { - "idiom" : "ipad", "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-76@2x.png", "scale" : "2x" }, { - "idiom" : "ipad", "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-iPadPro@2x.png", "scale" : "2x" } ], diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png new file mode 100644 index 0000000..0446fef Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png new file mode 100644 index 0000000..b7cc019 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-76.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-76.png new file mode 100644 index 0000000..91a5392 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-76.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png new file mode 100644 index 0000000..e8ca95d Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small.png new file mode 100644 index 0000000..e00e556 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png new file mode 100644 index 0000000..17a1098 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png new file mode 100644 index 0000000..17a1098 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png new file mode 100644 index 0000000..ee43c9d Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png new file mode 100644 index 0000000..63f65bb Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png new file mode 100644 index 0000000..756f423 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png new file mode 100644 index 0000000..756f423 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png new file mode 100644 index 0000000..f4b11ad Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png differ diff --git a/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-iPadPro@2x.png b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-iPadPro@2x.png new file mode 100644 index 0000000..37dcfc5 Binary files /dev/null and b/Vendoo/Assets.xcassets/AppIcon.appiconset/Icon-iPadPro@2x.png differ diff --git a/Vendoo/Assets.xcassets/Logo.imageset/.DS_Store b/Vendoo/Assets.xcassets/Logo.imageset/.DS_Store new file mode 100644 index 0000000..46dfff2 Binary files /dev/null and b/Vendoo/Assets.xcassets/Logo.imageset/.DS_Store differ diff --git a/Vendoo/EtsyRESTAPIManager.swift b/Vendoo/EtsyRESTAPIManager.swift index b464c31..d9e1204 100644 --- a/Vendoo/EtsyRESTAPIManager.swift +++ b/Vendoo/EtsyRESTAPIManager.swift @@ -25,7 +25,7 @@ class EtsyRESTAPIManager: NSObject { - let baseURL = "https://openapi.etsy.com/v2/private" + let baseURL = "https://openapi.etsy.com/v2" private var apiKey: String! private var apiSecret: String! @@ -40,6 +40,7 @@ class EtsyRESTAPIManager: NSObject { //private let oauthswift = OAuth1Swift(parameters: ["consumerKey":"snbs78qkfy3yqq6yhe6yv49b","consumerSecret":"4sbva4oqb6", "requestTokenUrl": "https://openapi.etsy.com/v2/oauth/request_token?scope=listings_w%20listings_r%20listings_d%20transactions_r%20transactions_w%20"]) override init(){ + super.init() if let path = NSBundle.mainBundle().pathForResource("Services", ofType: "plist"), dict = NSDictionary(contentsOfFile: path) as? [String: AnyObject] { // use swift dictionary as normal @@ -52,16 +53,28 @@ class EtsyRESTAPIManager: NSObject { "accessTokenUrl": "https://openapi.etsy.com/v2/oauth/access_token?", "responseType": "token"]) + //@FIXME: something is wrong when here when logging back in with a diff user if(self.isAuthorized){ let dictionary = Locksmith.loadDataForUserAccount(self.userEmail, inService: "vendoo_oauth_etsy") let oauthDictionary = dictionary?["etsy_oauth"] as? Dictionary print((oauthDictionary?["token"] as? String!)!) self.oauthswift.client.credential.oauth_token = (oauthDictionary?["token"] as? String!)! self.oauthswift.client.credential.oauth_token_secret = (oauthDictionary?["secret"] as? String!)! + + self.sendGETRequest("/taxonomy/categories", /*body: ["oauth_token":(oauthDictionary?["token"] as? String!)!],*/ onCompletion: { + (dict, error) -> Void in + + var resultDictionary = Dictionary() + for catDictionary in (dict as! [Dictionary]) { + print(catDictionary) + resultDictionary[catDictionary["name"] as! String] = catDictionary["category_id"] as! Int + + } + EtsyRESTAPIManager.settingsDictionary["categories"] = resultDictionary + NSUserDefaults.standardUserDefaults().setObject(EtsyRESTAPIManager.settingsDictionary, forKey: "etsySettings") + }) } - /*scope=listings_w%20listings_r%20listings_d%20transactions_r%20transactions_w"*/ - if(NSUserDefaults.standardUserDefaults().boolForKey("etsyDefaultsOverriden")) { EtsyRESTAPIManager.settingsDictionary = (NSUserDefaults.standardUserDefaults().objectForKey("etsySettings") as? Dictionary)! @@ -78,6 +91,8 @@ class EtsyRESTAPIManager: NSObject { NSUserDefaults.standardUserDefaults().setBool(true, forKey: "etsyDefaultsOverriden") } + + } @@ -210,10 +225,28 @@ extension EtsyRESTAPIManager { EtsyRESTAPIManager.settingsDictionary["userID"] = dict2[0]["login_name"]! NSUserDefaults.standardUserDefaults().setObject(EtsyRESTAPIManager.settingsDictionary, forKey: "etsySettings") - self.sendGETRequest("/shops/__SELF__/payment_templates", onCompletion: { + self.sendGETRequest("/private/shops/__SELF__/payment_templates", onCompletion: { (data, error) -> Void in - self.sendGETRequest("/users/__SELF__/shipping/templates", onCompletion: nil) + self.sendGETRequest("/taxonomy/categories", /*body: ["oauth_token":(oauthDictionary?["token"] as? String!)!],*/ onCompletion: { + (dict, error) -> Void in + + var resultDictionary = Dictionary() + for catDictionary in (dict as! [Dictionary]) { + print(catDictionary) + resultDictionary[catDictionary["name"] as! String] = catDictionary["category_id"] as! Int + + } + + EtsyRESTAPIManager.settingsDictionary["categories"] = resultDictionary + + NSUserDefaults.standardUserDefaults().setObject(EtsyRESTAPIManager.settingsDictionary, forKey: "etsySettings") + + + + self.sendGETRequest("/private/users/__SELF__/shipping/templates", onCompletion: nil) + }) + }) @@ -374,16 +407,93 @@ extension EtsyRESTAPIManager { //MARK: - Request Methods extension EtsyRESTAPIManager { + + func sendFile( + urlPath:String, + fileName:String, + data:NSData, + completionHandler: (NSURLResponse?, NSData?, NSError?) -> Void){ + + var url: NSURL = NSURL(string: urlPath)! + var request1: NSMutableURLRequest = NSMutableURLRequest(URL: url) + + request1.HTTPMethod = "POST" + + let boundary = "Boundary-\(NSUUID().UUIDString)" + let fullData = photoDataToFormData(data,boundary:boundary,fileName:fileName) + + request1.setValue("multipart/form-data; boundary=" + boundary, + forHTTPHeaderField: "Content-Type") + + // REQUIRED! + request1.setValue(String(fullData.length), forHTTPHeaderField: "Content-Length") + request1.setValue(self.apiKey, forHTTPHeaderField: "Authorization" ) + //requested.addValue(self.apiKey, forHTTPHeaderField: "API-KEY") + + request1.HTTPBody = fullData + request1.HTTPShouldHandleCookies = false + + let queue:NSOperationQueue = NSOperationQueue() + + NSURLConnection.sendAsynchronousRequest( + request1, + queue: queue, + completionHandler:completionHandler) + } + + // this is a very verbose version of that function + // you can shorten it, but i left it as-is for clarity + // and as an example + func photoDataToFormData(data:NSData,boundary:String,fileName:String) -> NSData { + var fullData = NSMutableData() + + // 1 - Boundary should start with -- + let lineOne = "--" + boundary + "\r\n" + fullData.appendData(lineOne.dataUsingEncoding( + NSUTF8StringEncoding, + allowLossyConversion: false)!) + + // 2 + let lineTwo = "Content-Disposition: form-data; name=\"image\"; filename=\"" + fileName + "\"\r\n" + NSLog(lineTwo) + fullData.appendData(lineTwo.dataUsingEncoding( + NSUTF8StringEncoding, + allowLossyConversion: false)!) + + // 3 + let lineThree = "Content-Type: image/jpg\r\n\r\n" + fullData.appendData(lineThree.dataUsingEncoding( + NSUTF8StringEncoding, + allowLossyConversion: false)!) + + // 4 + fullData.appendData(data) + + // 5 + let lineFive = "\r\n" + fullData.appendData(lineFive.dataUsingEncoding( + NSUTF8StringEncoding, + allowLossyConversion: false)!) + + // 6 - The end. Notice -- at the start and at the end + let lineSix = "--" + boundary + "--\r\n" + fullData.appendData(lineSix.dataUsingEncoding( + NSUTF8StringEncoding, + allowLossyConversion: false)!) + + return fullData + } + func generateUserRequest(etsyName: String!, etsyOptions: [String]!) -> String { //starting url for user request to api var userRequest: String! if(etsyName == nil || etsyName == ""){ - userRequest = (baseURL + "/users/etsystore?") + userRequest = (baseURL + "/private/users/etsystore?") } else{ - userRequest = (baseURL + "/users/" + etsyName + "?") + userRequest = (baseURL + "/private/users/" + etsyName + "?") } //final api request @@ -420,11 +530,11 @@ extension EtsyRESTAPIManager { print(response) switch (request) { - case "/shops/__SELF__/payment_templates" : + case "/private/shops/__SELF__/payment_templates" : if ((dict!["results"]!.isKindOfClass(NSNull.classForCoder()))) { //@TODO: Put payment template parameters in function call - self.oauthswift.client.post(self.baseURL + "/shops/__SELF__/payment_templates", + self.oauthswift.client.post(self.baseURL + "/private/shops/__SELF__/payment_templates", parameters: [ "shop_id":"__SELF__", ], @@ -444,14 +554,16 @@ extension EtsyRESTAPIManager { print(error) } ) + }else { + onCompletion!(nil,nil) } break - case "/users/__SELF__/shipping/templates" : + case "/private/users/__SELF__/shipping/templates" : var dict2 = (dict!["results"] as! [[String : AnyObject]]) if ((dict!["results"]!.isKindOfClass(NSNull.classForCoder()))) { //@TODO: Put payment template parameters in function call - self.oauthswift.client.post(self.baseURL + "/shipping/templates", + self.oauthswift.client.post(self.baseURL + "/private/shipping/templates", parameters: [ "title":"vendoo_default", "origin_country_id":209, @@ -478,6 +590,10 @@ extension EtsyRESTAPIManager { NSUserDefaults.standardUserDefaults().setObject(EtsyRESTAPIManager.settingsDictionary, forKey: "etsySettings") } + break + case "/taxonomy/categories": + var dict2 = (dict!["results"] as! [[String : AnyObject]]) + onCompletion!(dict2, nil) break default: break @@ -493,7 +609,7 @@ extension EtsyRESTAPIManager { } //sends the pregenerated url as a request to api service - func sendPOSTRequest(request: String, var body: [String: AnyObject], onCompletion: ServiceResponse?) { + func sendPOSTRequest(request: String, var body: [String: AnyObject]?, onCompletion: ServiceResponse?) { /* let request = NSMutableURLRequest(URL: NSURL(string: request)!) @@ -521,76 +637,71 @@ extension EtsyRESTAPIManager { }*/ if(request.containsString("listings/") && request.containsString("/images")){ - let url = NSURL(string: self.baseURL + request)! + + + let data: NSData = (body!["image"] as! NSData) + + sendFile(self.baseURL + request, + fileName:"main.jpg", + data:data, + completionHandler: { + (response, data, error) -> Void in + + // ... + NSLog("Complete: \(response)") + if(error != nil) { + onCompletion!(nil, nil) + } + } + ) + + /* let requested = NSMutableURLRequest(URL: url) requested.HTTPMethod = "POST" let boundary = "Boundary-\(NSUUID().UUIDString)" - /*var headers = oauthswift.client.credential.makeHeaders(url, method: OAuthSwiftHTTPRequest.Method.POST, parameters: ["Content-Type":"multipart/form-dataheader"]) // here with create the authentification headers + //var headers = oauthswift.client.credential.makeHeaders(url, method: OAuthSwiftHTTPRequest.Method.POST, parameters: ["Content-Type":"multipart/form-data"]) // here with create the authentification headers requested.addValue(self.apiKey, forHTTPHeaderField: "Authorization" ) //define the multipart request type - requested.addValue("\((body["image"] as! NSData).length)", forHTTPHeaderField: "Content-Length") + requested.addValue("\((body!["image"] as! NSData).length)", forHTTPHeaderField: "Content-Length") requested.addValue("bytes", forHTTPHeaderField: "Content-Transfer-Encoding") requested.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type") //requested.addValue(self.apiKey, forHTTPHeaderField: "API-KEY") - requested.HTTPBody = self.oauthswift.client.multiPartBodyFromParams(body, boundary: boundary) - /*let body1 = NSMutableData() - - let fname = "main.jpg" - let mimetype = "image/jpg" - - //define the data post parameter - - body1.appendData("--\(boundary)\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - body1.appendData("Content-Disposition:form-data; name=\"listing_id\"\r\n\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - body1.appendData("\(body["listing_id"] as! Int)\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - - - - body1.appendData("--\(boundary)\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - body1.appendData("Content-Disposition:form-data; name=\"image\"; filename=\"\(fname)\"\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - body1.appendData("Content-Type: \(mimetype)\r\n\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - body1.appendData((body["image"] as! NSData)) - body1.appendData("\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - - - body1.appendData("--\(boundary)--\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) - - - - requested.HTTPBody = body1*/ + requested.HTTPBody = self.oauthswift.client.multiPartBodyFromParams(body!, boundary: boundary) let session = NSURLSession.sharedSession() let task = session.dataTaskWithRequest(requested) { data, response, error in - if nil != error { - // something went wrong - print(error) + if (nil != error) { + // something went wrong + print(error) + + onCompletion!(nil,nil) + switch (request) { - onCompletion!(nil,nil) - switch (request) { - - default: - break - } + default: + break + } } else { - let dataString = NSString(data: data!, encoding: NSUTF8StringEncoding) - let dict = self.convertStringToDictionary(dataString! as String) - print(dict) - print(response) + let dataString = NSString(data: data!, encoding: NSUTF8StringEncoding) + let dict = self.convertStringToDictionary(dataString! as String) + print(dict) + print(response) - onCompletion!(nil, nil) - switch (request) { + onCompletion!(nil, nil) + switch (request) { - default: - break - } - } - } - task.resume()*/ + default: + break + } + } + } + task.resume() + */ + /* //var headers = oauthswift.client.credential.makeHeaders(url, method: OAuthSwiftHTTPRequest.Method.POST, parameters: ["Content-Type":"multipart/form-dataheader"]) // here with create the authentification headers // here add additional headers "Content-type", etc.. @@ -629,9 +740,11 @@ extension EtsyRESTAPIManager { } task.resume() */ - //body["oauth_verifier"] = (self.oauthswift.client.credential.oauth_verifier) + + /* + body!["oauth_verifier"] = (self.oauthswift.client.credential.oauth_verifier) //@FIXME: multipart post request is returning with oauth signature invalid for uploading image in etsy - self.oauthswift.client.postMultiPartRequest(self.baseURL + request, method: OAuthSwiftHTTPRequest.Method.POST, parameters: body, success: { + self.oauthswift.client.postMultiPartRequest(self.baseURL + request, method: OAuthSwiftHTTPRequest.Method.POST, parameters: body!, success: { (data, response) -> Void in let dataString = NSString(data: data, encoding: NSUTF8StringEncoding) let dict = self.convertStringToDictionary(dataString! as String) @@ -651,7 +764,7 @@ extension EtsyRESTAPIManager { (error) -> Void in print(error) - onCompletion!(nil,nil) + //onCompletion!(nil,nil) switch (request) { default: @@ -660,8 +773,11 @@ extension EtsyRESTAPIManager { } ) - }else { - self.oauthswift.client.post(self.baseURL + request, parameters: body, headers: nil, + */ + + } + else { + self.oauthswift.client.post(self.baseURL + request, parameters: body!, headers: nil, success: { (data, response) -> Void in let dataString = NSString(data: data, encoding: NSUTF8StringEncoding) @@ -669,11 +785,12 @@ extension EtsyRESTAPIManager { print(dict) print(response) + switch (request) { - case "/shipping/templates": + case "/private/shipping/templates": break - case "/listings": + case "/private/listings": var dict2 = (dict!["results"] as! [[String : AnyObject]]) print(((dict2[0]["listing_id"])!)) onCompletion!(dict2, nil) @@ -688,10 +805,10 @@ extension EtsyRESTAPIManager { (error) -> Void in print(error) switch (request) { - case "/shipping/templates": + case "/private/shipping/templates": break - case "/listings": + case "/private/listings": print(error.userInfo["Response-Body"]) if((error.userInfo["Response-Body"]!.isEqualToString("price is below listing fee."))) { //@TODO: add alert to let user know that the price they have given is too low for etsy @@ -711,6 +828,8 @@ extension EtsyRESTAPIManager { } + + //MARK: - JSON Methods extension EtsyRESTAPIManager { diff --git a/Vendoo/Info.plist b/Vendoo/Info.plist index 364caa0..f14f845 100644 --- a/Vendoo/Info.plist +++ b/Vendoo/Info.plist @@ -58,13 +58,13 @@ NSAppTransportSecurity - NSIncludeSubdomains + NSAllowsArbitraryLoads NSExceptionAllowsInsecureHTTPLoads NSExceptionMinimumTLSVersion TLSv1.1 - NSAllowsArbitraryLoads + NSIncludeSubdomains UILaunchStoryboardName diff --git a/Vendoo/ItemImagePickerViewController.swift b/Vendoo/ItemImagePickerViewController.swift index 3114c1c..61863ab 100644 --- a/Vendoo/ItemImagePickerViewController.swift +++ b/Vendoo/ItemImagePickerViewController.swift @@ -18,18 +18,24 @@ class ItemImagePickerViewController: UIViewController { //Outlets @IBOutlet weak var cancelButton: UIButton! + @IBOutlet weak var descriptionLabel: UILabel! + @IBOutlet weak var quantityLabel: UILabel! @IBOutlet weak var possibleItemImageMain: UIImageView! @IBOutlet weak var possibleItemImage2: UIImageView! @IBOutlet weak var possibleItemImage3: UIImageView! @IBOutlet weak var possibleItemImage4: UIImageView! @IBOutlet weak var possibleItemImage5: UIImageView! @IBOutlet weak var itemQuantity: UITextField! + @IBOutlet weak var titleLabel: UILabel! @IBOutlet weak var itemName: UITextField! @IBOutlet weak var itemDescription: UITextView! @IBOutlet weak var itemPrice: UITextField! + @IBOutlet weak var textEditScrollView: UIScrollView! @IBOutlet weak var categoryPicker: UIPickerView! + @IBOutlet weak var priceLabel: UILabel! @IBOutlet weak var containerScrollView: UIScrollView! + //class variables var pickerData: [String] = [String]() var itemImagesSelections = [false,false,false,false,false] @@ -53,53 +59,24 @@ class ItemImagePickerViewController: UIViewController { self.itemQuantity.delegate = self self.itemPrice.delegate = self self.picker.delegate = self + addEditableItemsToScrollView() + // Input data into the Array: + pickerData = ["Category 1", "Category 2", "Category 3", "Category 4", "Category 5", "Category 6"] let tapGestureMain = UITapGestureRecognizer(target: self, action: #selector(ItemImagePickerViewController.takePicture)) self.view.addGestureRecognizer(tapGestureMain) - - if(self.isEditing) { - self.itemName.text = self.currentInformation["title"] as? String - self.itemDescription.text = self.currentInformation["description"] as? String - self.itemQuantity.text = self.currentInformation["quantity"] as? String - self.itemPrice.text = self.currentInformation["price"] as? String - - //@FIXME: Cancel button not changing to Back button label - dispatch_async(dispatch_get_main_queue(), { - self.cancelButton.titleLabel?.text = "Back" - }) - - var images = (self.currentInformation["images"] as? [UIImage])! - for i in 0...(images.count - 1) { - switch i { - case 0: - self.possibleItemImageMain.image = images[i] - self.itemImagesSelections[i] = true - break - case 1: - self.possibleItemImage2.image = images[i] - self.itemImagesSelections[i] = true - break - case 2: - self.possibleItemImage3.image = images[i] - self.itemImagesSelections[i] = true - break - case 3: - self.possibleItemImage4.image = images[i] - self.itemImagesSelections[i] = true - break - case 4: - self.possibleItemImage5.image = images[i] - self.itemImagesSelections[i] = true - break - default: - break - } - } - - } + + + //self.possibleItemImageMain.addGestureRecognizer(tapGestureMain) + //self.possibleItemImage2.addGestureRecognizer(tapGesture2) + //self.possibleItemImage3.addGestureRecognizer(tapGesture) + //self.possibleItemImage4.addGestureRecognizer(tapGesture) + //self.possibleItemImage5.addGestureRecognizer(tapGesture) + } + override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. @@ -118,6 +95,29 @@ class ItemImagePickerViewController: UIViewController { self.isEditing = !self.isEditing } + + + + /* + This function is called in the viewDidLoad function. + It will load all these editable items into the scroll view + being used to control the text editing views + */ + func addEditableItemsToScrollView(){ + self.textEditScrollView.addSubview(self.itemName) + self.textEditScrollView.addSubview(self.itemDescription) + self.textEditScrollView.addSubview(self.itemQuantity) + self.textEditScrollView.addSubview(self.priceLabel) + self.textEditScrollView.addSubview(self.titleLabel) + self.textEditScrollView.addSubview(self.quantityLabel) + self.textEditScrollView.addSubview(self.descriptionLabel) + self.textEditScrollView.addSubview(self.itemPrice) + } + + + + + } //MARK: - Navigation methods @@ -128,7 +128,6 @@ extension ItemImagePickerViewController { override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { // Get the new view controller using segue.destinationViewController. // Pass the selected object to the new view controller. - if(segue.identifier == "CategoriesSegue"){ print(self.itemName.text!) print(self.itemDescription.text!) @@ -361,8 +360,8 @@ extension ItemImagePickerViewController: UITextViewDelegate { textView.textColor = UIColor.blackColor() //optional } - self.containerScrollView.setContentOffset(CGPointMake(0, 200), animated: true) textView.becomeFirstResponder() + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 100), animated: true) } func textViewDidEndEditing(textView: UITextView) { @@ -371,7 +370,16 @@ extension ItemImagePickerViewController: UITextViewDelegate { textView.textColor = UIColor.lightGrayColor() //optional } - textView.resignFirstResponder() + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 0), animated: true) + } + + //Will check for the return key so it can dismiss the text view keyboard + func textView(textView: UITextView, shouldChangeTextInRange range: NSRange, replacementText text: String) -> Bool { + if text == "\n"{ + textView.resignFirstResponder() + return true + } + return true } func textViewDidChange(textView: UITextView) { @@ -398,13 +406,7 @@ extension ItemImagePickerViewController: UITextFieldDelegate { self.view.endEditing(true) } - func textFieldDidBeginEditing(textField: UITextField) { - self.containerScrollView.setContentOffset(CGPointMake(0, 200), animated: true) - } - func textFieldDidEndEditing(textField: UITextField) { - self.containerScrollView.setContentOffset(CGPointMake(0, 0), animated: true) - } } //Mark: - IBActions @@ -525,3 +527,36 @@ extension ItemImagePickerViewController { } + +//All these functions will handle the scrolling of the editable elements into view +extension ItemImagePickerViewController{ + + /* + Each of these functions are event handlers on edit begin/end for + each of the editable elements in the view. This will scroll them into view. + To see which function controls what, check the function name + */ + @IBAction func onTitleEditEnd(sender: AnyObject) { + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 0), animated: true) + } + + @IBAction func onPriceEditEnd(sender: AnyObject) { + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 0), animated: true) + } + @IBAction func onPriceEditBegin(sender: AnyObject) { + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 50), animated: true) + } + + @IBAction func onQuantityEditBegin(sender: AnyObject) { + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 50), animated: true) + } + + @IBAction func onQuantityEditEnd(sender: AnyObject) { + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 0), animated: true) + } + //This will scroll the title into view when editing it + @IBAction func editingTitleBegan(sender: AnyObject) { + self.textEditScrollView.setContentOffset(CGPoint( x: 0, y: 0), animated: true) + } + +} diff --git a/Vendoo/ListingPreviewViewController.swift b/Vendoo/ListingPreviewViewController.swift index 7cff821..fd7b2ff 100644 --- a/Vendoo/ListingPreviewViewController.swift +++ b/Vendoo/ListingPreviewViewController.swift @@ -383,7 +383,7 @@ extension ListingPreviewViewController { ] - self.etsyManager.sendPOSTRequest("/listings", body: body, onCompletion: { + self.etsyManager.sendPOSTRequest("/private/listings", body: body, onCompletion: { (dict, error) -> Void in var results = (dict as! [[String : AnyObject]])[0] @@ -395,15 +395,28 @@ extension ListingPreviewViewController { networkIDs["etsy"] = results["listing_id"] as? Int self.newInProgressListing["networkIDs"] = networkIDs - let imageBody = ["listing_id": networkIDs["etsy"] as! Int, - //"type":"image/jpg", - "image": UIImageJPEGRepresentation(self.itemPictureMain.image!, 0.45)!] + let tmpDirURL = NSURL.fileURLWithPath(NSTemporaryDirectory(), isDirectory: true) + let fileURL = tmpDirURL.URLByAppendingPathComponent("main").URLByAppendingPathExtension("jpg") + print("FilePath: \(fileURL.path!)") + do { + try UIImageJPEGRepresentation(self.itemPictureMain.image!, 0.45)!.writeToFile(fileURL.path!, options: NSDataWritingOptions.AtomicWrite) + }catch{ + (error) + print(error) + } - self.etsyManager.sendPOSTRequest(("listings/\(networkIDs["etsy"] as! Int)/images"), body: imageBody, onCompletion: { + let imageBody = ["listing_id": networkIDs["etsy"] as! Int, + "type":"image/jpg", + "image": UIImageJPEGRepresentation(self.itemPictureMain.image!, 0.45)!] + dispatch_group_leave(postingGroup) + + //@FIXME: Need to make etsy work with pictures + /* + self.etsyManager.sendPOSTRequest(("/private/listings/\(networkIDs["etsy"] as! Int)/images"), body: imageBody, onCompletion: { (dict, error) -> Void in dispatch_group_leave(postingGroup) - }) + })*/ }) @@ -543,13 +556,24 @@ extension ListingPreviewViewController { var imageURLs: [String] = [] let completion: ServiceResponse = {(metadata, error) -> Void in - - //for ebay due to its unique posting flow, will use firbase image storage url to add pictures - if (self.networksDictionary["ebay"]!){ - imageURLs.append((metadata?.downloadURL()?.absoluteString)!) - dispatch_group_leave(postingGroup) - }else{ - dispatch_group_leave(postingGroup) + if (error == nil) { + //for ebay due to its unique posting flow, will use firbase image storage url to add pictures + if (self.networksDictionary["ebay"]!){ + imageURLs.append((metadata?.downloadURL()?.absoluteString)!) + dispatch_group_leave(postingGroup) + }else{ + dispatch_group_leave(postingGroup) + } + }else { + let alert = UIAlertController(title: "A Problem Occurred", message: "Your listing was submitted to all networks except ebay, due to server side errors. This listing will not be tracked by Vendoo, and must be done manually. Please contact our support team about this issue.", preferredStyle: .Alert) + + alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in + + self.cancel(self) + alert.dismissViewControllerAnimated(true, completion: nil) + })) + + self.presentViewController(alert, animated: true, completion: nil) } diff --git a/Vendoo/Main.storyboard b/Vendoo/Main.storyboard index 69728fa..88d4ab6 100755 --- a/Vendoo/Main.storyboard +++ b/Vendoo/Main.storyboard @@ -362,6 +362,10 @@ + + + + @@ -369,6 +373,10 @@ + + + +