diff --git a/app/Jasonette.xcodeproj/project.pbxproj b/app/Jasonette.xcodeproj/project.pbxproj index 704f639b..cd6e8edb 100644 --- a/app/Jasonette.xcodeproj/project.pbxproj +++ b/app/Jasonette.xcodeproj/project.pbxproj @@ -10,6 +10,7 @@ 042852531E984B890081F742 /* NoPaddingButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 042852521E984B890081F742 /* NoPaddingButton.m */; }; 042A7FD51FAC662F00C1A3F2 /* JasonWebsocketAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 042A7FD41FAC662F00C1A3F2 /* JasonWebsocketAction.m */; }; 042A7FD91FAC665B00C1A3F2 /* JasonWebsocketService.m in Sources */ = {isa = PBXBuildFile; fileRef = 042A7FD81FAC665B00C1A3F2 /* JasonWebsocketService.m */; }; + 04325CA91FC8D7FE00820096 /* JasonKeyAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 04325CA81FC8D7FE00820096 /* JasonKeyAction.m */; }; 043814161EF7455800CC4706 /* JasonGlobalAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 043814151EF7455800CC4706 /* JasonGlobalAction.m */; }; 043EFED61F50B75800F5AD48 /* JasonPushService.m in Sources */ = {isa = PBXBuildFile; fileRef = 043EFED51F50B75800F5AD48 /* JasonPushService.m */; }; 045C77E91F0278EA00F06598 /* preload.json in Resources */ = {isa = PBXBuildFile; fileRef = 045C77E81F0278EA00F06598 /* preload.json */; }; @@ -97,6 +98,8 @@ 042A7FD41FAC662F00C1A3F2 /* JasonWebsocketAction.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JasonWebsocketAction.m; sourceTree = ""; }; 042A7FD71FAC665B00C1A3F2 /* JasonWebsocketService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JasonWebsocketService.h; sourceTree = ""; }; 042A7FD81FAC665B00C1A3F2 /* JasonWebsocketService.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JasonWebsocketService.m; sourceTree = ""; }; + 04325CA71FC8D7FE00820096 /* JasonKeyAction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JasonKeyAction.h; sourceTree = ""; }; + 04325CA81FC8D7FE00820096 /* JasonKeyAction.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JasonKeyAction.m; sourceTree = ""; }; 043814141EF7455800CC4706 /* JasonGlobalAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JasonGlobalAction.h; sourceTree = ""; }; 043814151EF7455800CC4706 /* JasonGlobalAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JasonGlobalAction.m; sourceTree = ""; }; 043EFED41F50B75800F5AD48 /* JasonPushService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JasonPushService.h; sourceTree = ""; }; @@ -278,6 +281,15 @@ name = $websocket; sourceTree = ""; }; + 04325CAA1FC8D80300820096 /* $key */ = { + isa = PBXGroup; + children = ( + 04325CA71FC8D7FE00820096 /* JasonKeyAction.h */, + 04325CA81FC8D7FE00820096 /* JasonKeyAction.m */, + ); + name = $key; + sourceTree = ""; + }; 043814171EF7455E00CC4706 /* $global */ = { isa = PBXGroup; children = ( @@ -486,6 +498,7 @@ 5E3177A91D1F294C00D87778 /* $convert */, 5E31778C1D1F208A00D87778 /* $geo */, 043814171EF7455E00CC4706 /* $global */, + 04325CAA1FC8D80300820096 /* $key */, 5EF904371DD10F7600C8A94E /* $log */, 5E31778B1D1F208500D87778 /* $media */, 5E31778E1D1F20A400D87778 /* $network */, @@ -1024,6 +1037,7 @@ 5E3177221D1E411F00D87778 /* JasonHorizontalSection.m in Sources */, 04D947EB1F16ACF50063CC65 /* JASONResponseSerializer.m in Sources */, 042A7FD91FAC665B00C1A3F2 /* JasonWebsocketService.m in Sources */, + 04325CA91FC8D7FE00820096 /* JasonKeyAction.m in Sources */, 5E3177301D1E411F00D87778 /* JasonGeoAction.m in Sources */, 5E3177591D1E411F00D87778 /* JasonOauthAction.m in Sources */, ); diff --git a/app/Jasonette/Jason.m b/app/Jasonette/Jason.m index 08749db3..8289ae1b 100644 --- a/app/Jasonette/Jason.m +++ b/app/Jasonette/Jason.m @@ -164,6 +164,7 @@ - (void)call: (NSDictionary *)action{ [self call: action with: nil]; } - (void)call: (id)action with: (NSDictionary*)data{ + JasonMemory *memory = [JasonMemory client]; // Ignore if there's another action being executed diff --git a/app/Jasonette/JasonKeyAction.h b/app/Jasonette/JasonKeyAction.h new file mode 100644 index 00000000..af96fd86 --- /dev/null +++ b/app/Jasonette/JasonKeyAction.h @@ -0,0 +1,14 @@ +// +// JasonKeyAction.h +// Jasonette +// +// Copyright © 2017 Jasonette. All rights reserved. +// + +#import +#import "LTHPasscodeViewController.h" +#import "JasonAction.h" +#import + +@interface JasonKeyAction : JasonAction +@end diff --git a/app/Jasonette/JasonKeyAction.m b/app/Jasonette/JasonKeyAction.m new file mode 100644 index 00000000..f82dcda8 --- /dev/null +++ b/app/Jasonette/JasonKeyAction.m @@ -0,0 +1,483 @@ +// +// JasonKeyAction.m +// Jasonette +// +// Copyright © 2017 Jasonette. All rights reserved. +// + +#import "JasonKeyAction.h" +@interface JasonKeyAction(){ + NSString *origin; + BOOL authenticated; +} +@end + +@implementation JasonKeyAction + +- (void) auth: (NSString *) o { + // 1. Save the original action + origin = o; + authenticated = NO; + + [LTHPasscodeViewController sharedUser].hidesCancelButton = NO; + [LTHPasscodeViewController sharedUser].hidesBackButton = NO; + [LTHPasscodeViewController sharedUser].delegate = self; + + // 2. Run authentication + if ([LTHPasscodeViewController doesPasscodeExist]) { + // Request user to enter passcode + if ([LTHPasscodeViewController didPasscodeTimerEnd]) { + [[LTHPasscodeViewController sharedUser] showLockScreenWithAnimation:YES + withLogout:YES + andLogoutTitle:@"Cancel"]; + } + } else { + [[LTHPasscodeViewController sharedUser] showForEnablingPasscodeInViewController:[[Jason client] getVC] asModal:YES]; + } + +} + +- (void) request { + /* + 1. Check if passcode exists + => If yes, request for passcode + => If no, run $key.password + */ + + + NSDictionary *parsed = [self _parse]; + NSString *url = parsed[@"url"]; + NSArray *items = self.options[@"items"]; + BOOL isRemote = [parsed[@"remote"] boolValue]; + + // 1. If the request is for a remote url + // - No need to ask for passcode + // - But only return public objects + if (isRemote) { + [self _fetch:url withQuery: items remote:isRemote]; + + // 2. If the request is for the current url + // - MUST ask for passcode, since it will be returning private content as well + } else { + if (authenticated) { + [self _fetch:url withQuery: items remote:isRemote]; + } else { + [self auth: @"request"]; + } + } + +} + + +/******************* +{ + "type": "$key.add", + "options": { + "index": 1, + "item": { + "type": { + "value": "ETH", + "read": "public" + }, + "publickey": { + "value": "0xjdnfenfkdewfhk384b4" + }, + "name": { + "value": "Ethereum" + }, + "privatekey": { + "value": "0x8dbgjenb8fngjwev742gfh47gh8ds87fh3bv" + } + } + } +} +*******************/ +- (void) add { + + if (!self.options || self.options.count == 0) { + [[Jason client] error: @{@"message": @"Must specify an item to add"}]; + return; + } + + if (self.options[@"item"]) { + NSDictionary *parsed = [self _parse]; + NSString *url = parsed[@"url"]; + BOOL isRemote = [parsed[@"remote"] boolValue]; + + if (isRemote) { + [[Jason client] error: @{@"message": @"You are not allowed to add keys remotely"}]; + } else { + NSMutableArray *items = [[self deserialize:url] mutableCopy]; + if (self.options[@"index"]) { + [items insertObject:self.options[@"item"] atIndex:[self.options[@"index"] intValue]]; + } else { + [items addObject:self.options[@"item"]]; + } + [self serialize:items atUrl:url]; + [[Jason client] success: @{@"items": items}]; + } + } else { + [[Jason client] error: @{@"message": @"Must specify an item to add"}]; + } +} +/******************* +{ + "type": "$key.remove", + "options": { + "index": 1 + } +} +*******************/ +- (void) remove { + NSDictionary *parsed = [self _parse]; + NSString *url = parsed[@"url"]; + BOOL isRemote = [parsed[@"remote"] boolValue]; + + // Can only add keys locally + if (isRemote) { + [[Jason client] error: @{@"message": @"You can only add keys from the owner view"}]; + } else { + if (authenticated) { + if (self.options[@"index"]) { + int index = [self.options[@"index"] intValue]; + NSMutableArray *items = [[self deserialize:url] mutableCopy]; + if (items.count > index) { + [items removeObjectAtIndex:index]; + [self serialize:items atUrl:url]; + [[Jason client] success: @{@"items": items}]; + } else { + [[Jason client] error: @{@"message": @"Invalid index"}]; + } + } else { + [[Jason client] error: @{@"message": @"Need to specify an index to remove from"}]; + } + } else { + [self auth:@"remove"]; + } + } +} + + + +/********************************* +{ + "type": "$key.update", + "options": { + "index": "{{$jason.index}}", + "item": { + "name": { + "value": "{{$jason.new_value}}" + } + } + }, + "success": { + "type": "$render" + } +} +*********************************/ +- (void) update { + NSDictionary *parsed = [self _parse]; + NSString *url = parsed[@"url"]; + BOOL isRemote = [parsed[@"remote"] boolValue]; + + // Can only add keys locally + if (isRemote) { + [[Jason client] error: @{@"message": @"You can only set keys from the owner view"}]; + } else { + if (authenticated) { + if (self.options[@"index"]) { + int index = [self.options[@"index"] intValue]; + NSMutableArray *items = [[self deserialize:url] mutableCopy]; + if (items.count > index) { + NSDictionary *item = [items[index] mutableCopy]; + + if (self.options[@"item"]) { + + NSDictionary *query_item = self.options[@"item"]; + + /** + + query_item := { + "name": { + "value": "{{$jason.new_value}}", + "read": "public" + }, + "type": { + "value": "BTC" + } + } + + **/ + + for (NSString *key in query_item) { + for (NSString *attr_key in query_item[key]) { + item[key][attr_key] = query_item[key][attr_key]; + } + } + + items[index] = item; + [self serialize:items atUrl:url]; + [[Jason client] success: @{@"items": items}]; + + } else { + [[Jason client] error: @{@"message": @"Please specify a query"}]; + } + } else { + [[Jason client] error: @{@"message": @"Invalid index"}]; + } + } else { + [[Jason client] error: @{@"message": @"Need to specify an index to set value of"}]; + } + + } else { + [self auth:@"update"]; + } + } +} + +/********************************* +{ + "type": "$key.clear", + "success": { + "type": "$render" + } +} +*********************************/ +- (void) clear { + NSDictionary *parsed = [self _parse]; + NSString *url = parsed[@"url"]; + BOOL isRemote = [parsed[@"remote"] boolValue]; + + // Can only add keys locally + if (isRemote) { + [[Jason client] error: @{@"message": @"You can only clear keys from the owner view"}]; + } else { + if (authenticated) { + NSArray *items = [[NSArray alloc] init]; + [self serialize:items atUrl:url]; + [[Jason client] success: @{@"items": items}]; + + } else { + [self auth: @"clear"]; + } + } +} +/* + Update Password + */ +- (void) password { + // Request user to register a password + [LTHPasscodeViewController sharedUser].hidesCancelButton = NO; + [LTHPasscodeViewController sharedUser].hidesBackButton = NO; + [[LTHPasscodeViewController sharedUser] showForChangingPasscodeInViewController:[[Jason client] getVC] asModal:YES]; +} + +# pragma mark - internal +- (NSDictionary *) _parse{ + // 1. Determine the URL key to query + // 2. Detect if the request is a remote request or local request + NSString *url = [self.options[@"url"] lowercaseString]; + JasonViewController *current_vc = (JasonViewController *)[[Jason client] getVC]; + + Boolean isRemote; + if (url) { + // Another view + isRemote = YES; + } else { + // Current view + url = [current_vc.url lowercaseString]; + isRemote = NO; + } + + if (isRemote) { + return @{ + @"remote": @YES, + @"url": url + }; + } else { + return @{ + @"remote": @NO, + @"url": url + }; + } +} +- (NSArray *) deserialize: (NSString *) url { + UICKeyChainStore *keychain = [UICKeyChainStore keyChainStoreWithService:url]; + NSData *data = [keychain dataForKey:@"$key"]; + NSDictionary *key_root = (NSDictionary*) [NSKeyedUnarchiver unarchiveObjectWithData:data]; + NSArray *items = key_root[@"items"]; + if (items) { + return items; + } else { + return @[]; + } +} +- (void) serialize: (NSArray *) items atUrl: (NSString *) url{ + UICKeyChainStore *keychain = [UICKeyChainStore keyChainStoreWithService:url]; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:@{@"items": items}]; + [keychain setData:data forKey:@"$key"]; +} +- (NSArray *) _filter_public: (NSArray *)items { + + /** + + items := [{ + "type": { + "value": "BTC", + "read": "public" + }, + "name": { + "value": "Bitcoin", + "read": "public" + }, + "publickey": { + "value": "0xm4ng83ng8wengn3kngdn3ngknal32ng". + "read": "public" + }, + "privatekey": { + "value": "0xngn4bgbebgbgbejbgjbjbjbebsdjbdskb328fg3bgjewh2112hfdhg" + } + }, { + ... + }, { + ... + }] + + **/ + + NSMutableArray *filtered_items = [[NSMutableArray alloc] init]; + for(int i=0; i 1.0' pod 'FLEX', '~> 2.0', :configurations => ['Debug'] pod 'SocketRocket' + pod 'LTHPasscodeViewController' + #pod 'GoogleMobileAds', '~> 7.8' post_install do |installer| diff --git a/app/Podfile.lock b/app/Podfile.lock index ac5342e6..6f69c4bd 100644 --- a/app/Podfile.lock +++ b/app/Podfile.lock @@ -45,6 +45,7 @@ PODS: - JDStatusBarNotification (1.5.3) - JSCoreBom (1.1.1) - libPhoneNumber-iOS (0.8.13) + - LTHPasscodeViewController (3.8.10) - MBProgressHUD (1.0.0) - NSGIF (1.2) - NSHash (1.1.0) @@ -90,6 +91,7 @@ DEPENDENCIES: - JDStatusBarNotification - JSCoreBom (~> 1.1.1) - libPhoneNumber-iOS + - LTHPasscodeViewController - MBProgressHUD (~> 1.0) - NSGIF (~> 1.0) - NSHash @@ -145,6 +147,7 @@ SPEC CHECKSUMS: JDStatusBarNotification: 29413865af11c862c17180610b0f46a21118b412 JSCoreBom: 712590b897ecd74d9fa9cb0f16857491411c932b libPhoneNumber-iOS: 3a37004baf779b4262ab29a31a87d2ae668159d4 + LTHPasscodeViewController: 17b0d49903dc1db6d35b95ccc4ecc4253791601f MBProgressHUD: 4890f671c94e8a0f3cf959aa731e9de2f036d71a NSGIF: 73b435330174a9d04db9886a232c605a3e8139b5 NSHash: 61d598c6d48957c5557f1eef0aeafd6ef5ec5fb7 @@ -167,6 +170,6 @@ SPEC CHECKSUMS: TWMessageBarManager: fd84e7948ba7968a2b5d9454859135761214ec56 UICKeyChainStore: f1cbd42216a113f0165de1e733e62905b8823432 -PODFILE CHECKSUM: ff638f73ded7730662d7ed545fb35075e747caa1 +PODFILE CHECKSUM: ba82972a11ef499ab9fab03ac4de5a0eceed8f5a COCOAPODS: 1.2.1 diff --git a/app/Pods/LTHPasscodeViewController/LICENSE.txt b/app/Pods/LTHPasscodeViewController/LICENSE.txt new file mode 100644 index 00000000..1e7ee46b --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/LICENSE.txt @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Roland Leth + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission 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. \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHKeychainUtils.h b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHKeychainUtils.h new file mode 100644 index 00000000..d2b6b538 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHKeychainUtils.h @@ -0,0 +1,43 @@ +// +// SFHFKeychainUtils.h +// +// Created by Buzz Andersen on 10/20/08. +// Based partly on code by Jonathan Wight, Jon Crosby, and Mike Malone. +// Copyright 2008 Sci-Fi Hi-Fi. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// +// The above copyright notice and this permission 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 + +/** + Renamed it to LTHKeychainUtils because it could have conflicted with SFHFKeychainUtils already present in the project. This version is ARC-compliant, but all the rights and thanks go to Buzz Andersen for SFHFKeychainUtils. + */ +@interface LTHKeychainUtils : NSObject { + +} + ++ (NSString *) getPasswordForUsername: (NSString *) username andServiceName: (NSString *) serviceName error: (NSError **) error; ++ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting error: (NSError **) error; ++ (BOOL) deleteItemForUsername: (NSString *) username andServiceName: (NSString *) serviceName error: (NSError **) error; + +@end \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHKeychainUtils.m b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHKeychainUtils.m new file mode 100644 index 00000000..0297f0d0 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHKeychainUtils.m @@ -0,0 +1,275 @@ +// +// SFHFKeychainUtils.m +// + +// Created by Buzz Andersen on 10/20/08. +// Based partly on code by Jonathan Wight, Jon Crosby, and Mike Malone. +// Copyright 2008 Sci-Fi Hi-Fi. All rights reserved. +// + +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, +// copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the +// Software is furnished to do so, subject to the following +// conditions: +// + +// The above copyright notice and this permission 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 "LTHKeychainUtils.h" +#import + + +static NSString *SFHFKeychainUtilsErrorDomain = @"SFHFKeychainUtilsErrorDomain"; + +@implementation LTHKeychainUtils + + ++ (NSString *)getPasswordForUsername:(NSString *)username andServiceName:(NSString *)serviceName error:(NSError **)error { + + if (!username || !serviceName) { + if (error != nil) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: -2000 + userInfo: nil]; + } + + return nil; + } + + if (error != nil) { + *error = nil; + } + + // Set up a query dictionary with the base query attributes: item type (generic), username, and service + NSArray *keys = @[(__bridge_transfer NSString *) kSecClass, + (__bridge_transfer NSString *) kSecAttrAccount, + (__bridge_transfer NSString *) kSecAttrService]; + NSArray *objects = @[(__bridge_transfer NSString *) kSecClassGenericPassword, + username, + serviceName]; + + // First do a query for attributes, in case we already have a Keychain item with no password data set. + // One likely way such an incorrect item could have come about is due to the previous (incorrect) + // version of this code (which set the password as a generic attribute instead of password data). + + NSDictionary *attributeQuery = + [NSDictionary dictionaryWithObjects: [objects arrayByAddingObject: @YES] + forKeys: [keys arrayByAddingObject: (__bridge_transfer NSString *) kSecReturnAttributes]]; + + CFTypeRef attrResult = NULL; + OSStatus status = SecItemCopyMatching((__bridge CFDictionaryRef) attributeQuery, + (CFTypeRef *) &attrResult); + if (attrResult) CFRelease(attrResult); + + if (status != noErr) { + // No existing item found - simply return nil for the password + if (error != nil && status != errSecItemNotFound) { + //Only return an error if a real exception happened - not simply for "not found." + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: status + userInfo: nil]; + } + + return nil; + } + + // We have an existing item, now query for the password data associated with it. + NSDictionary *passwordQuery = + [NSDictionary dictionaryWithObjects: [objects arrayByAddingObject: @YES] + forKeys: [keys arrayByAddingObject: (__bridge_transfer NSString *) kSecReturnData]]; + + CFTypeRef resData = NULL; + status = SecItemCopyMatching((__bridge CFDictionaryRef) passwordQuery, + (CFTypeRef *) &resData); + NSData *resultData = (__bridge_transfer NSData *)resData; + + if (status != noErr) { + if (status == errSecItemNotFound) { + // We found attributes for the item previously, but no password now, so return a special error. + // Users of this API will probably want to detect this error and prompt the user to + // re-enter their credentials. When you attempt to store the re-entered credentials + // using storeUsername:andPassword:forServiceName:updateExisting:error + // the old, incorrect entry will be deleted and a new one with a properly encrypted + // password will be added. + + if (error != nil) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: -1999 + userInfo: nil]; + } + } + else { + // Something else went wrong. Simply return the normal Keychain API error code. + if (error != nil) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: status + userInfo: nil]; + } + } + + return nil; + } + + NSString *password = nil; + + if (resultData) { + password = [[NSString alloc] initWithData: resultData + encoding: NSUTF8StringEncoding]; + } + else { + // There is an existing item, but we weren't able to get password data for it for some reason, + // Possibly as a result of an item being incorrectly entered by the previous code. + // Set the -1999 error so the code above us can prompt the user again. + + if (error != nil) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: -1999 + userInfo: nil]; + } + } + + return password; +} + ++ (BOOL)storeUsername:(NSString *)username andPassword:(NSString *)password forServiceName:(NSString *)serviceName updateExisting:(BOOL)updateExisting error:(NSError **)error { + + if (!username || !password || !serviceName) { + if (error != nil) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: -2000 + userInfo: nil]; + } + + return NO; + } + + // See if we already have a password entered for these credentials. + + NSError *getError = nil; + NSString *existingPassword = [self getPasswordForUsername: username + andServiceName: serviceName + error: &getError]; + + if ([getError code] == -1999) { + // There is an existing entry without a password properly stored (possibly as a result of the previous incorrect version of this code. + + // Delete the existing item before moving on entering a correct one. + getError = nil; + + [self deleteItemForUsername: username + andServiceName: serviceName + error: &getError]; + + if ([getError code] != noErr) { + if (error != nil) { + *error = getError; + } + + return NO; + } + } + else if ([getError code] != noErr) { + if (error != nil) { + *error = getError; + } + + return NO; + } + + if (error != nil) { + *error = nil; + } + + OSStatus status = noErr; + NSData *encodedPassword = [password dataUsingEncoding: NSUTF8StringEncoding]; + NSArray *keys = @[(__bridge_transfer NSString *) kSecClass, + (__bridge_transfer NSString *) kSecAttrService, + (__bridge_transfer NSString *) kSecAttrLabel, + (__bridge_transfer NSString *) kSecAttrAccount]; + NSArray *objects = @[(__bridge_transfer NSString *) kSecClassGenericPassword, + serviceName, + serviceName, + username]; + + if (existingPassword) { + // We have an existing, properly entered item with a password. + // Update the existing item. + + if (![existingPassword isEqualToString: password] && updateExisting) { + // Only update if we're allowed to update existing. If not, simply do nothing. + NSDictionary *query = [NSDictionary dictionaryWithObjects: objects + forKeys: keys]; + NSDictionary *pwd = @{ (__bridge_transfer NSString *) kSecValueData: encodedPassword }; + status = SecItemUpdate((__bridge CFDictionaryRef) query, + (__bridge CFDictionaryRef) pwd); + } + } + else { + // No existing entry (or an existing, improperly entered, and therefore now + // deleted, entry). Create a new entry. + + NSDictionary *query = + [NSDictionary dictionaryWithObjects: [objects arrayByAddingObject:encodedPassword] + forKeys: [keys arrayByAddingObject: (__bridge_transfer NSString *) kSecValueData]]; + status = SecItemAdd((__bridge CFDictionaryRef) query, NULL); + } + if (error != nil && status != noErr) { + // Something went wrong with adding the new item. Return the Keychain error code. + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: status + userInfo: nil]; + return NO; + } + + return YES; +} + ++ (BOOL)deleteItemForUsername:(NSString *)username andServiceName:(NSString *)serviceName error:(NSError **)error { + + if (!username || !serviceName) { + if (error != nil) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: -2000 + userInfo: nil]; + } + + return NO; + } + + if (error != nil) { + *error = nil; + } + + NSDictionary *query = + @{ (__bridge_transfer NSString *) kSecClass: (__bridge_transfer NSString *) kSecClassGenericPassword, + (__bridge_transfer NSString *) kSecAttrAccount: username, + (__bridge_transfer NSString *) kSecAttrService: serviceName, + (__bridge_transfer NSString *) kSecReturnAttributes: @YES }; + OSStatus status = SecItemDelete((__bridge CFDictionaryRef) query); + + if (error != nil && status != noErr) { + *error = [NSError errorWithDomain: SFHFKeychainUtilsErrorDomain + code: status + userInfo: nil]; + return NO; + } + + return YES; +} + +@end diff --git a/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHPasscodeViewController.h b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHPasscodeViewController.h new file mode 100755 index 00000000..65f0f32d --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHPasscodeViewController.h @@ -0,0 +1,424 @@ +// +// PasscodeViewController.h +// LTHPasscodeViewController +// +// Created by Roland Leth on 9/6/13. +// Copyright (c) 2013 Roland Leth. All rights reserved. +// + +#import + +@protocol LTHPasscodeViewControllerDelegate +@optional +/** + @brief Called right before the passcode view controller will be dismissed or popped. + */ +- (void)passcodeViewControllerWillClose; +/** + @brief Called when the max number of failed attempts has been reached. + */ +- (void)maxNumberOfFailedAttemptsReached; +/** + @brief Called when the passcode was entered successfully. + */ +- (void)passcodeWasEnteredSuccessfully; +/** + @brief Called when the passcode was enabled. + */ +- (void)passcodeWasEnabled; +/** + @brief Called when the logout button was pressed. + */ +- (void)logoutButtonWasPressed; +/** + @brief Handle here the retrieval of the duration that needs to pass while app is in background for the lock to be displayed. + @details Called when @c +timerDuration is called and @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @return The duration. + */ +- (NSTimeInterval)timerDuration; +/** + @brief Handle here the saving of the duration that needs to pass while the app is in background for the lock to be displayed. + @details Called when @c +saveTimerDuration: is called and @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @param duration The duration. + */ +- (void)saveTimerDuration:(NSTimeInterval)duration; +/** + @brief Handle here the retrieval of the time at which the timer started. + @details Called when @c +timerStartTime is called and @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @return The time at which the timer started. + */ +- (NSTimeInterval)timerStartTime; +/** + @brief Handle here the saving of the current time. + @details Called when @c +saveTimerStartTime is called and @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + */ +- (void)saveTimerStartTime; +/** + @brief Handle here the check if the timer has ended and the lock has to be displayed. + @details Called when @c +didPasscodeTimerEnd is called and @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @return @c YES if the timer ended and the lock has to be displayed. + */ +- (BOOL)didPasscodeTimerEnd; +/** + @brief Handle here the passcode deletion. + @details Called when @c +deletePasscode or @c +deletePasscodeAndClose are called and @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + */ +- (void)deletePasscode; +/** + @brief Handle here the saving of the passcode. + @details Called if @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @param passcode The passcode. + */ +- (void)savePasscode:(NSString *)passcode; +/** + @brief Retrieve here the saved passcode. + @details Called if @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @return The passcode. + */ +- (NSString *)passcode; +/** + @brief Handle here the saving of the preference for allowing the use of TouchID. + @details Called if @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @param allowUnlockWithTouchID The boolean for the preference for allowing the use of TouchID. + */ +- (void)saveAllowUnlockWithTouchID:(BOOL)allowUnlockWithTouchID; +/** + @brief Retrieve here the saved preference for allowing the use of TouchID. + @details Called if @c +useKeychain:NO was used, but falls back to the Keychain anyway if not implemented. + @return allowUnlockWithTouchID boolean. + */ +- (BOOL)allowUnlockWithTouchID; +@end + +@interface LTHPasscodeViewController : UIViewController + +/** + @brief The delegate. + */ +@property (nonatomic, weak) id delegate; +/** + @brief The number of digits for the simple passcode. Default is @c 4, or the length of the passcode, if one exists. + + @b Attention: If you increase the number of digits and they do not fit on screen anymore, please decrease the @c horizontalGap accordingly. + + @b Warning: If a passcode is present, changing this will not work, since it would not allow the user to enter his passcode anymore. Please disable the passcode first. + */ +@property (nonatomic, assign) NSInteger digitsCount; +/** + @brief The gap between the passcode digits. Default is @c 40 for iPhone, @c 60 for iPad. + */ +@property (nonatomic, assign) CGFloat horizontalGap; +/** + @brief The gap between the top label and the passcode digits/field. + */ +@property (nonatomic, assign) CGFloat verticalGap; +/** + @brief The offset between the top label and middle position. + */ +@property (nonatomic, assign) CGFloat verticalOffset; +/** + @brief The gap between the passcode digits and the failed label. + */ +@property (nonatomic, assign) CGFloat failedAttemptLabelGap; +/** + @brief The height for the complex passcode overlay. + */ +@property (nonatomic, assign) CGFloat passcodeOverlayHeight; +/** + @brief The font size for the top label. + */ +@property (nonatomic, assign) CGFloat labelFontSize; +/** + @brief The font size for the passcode digits. + */ +@property (nonatomic, assign) CGFloat passcodeFontSize; +/** + @brief The font for the top label. + */ +@property (nonatomic, strong) UIFont *labelFont; +/** + @brief The font for the passcode digits. + */ +@property (nonatomic, strong) UIFont *passcodeFont; +/** + @brief The background color for the top label. + */ +@property (nonatomic, strong) UIColor *enterPasscodeLabelBackgroundColor; +/** + @brief The background color for the view. + */ +@property (nonatomic, strong) UIColor *backgroundColor; +/** + @brief The background image for the coverview. + */ +@property (nonatomic, strong) UIImage *backgroundImage; +/** + @brief The background color for the cover view that appears on top of the app, visible in the multitasking. + */ +@property (nonatomic, strong) UIColor *coverViewBackgroundColor; +/** + @brief The background color for the passcode digits. + */ +@property (nonatomic, strong) UIColor *passcodeBackgroundColor; +/** + @brief The background color for the failed attempt label. + */ +@property (nonatomic, strong) UIColor *failedAttemptLabelBackgroundColor; +/** + @brief The text color for the top label. + */ +@property (nonatomic, strong) UIColor *labelTextColor; +/** + @brief The text color for the passcode digits. + */ +@property (nonatomic, strong) UIColor *passcodeTextColor; +/** + @brief The text color for the failed attempt label. + */ +@property (nonatomic, strong) UIColor *failedAttemptLabelTextColor; +/** + @brief The tint color to apply to the navigation items and bar button items. + */ +@property (nonatomic, strong) UIColor *navigationBarTintColor; +/** + @brief The tint color to apply to the navigation bar background. + */ +@property (nonatomic, strong) UIColor *navigationTintColor; +/** + @brief The color for te navigation bar's title. + */ +@property (nonatomic, strong) UIColor *navigationTitleColor; +/** + @brief The string to be used as username for the passcode in the Keychain. + */ +@property (nonatomic, strong) NSString *keychainPasscodeUsername; +/** + @brief The string to be used as username for the timer start time in the Keychain. + */ +@property (nonatomic, strong) NSString *keychainTimerStartUsername; +/** + @brief The string to be used as username for the timer duration in the Keychain. + */ +@property (nonatomic, strong) NSString *keychainTimerDurationUsername; +/** + @brief The string to be used as username for the "isSimple" in the Keychain. + */ +@property (nonatomic, strong) NSString *keychainPasscodeIsSimpleUsername; +/** + @brief The string to be used as service name for all the Keychain entries. + */ +@property (nonatomic, strong) NSString *keychainServiceName; +/** + @brief The string to be used as username for allow TouchID unlock in the Keychain. + */ +@property (nonatomic, strong) NSString *keychainAllowUnlockWithTouchID; +/** + @brief The character for the passcode digit. + */ +@property (nonatomic, strong) NSString *passcodeCharacter; +/** + @brief The table name for NSLocalizedStringFromTable. + */ +@property (nonatomic, strong) NSString *localizationTableName; +/** + @brief The tag for the cover view. + */ +@property (nonatomic, assign) NSInteger coverViewTag; +/** + @brief The string displayed when entering your old passcode (while changing). + */ +@property (nonatomic, strong) NSString *enterOldPasscodeString; +/** + @brief The string displayed when entering your passcode. + */ +@property (nonatomic, strong) NSString *enterPasscodeString; +/** + @brief The string used to explain the reason of setting passcode. + @details The given string is oprional and is displayed below passcode field. + */ +@property (nonatomic, strong) NSString *enterPasscodeInfoString; +/** + @brief A Boolean value that indicates whether the @c enterPasscodeInfoString is displayed (@c YES) or not (@c NO). Default is @c YES. + */ +@property (nonatomic, assign) BOOL displayAdditionalInfoDuringSettingPasscode; +/** + @brief The string displayed when entering your new passcode (while changing). + */ +@property (nonatomic, strong) NSString *enterNewPasscodeString; +/** + @brief The string displayed when enabling your passcode. + */ +@property (nonatomic, strong) NSString *enablePasscodeString; +/** + @brief The string displayed when changing your passcode. + */ +@property (nonatomic, strong) NSString *changePasscodeString; +/** + @brief The string displayed when disabling your passcode. + */ +@property (nonatomic, strong) NSString *turnOffPasscodeString; +/** + @brief The string displayed when reentering your passcode. + */ +@property (nonatomic, strong) NSString *reenterPasscodeString; +/** + @brief The string displayed when reentering your new passcode (while changing). + */ +@property (nonatomic, strong) NSString *reenterNewPasscodeString; +/** + @brief The string displayed while user unlocks with TouchID. + */ +@property (nonatomic, strong) NSString *touchIDString; +/** + @brief The duration of the lock animation. + */ +@property (nonatomic, assign) CGFloat lockAnimationDuration; +/** + @brief The duration of the slide animation. + */ +@property (nonatomic, assign) CGFloat slideAnimationDuration; +/** + @brief The maximum number of failed attempts allowed. + */ +@property (nonatomic, assign) NSInteger maxNumberOfAllowedFailedAttempts; +/** + @brief The navigation bar, if one was used. + */ +@property (nonatomic, strong) UINavigationBar *navBar; +/** + @brief A Boolean value that indicates whether the navigation bar is translucent (@c YES) or not (@c NO). + */ +@property (nonatomic, assign) BOOL navigationBarTranslucent; +/** + @brief A Boolean value that indicates whether the back bar button is hidden (@c YES) or not (@c NO). Default is @c YES. + */ +@property (nonatomic, assign) BOOL hidesBackButton; + +/** + @brief A Boolean value that indicates whether the right bar button is hidden (@c YES) or not (@c NO). Default is @c YES. + */ +@property (nonatomic, assign) BOOL hidesCancelButton; + +/** + @brief A Boolean value that indicates whether TouchID can be used (@c YES) or not (@c NO). Default is @c YES. + */ +@property (nonatomic, assign) BOOL allowUnlockWithTouchID; + + +// MARK: - Methods + +/** + @brief Used for displaying the lock. The passcode view is added directly on the keyWindow. + @param hasLogout Set to @c YES for a navBar with a Logout button, set to @c NO for no navBar. + @param logoutTitle The title of the Logout button. + */ +- (void)showLockScreenWithAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString *)logoutTitle; +/** + @brief Used for displaying the lock over a view; the lock will have the same size and center as the @c superview. + @param superview The @c view where the lock will be added to and presented over. + @param hasLogout Set to @c YES for a navBar with a Logout button, set to @c NO for no navBar. + @param logoutTitle The title of the Logout button. + */ +- (void)showLockScreenOver:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString *)logoutTitle; +/** + @brief Used for enabling the passcode. + @details The back bar button is hidden by default. Set @c hidesBackButton to @c NO if you want it to be visible. + @param viewController The view controller where the passcode view controller will be displayed. + @param isModal Set to @c YES to present as a modal, or to @c NO to push on the current nav stack. + */ +- (void)showForEnablingPasscodeInViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +/** + @brief Used for changing the passcode. + @details The back bar button is hidden by default. Set @c hidesBackButton to @c NO if you want it to be visible. + @param viewController The view controller where the passcode view controller will be displayed. + @param isModal Set to @c YES to present as a modal, or to @c NO to push on the current nav stack. + */ +- (void)showForChangingPasscodeInViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +/** + @brief Used for disabling the passcode. + @details The back bar button is hidden by default. Set @c hidesBackButton to @c NO if you want it to be visible. + @param viewController The view controller where the passcode view controller will be displayed. + @param isModal Set to @c YES to present as a modal, or to @c NO to push on the current nav stack. + */ +- (void)showForDisablingPasscodeInViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +/** + @brief Closes the passcode view controller. + */ ++ (void)close; + +// MARK: - Passcode related methods + +/** + @brief Returns a Boolean value that indicates whether a simple, N digit (4 by default or digitsCount) (@c YES) or a complex passcode will be used (@c NO). + @return @c YES if the passcode is simple, @c NO if the passcode is complex + */ +- (BOOL)isSimple; +/** + @brief Sets if the passcode should be simple (@c 4 digits by default) or complex. + @param isSimple Set to @c YES for a simple passcode, and to @c NO for a complex passcode. + @param viewController The view controller where the passcode view controller will be displayed. + @param isModal Set to @c YES to present as a modal, or to @c NO to push on the current nav stack. + @details @c inViewController and @c asModal are needed because the delegate is of type id, and the passcode needs to be presented somewhere and with a specific style - modal or pushed. + */ +- (void)setIsSimple:(BOOL)isSimple inViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +/** + @brief The passcode view will be shown by default when entering the app from background. This method disables this behavior by removing the observers for UIApplicationDidEnterBackgroundNotification and UIApplicationWillEnterForegroundNotification. + */ +- (void)disablePasscodeWhenApplicationEntersBackground; +/** + @brief The passcode view will be shown by default when entering the app from background. `disablePasscodeWhenApplicationEntersBackground` can disable that behavior and this method enables it again, by adding back the observers for UIApplicationDidEnterBackgroundNotification and UIApplicationWillEnterForegroundNotification + */ +- (void)enablePasscodeWhenApplicationEntersBackground; +/** + @brief Returns a Boolean value that indicates whether a passcode exists (@c YES) or not (@c NO). + @return @c YES if a passcode is enabled. This also means it is enabled, unless custom logic was added to the library. + */ ++ (BOOL)doesPasscodeExist; +/** + @brief Retrieves from the keychain the duration while app is in background after which the lock has to be displayed. + @return The duration. + */ ++ (NSTimeInterval)timerDuration; +/** + @brief Saves in the keychain the duration that needs to pass while app is in background for the lock to be displayed. + @param duration The duration. + */ ++ (void)saveTimerDuration:(NSTimeInterval)duration; +/** + @brief Retrieves from the keychain the time at which the timer started. + @return The time, as @c timeIntervalSinceReferenceDate, at which the timer started. + */ ++ (NSTimeInterval)timerStartTime; +/** + @brief Saves the current time, as @c timeIntervalSinceReferenceDate. + */ ++ (void)saveTimerStartTime; +/** + @brief Returns a Boolean value that indicates whether the timer has ended (@c YES) and the lock has to be displayed or not (@c NO). + @return @c YES if the timer ended and the lock has to be displayed. + */ ++ (BOOL)didPasscodeTimerEnd; +/** + @brief Removes the passcode from the keychain. + */ ++ (void)deletePasscode; +/** + @brief Removes the passcode from the keychain and closes the passcode view controller. + */ ++ (void)deletePasscodeAndClose; +/** + @brief Call this if you want to save and read the passcode and timers to and from somewhere else rather than the Keychain. + @attention All the protocol methods will fall back to the Keychain if not implemented, even if calling this method with @c NO. This allows for flexibility over what and where you save. + @param useKeychain Set to @c NO if you want to save and read the passcode and timers to and from somewhere else rather than the Keychain. Default is @c YES. + */ ++ (void)useKeychain:(BOOL)useKeychain; +/** + @brief Returns the shared instance of the passcode view controller. + */ ++ (instancetype)sharedUser; +/** + @brief Resets the passcode. + */ +- (void)resetPasscode; + +@end diff --git a/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHPasscodeViewController.m b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHPasscodeViewController.m new file mode 100755 index 00000000..d01ddb38 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/LTHPasscodeViewController/LTHPasscodeViewController.m @@ -0,0 +1,1939 @@ +// +// PasscodeViewController.m +// LTHPasscodeViewController +// +// Created by Roland Leth on 9/6/13. +// Copyright (c) 2013 Roland Leth. All rights reserved. +// + +#import "LTHPasscodeViewController.h" +#import "LTHKeychainUtils.h" +#if !(TARGET_IPHONE_SIMULATOR) +#import +#endif + +#define LTHiOS8 ([[[UIDevice currentDevice] systemVersion] compare:@"8.0" \ +options:NSNumericSearch] != NSOrderedAscending) +#define LTHiPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +#define LTHFailedAttemptLabelHeight [_failedAttemptLabel.text sizeWithAttributes: @{NSFontAttributeName : _labelFont}].height +#else +// Thanks to Kent Nguyen - https://github.com/kentnguyen +#define LTHFailedAttemptLabelHeight [_failedAttemptLabel.text sizeWithFont:_labelFont].height +#endif + +#ifndef LTHPasscodeViewControllerStrings +#define LTHPasscodeViewControllerStrings(key) \ +[[NSBundle bundleWithPath:[[NSBundle bundleForClass:[LTHPasscodeViewController class]] pathForResource:@"LTHPasscodeViewController" ofType:@"bundle"]] localizedStringForKey:(key) value:@"" table:_localizationTableName] +#endif + +// MARK: Please read +/* + Using windows[0] instead of keyWindow due to an issue with UIAlertViews / UIActionSheets - displaying the lockscreen when an alertView / actionSheet is visible, or displaying one after the lockscreen is visible results in a few cases: + * the lockscreen and the keyboard appear on top the av/as, but + * the dimming of the av/as appears on top the lockscreen; + * if the app is closed and reopened, the order becomes av/as - lockscreen - dimming - keyboard. + * the lockscreen always appears behind the av/as, while the keyboard + * doesn't appear until the av/as is dismissed; + * appears on top on the av/as - if the app is closed and reopened with the av/as visible. + * the lockscreen appears above the av/as, while the keyboard appears below, so there's no way to enter the passcode. + + The current implementation shows the lockscreen behind the av/as. + + Relevant links: + * https://github.com/rolandleth/LTHPasscodeViewController/issues/16 + * https://github.com/rolandleth/LTHPasscodeViewController/issues/164 (the description found above) + * https://stackoverflow.com/questions/19816142/uialertviews-uiactionsheets-and-keywindow-problems + + Any help would be greatly appreciated. + */ + +#ifdef LTH_IS_APP_EXTENSION +#define LTHMainWindow [UIApplication sharedApplication].keyWindow +#else +#define LTHMainWindow [UIApplication sharedApplication].windows[0] +#endif + +@interface LTHPasscodeViewController () +@property (nonatomic, strong) UIView *coverView; +@property (nonatomic, strong) UIView *animatingView; +@property (nonatomic, strong) UIView *complexPasscodeOverlayView; +@property (nonatomic, strong) UIView *simplePasscodeView; +@property (nonatomic, strong) UIImageView *backgroundImageView; + +@property (nonatomic, strong) UITextField *passcodeTextField; +@property (nonatomic, strong) UILabel *enterPasscodeInfoLabel; + +@property (nonatomic, strong) NSMutableArray *digitTextFieldsArray; + +@property (nonatomic, strong) UILabel *failedAttemptLabel; +@property (nonatomic, strong) UILabel *enterPasscodeLabel; +@property (nonatomic, strong) UIButton *OKButton; + +@property (nonatomic, strong) NSString *tempPasscode; +@property (nonatomic, assign) NSInteger failedAttempts; + +@property (nonatomic, assign) CGFloat modifierForBottomVerticalGap; +@property (nonatomic, assign) CGFloat fontSizeModifier; + +@property (nonatomic, assign) BOOL newPasscodeEqualsOldPasscode; +@property (nonatomic, assign) BOOL passcodeAlreadyExists; +@property (nonatomic, assign) BOOL usesKeychain; +@property (nonatomic, assign) BOOL displayedAsModal; +@property (nonatomic, assign) BOOL displayedAsLockScreen; +@property (nonatomic, assign) BOOL isUsingNavBar; +@property (nonatomic, assign) BOOL isCurrentlyOnScreen; +@property (nonatomic, assign) BOOL isSimple; // YES by default +@property (nonatomic, assign) BOOL isUserConfirmingPasscode; +@property (nonatomic, assign) BOOL isUserBeingAskedForNewPasscode; +@property (nonatomic, assign) BOOL isUserTurningPasscodeOff; +@property (nonatomic, assign) BOOL isUserChangingPasscode; +@property (nonatomic, assign) BOOL isUserEnablingPasscode; +@property (nonatomic, assign) BOOL isUserSwitchingBetweenPasscodeModes; // simple/complex +@property (nonatomic, assign) BOOL timerStartInSeconds; +@property (nonatomic, assign) BOOL isUsingTouchID; +@property (nonatomic, assign) BOOL useFallbackPasscode; +@property (nonatomic, assign) BOOL isAppNotificationsObserved; + +#if !(TARGET_IPHONE_SIMULATOR) +@property (nonatomic, strong) LAContext *touchIDContext; +#endif +@end + +@implementation LTHPasscodeViewController + +static const NSInteger LTHMinPasscodeDigits = 4; +static const NSInteger LTHMaxPasscodeDigits = 10; + +#pragma mark - Public, class methods ++ (BOOL)doesPasscodeExist { + return [[self sharedUser] _doesPasscodeExist]; +} + + ++ (NSTimeInterval)timerDuration { + return [[self sharedUser] _timerDuration]; +} + + ++ (void)saveTimerDuration:(NSTimeInterval)duration { + [[self sharedUser] _saveTimerDuration:duration]; +} + + ++ (NSTimeInterval)timerStartTime { + return [[self sharedUser] _timerStartTime]; +} + + ++ (void)saveTimerStartTime { + [[self sharedUser] _saveTimerStartTime]; +} + + ++ (BOOL)didPasscodeTimerEnd { + return [[self sharedUser] _didPasscodeTimerEnd]; +} + + ++ (void)deletePasscodeAndClose { + [self deletePasscode]; + [self close]; +} + + ++ (void)close { + [[self sharedUser] _close]; +} + + ++ (void)deletePasscode { + [[self sharedUser] _deletePasscode]; +} + + ++ (void)useKeychain:(BOOL)useKeychain { + [[self sharedUser] _useKeychain:useKeychain]; +} + + +#pragma mark - Private methods +- (void)_close { + if (_displayedAsLockScreen) [self _dismissMe]; + else [self _cancelAndDismissMe]; +} + + +- (void)_useKeychain:(BOOL)useKeychain { + _usesKeychain = useKeychain; +} + + +- (BOOL)_doesPasscodeExist { + if ([LTHKeychainUtils getPasswordForUsername:_keychainPasscodeIsSimpleUsername + andServiceName:_keychainServiceName + error:nil]) { + _isSimple = [[LTHKeychainUtils getPasswordForUsername:_keychainPasscodeIsSimpleUsername + andServiceName:_keychainServiceName + error:nil] boolValue]; + } else { + _isSimple = YES; + } + + return [self _passcode].length != 0; +} + + +- (NSTimeInterval)_timerDuration { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(timerDuration)]) { + return [self.delegate timerDuration]; + } + + NSString *keychainValue = + [LTHKeychainUtils getPasswordForUsername:_keychainTimerDurationUsername + andServiceName:_keychainServiceName + error:nil]; + if (!keychainValue) return -1; + return keychainValue.doubleValue; +} + + +- (void)_saveTimerDuration:(NSTimeInterval) duration { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(saveTimerDuration:)]) { + [self.delegate saveTimerDuration:duration]; + + return; + } + + [LTHKeychainUtils storeUsername:_keychainTimerDurationUsername + andPassword:[NSString stringWithFormat: @"%.6f", duration] + forServiceName:_keychainServiceName + updateExisting:YES + error:nil]; +} + + +- (NSTimeInterval)_timerStartTime { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(timerStartTime)]) { + return [self.delegate timerStartTime]; + } + + NSString *keychainValue = + [LTHKeychainUtils getPasswordForUsername:_keychainTimerStartUsername + andServiceName:_keychainServiceName + error:nil]; + if (!keychainValue) return -1; + return keychainValue.doubleValue; +} + + +- (void)_saveTimerStartTime { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(saveTimerStartTime)]) { + [self.delegate saveTimerStartTime]; + + return; + } + + [LTHKeychainUtils storeUsername:_keychainTimerStartUsername + andPassword:[NSString stringWithFormat: @"%.6f", + [NSDate timeIntervalSinceReferenceDate]] + forServiceName:_keychainServiceName + updateExisting:YES + error:nil]; +} + + +- (BOOL)_didPasscodeTimerEnd { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(didPasscodeTimerEnd)]) { + return [self.delegate didPasscodeTimerEnd]; + } + + NSTimeInterval now = [NSDate timeIntervalSinceReferenceDate]; + // startTime wasn't saved yet (first app use and it crashed, phone force + // closed, etc) if it returns -1. + return now - [self _timerStartTime] >= [self _timerDuration] + || [self _timerStartTime] == -1 + || now <= [self _timerStartTime]; + // If the date was set in the past, this would return false. + // It won't register as false, even right as it is being enabled, + // because the saving alone takes 0.002+ seconds on a MBP 2.6GHz i7. +} + + +- (void)_deletePasscode { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(deletePasscode)]) { + [self.delegate deletePasscode]; + + return; + } + + [LTHKeychainUtils deleteItemForUsername:_keychainPasscodeUsername + andServiceName:_keychainServiceName + error:nil]; +} + + +- (void)_savePasscode:(NSString *)passcode { + if (!_passcodeAlreadyExists && + [self.delegate respondsToSelector:@selector(passcodeWasEnabled)]) { + [self.delegate passcodeWasEnabled]; + } + + _passcodeAlreadyExists = YES; + + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(savePasscode:)]) { + [self.delegate savePasscode:passcode]; + + return; + } + + [LTHKeychainUtils storeUsername:_keychainPasscodeUsername + andPassword:passcode + forServiceName:_keychainServiceName + updateExisting:YES + error:nil]; + + [LTHKeychainUtils storeUsername:_keychainPasscodeIsSimpleUsername + andPassword:[NSString stringWithFormat:@"%@", [self isSimple] ? @"YES" : @"NO"] + forServiceName:_keychainServiceName + updateExisting:YES + error:nil]; +} + + +- (NSString *)_passcode { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(passcode)]) { + return [self.delegate passcode]; + } + + return [LTHKeychainUtils getPasswordForUsername:_keychainPasscodeUsername + andServiceName:_keychainServiceName + error:nil]; +} + + +- (void)resetPasscode { + if ([self _doesPasscodeExist]) { + NSString *passcode = [self _passcode]; + [self _deletePasscode]; + [self _savePasscode:passcode]; + } +} + +#if !(TARGET_IPHONE_SIMULATOR) +- (void)_handleTouchIDFailureAndDisableTouchID:(BOOL)disableTouchID { + dispatch_async(dispatch_get_main_queue(), ^{ + if (disableTouchID) { + _isUsingTouchID = NO; + _allowUnlockWithTouchID = NO; + } + + _useFallbackPasscode = YES; + _animatingView.hidden = NO; + + BOOL usingNavBar = _isUsingNavBar; + NSString *logoutTitle = usingNavBar ? _navBar.items.firstObject.leftBarButtonItem.title : @""; + + [self _resetUI]; + + if (usingNavBar) { + _isUsingNavBar = usingNavBar; + [self _setupNavBarWithLogoutTitle:logoutTitle]; + } + }); + + self.touchIDContext = nil; +} + +- (void)_setupFingerPrint { + if (!self.touchIDContext && _allowUnlockWithTouchID && !_useFallbackPasscode) { + self.touchIDContext = [[LAContext alloc] init]; + + NSError *error = nil; + if ([self.touchIDContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) { + if (error) { + return; + } + + _isUsingTouchID = YES; + [_passcodeTextField resignFirstResponder]; + _animatingView.hidden = YES; + + // Authenticate User + [self.touchIDContext evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics + localizedReason:LTHPasscodeViewControllerStrings(self.touchIDString) + reply:^(BOOL success, NSError *error) { + + if (error) { + [self _handleTouchIDFailureAndDisableTouchID:false]; + return; + } + + if (success) { + dispatch_async(dispatch_get_main_queue(), ^{ + [self _dismissMe]; + + if ([self.delegate respondsToSelector: @selector(passcodeWasEnteredSuccessfully)]) { + [self.delegate performSelector: @selector(passcodeWasEnteredSuccessfully)]; + } + }); + + self.touchIDContext = nil; + } + else { + [self _handleTouchIDFailureAndDisableTouchID:false]; + } + }]; + } + else { + [self _handleTouchIDFailureAndDisableTouchID:true]; + } + } + else { + [self _handleTouchIDFailureAndDisableTouchID:true]; + } +} + + +- (void)_saveAllowUnlockWithTouchID { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(saveAllowUnlockWithTouchID:)]) { + [self.delegate saveAllowUnlockWithTouchID:_allowUnlockWithTouchID]; + + return; + } + + [LTHKeychainUtils storeUsername:_keychainAllowUnlockWithTouchID + andPassword:[NSString stringWithFormat: @"%d", + _allowUnlockWithTouchID] + forServiceName:_keychainServiceName + updateExisting:YES + error:nil]; +} + + + +- (BOOL)_allowUnlockWithTouchID { + if (!_usesKeychain && + [self.delegate respondsToSelector:@selector(allowUnlockWithTouchID)]) { + return [self.delegate allowUnlockWithTouchID]; + } + + NSString *keychainValue = [LTHKeychainUtils getPasswordForUsername:_keychainAllowUnlockWithTouchID + andServiceName:_keychainServiceName + error:nil]; + if (!keychainValue) return YES; + return keychainValue.boolValue; +} + + +- (void)setAllowUnlockWithTouchID:(BOOL)setAllowUnlockWithTouchID { + _allowUnlockWithTouchID = setAllowUnlockWithTouchID; + [self _saveAllowUnlockWithTouchID]; +} +#endif + + +- (void)setDigitsCount:(NSInteger)digitsCount { + // If a passcode exists, don't allow the changing of the number of digits. + if ([self _doesPasscodeExist]) { return; } + + if (digitsCount < LTHMinPasscodeDigits) { + digitsCount = LTHMinPasscodeDigits; + } + else if (digitsCount > LTHMaxPasscodeDigits) { + digitsCount = LTHMaxPasscodeDigits; + } + + _digitsCount = digitsCount; + + // If we haven't loaded yet, do nothing, + // _setupDigitFields will be called in viewDidLoad. + if (!self.isViewLoaded) { return; } + [self _setupDigitFields]; +} + + +#pragma mark - View life +- (void)viewDidLoad { + [super viewDidLoad]; + self.view.backgroundColor = _backgroundColor; + + _backgroundImageView = [[UIImageView alloc] initWithFrame:self.view.frame]; + [self.view addSubview:_backgroundImageView]; + _backgroundImageView.image = _backgroundImage; + + _failedAttempts = 0; + _animatingView = [[UIView alloc] initWithFrame: self.view.frame]; + [self.view addSubview: _animatingView]; + + [self _setupViews]; + [self _setupLabels]; + [self _setupOKButton]; + + // If on first launch we have a passcode, the number of digits should equal that. + if ([self _doesPasscodeExist]) { + _digitsCount = [self _passcode].length; + } + [self _setupDigitFields]; + + _passcodeTextField = [[UITextField alloc] initWithFrame: CGRectZero]; + _passcodeTextField.delegate = self; + _passcodeTextField.translatesAutoresizingMaskIntoConstraints = NO; + + [self.view setNeedsUpdateConstraints]; +} + + +- (void)viewWillAppear:(BOOL)animated { + [super viewWillAppear:animated]; + + if (!self.isAppNotificationsObserved) { + [self _addObservers]; + self.isAppNotificationsObserved = YES; + } + + _animatingView.hidden = NO; + _backgroundImageView.image = _backgroundImage; + + if (!_passcodeTextField.isFirstResponder && (!_isUsingTouchID || _isUserChangingPasscode || _isUserBeingAskedForNewPasscode || _isUserConfirmingPasscode || _isUserEnablingPasscode || _isUserSwitchingBetweenPasscodeModes || _isUserTurningPasscodeOff)) { + [_passcodeTextField becomeFirstResponder]; + _animatingView.hidden = NO; + } + if (_isUsingTouchID && !_isUserChangingPasscode && !_isUserBeingAskedForNewPasscode && !_isUserConfirmingPasscode && !_isUserEnablingPasscode && !_isUserSwitchingBetweenPasscodeModes && !_isUserTurningPasscodeOff) { + [_passcodeTextField resignFirstResponder]; + _animatingView.hidden = _isUsingTouchID; + } +} + + +- (void)viewWillLayoutSubviews { + [super viewWillLayoutSubviews]; + _animatingView.frame = self.view.bounds; +} + + +- (void)viewWillDisappear:(BOOL)animated { + // If _isCurrentlyOnScreen is true at this point, + // it means the back button was tapped, so we need to reset. + if ([self isMovingFromParentViewController] && !_hidesBackButton && _isCurrentlyOnScreen) { + [self _close]; + return; + } + + [super viewWillDisappear:animated]; + + if (!_displayedAsModal && !_displayedAsLockScreen) { + [self textFieldShouldEndEditing:_passcodeTextField]; + } +} + + +- (void)_cancelAndDismissMe { + _isCurrentlyOnScreen = NO; + _isUserBeingAskedForNewPasscode = NO; + _isUserChangingPasscode = NO; + _isUserConfirmingPasscode = NO; + _isUserEnablingPasscode = NO; + _isUserTurningPasscodeOff = NO; + _isUserSwitchingBetweenPasscodeModes = NO; + [self _resetUI]; + [_passcodeTextField resignFirstResponder]; + + if ([self.delegate respondsToSelector: @selector(passcodeViewControllerWillClose)]) { + [self.delegate performSelector: @selector(passcodeViewControllerWillClose)]; + } + + if (_displayedAsModal) [self dismissViewControllerAnimated:YES completion:nil]; + else if (!_displayedAsLockScreen) [self.navigationController popViewControllerAnimated:YES]; +} + + +- (void)_dismissMe { + _failedAttempts = 0; + _isCurrentlyOnScreen = NO; + [self _resetUI]; + [_passcodeTextField resignFirstResponder]; + [UIView animateWithDuration: _lockAnimationDuration animations: ^{ + if (_displayedAsLockScreen) { + if (LTHiOS8) { + self.view.center = CGPointMake(self.view.center.x, self.view.center.y * 2.f); + } + else { + if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeLeft) { + self.view.center = CGPointMake(self.view.center.x * -1.f, self.view.center.y); + } + else if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeRight) { + self.view.center = CGPointMake(self.view.center.x * 2.f, self.view.center.y); + } + else if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait) { + self.view.center = CGPointMake(self.view.center.x, self.view.center.y * -1.f); + } + else { + self.view.center = CGPointMake(self.view.center.x, self.view.center.y * 2.f); + } + } + } + else { + // Delete from Keychain + if (_isUserTurningPasscodeOff) { + [self _deletePasscode]; + } + // Update the Keychain if adding or changing passcode + else { + [self _savePasscode:_tempPasscode]; + //finalize type switching + if (_isUserSwitchingBetweenPasscodeModes) { + _isUserConfirmingPasscode = NO; + [self setIsSimple:!self.isSimple + inViewController:nil + asModal:_displayedAsModal]; + } + } + } + } completion: ^(BOOL finished) { + if ([self.delegate respondsToSelector: @selector(passcodeViewControllerWillClose)]) { + [self.delegate performSelector: @selector(passcodeViewControllerWillClose)]; + } + + if (_displayedAsLockScreen) { + [self.view removeFromSuperview]; + [self removeFromParentViewController]; + } + else if (_displayedAsModal) { + [self dismissViewControllerAnimated:YES + completion:nil]; + } + else if (!_displayedAsLockScreen) { + [self.navigationController popViewControllerAnimated:NO]; + } + }]; +} + + +#pragma mark - UI setup +- (void)_setupNavBarWithLogoutTitle:(NSString *)logoutTitle { + // Navigation Bar with custom UI + self.navBar = + [[UINavigationBar alloc] initWithFrame:CGRectMake(0, LTHMainWindow.frame.origin.y, + LTHMainWindow.frame.size.width, 64)]; + self.navBar.tintColor = self.navigationTintColor; + if ([self respondsToSelector:@selector(setEdgesForExtendedLayout:)]) { + self.navBar.barTintColor = self.navigationBarTintColor; + self.navBar.translucent = self.navigationBarTranslucent; + } + if (self.navigationTitleColor) { + self.navBar.titleTextAttributes = + @{ NSForegroundColorAttributeName : self.navigationTitleColor }; + } + + // Navigation item + UIBarButtonItem *leftButton = + [[UIBarButtonItem alloc] initWithTitle:logoutTitle + style:UIBarButtonItemStyleDone + target:self + action:@selector(_logoutWasPressed)]; + [leftButton setTitlePositionAdjustment:UIOffsetMake(10, 0) forBarMetrics:UIBarMetricsDefault]; + + UINavigationItem *item = + [[UINavigationItem alloc] initWithTitle:self.title]; + item.leftBarButtonItem = leftButton; + item.hidesBackButton = YES; + + [self.navBar pushNavigationItem:item animated:NO]; + [LTHMainWindow addSubview:self.navBar]; +} + +- (void)_setupViews { + _coverView = [[UIView alloc] initWithFrame: CGRectZero]; + _coverView.backgroundColor = _coverViewBackgroundColor; + _coverView.frame = self.view.frame; + _coverView.userInteractionEnabled = NO; + _coverView.tag = _coverViewTag; + _coverView.hidden = YES; + [LTHMainWindow addSubview: _coverView]; + + _complexPasscodeOverlayView = [[UIView alloc] initWithFrame:CGRectZero]; + _complexPasscodeOverlayView.backgroundColor = [UIColor whiteColor]; + _complexPasscodeOverlayView.translatesAutoresizingMaskIntoConstraints = NO; + + _simplePasscodeView = [[UIView alloc] initWithFrame:CGRectZero]; + _simplePasscodeView.translatesAutoresizingMaskIntoConstraints = NO; + + [_animatingView addSubview:_complexPasscodeOverlayView]; + [_animatingView addSubview:_simplePasscodeView]; +} + + +- (void)_setupLabels { + _enterPasscodeLabel = [[UILabel alloc] initWithFrame: CGRectZero]; + _enterPasscodeLabel.backgroundColor = _enterPasscodeLabelBackgroundColor; + _enterPasscodeLabel.numberOfLines = 0; + _enterPasscodeLabel.textColor = _labelTextColor; + _enterPasscodeLabel.font = _labelFont; + _enterPasscodeLabel.textAlignment = NSTextAlignmentCenter; + [_animatingView addSubview: _enterPasscodeLabel]; + + _enterPasscodeInfoLabel = [[UILabel alloc] initWithFrame: CGRectZero]; + _enterPasscodeInfoLabel.backgroundColor = _enterPasscodeLabelBackgroundColor; + _enterPasscodeInfoLabel.numberOfLines = 0; + _enterPasscodeInfoLabel.textColor = _labelTextColor; + _enterPasscodeInfoLabel.font = _labelFont; + _enterPasscodeInfoLabel.textAlignment = NSTextAlignmentCenter; + _enterPasscodeInfoLabel.hidden = !_displayAdditionalInfoDuringSettingPasscode; + [_animatingView addSubview: _enterPasscodeInfoLabel]; + + // It is also used to display the "Passcodes did not match" error message + // if the user fails to confirm the passcode. + _failedAttemptLabel = [[UILabel alloc] initWithFrame: CGRectZero]; + _failedAttemptLabel.text = LTHPasscodeViewControllerStrings(@"1 Passcode Failed Attempt"); + _failedAttemptLabel.numberOfLines = 0; + _failedAttemptLabel.backgroundColor = _failedAttemptLabelBackgroundColor; + _failedAttemptLabel.hidden = YES; + _failedAttemptLabel.textColor = _failedAttemptLabelTextColor; + _failedAttemptLabel.font = _labelFont; + _failedAttemptLabel.textAlignment = NSTextAlignmentCenter; + [_animatingView addSubview: _failedAttemptLabel]; + + _enterPasscodeLabel.text = _isUserChangingPasscode ? LTHPasscodeViewControllerStrings(self.enterOldPasscodeString) : LTHPasscodeViewControllerStrings(self.enterPasscodeString); + _enterPasscodeInfoLabel.text = LTHPasscodeViewControllerStrings(self.enterPasscodeInfoString); + + _enterPasscodeLabel.translatesAutoresizingMaskIntoConstraints = NO; + _enterPasscodeInfoLabel.translatesAutoresizingMaskIntoConstraints = NO; + _failedAttemptLabel.translatesAutoresizingMaskIntoConstraints = NO; +} + + +- (void)_setupDigitFields { + [_digitTextFieldsArray enumerateObjectsUsingBlock:^(UITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) { + [textField removeFromSuperview]; + }]; + [_digitTextFieldsArray removeAllObjects]; + + for (int i = 0; i < _digitsCount; i++) { + UITextField *digitTextField = [self _makeDigitField]; + [_digitTextFieldsArray addObject:digitTextField]; + [_simplePasscodeView addSubview:digitTextField]; + } + + [self.view setNeedsUpdateConstraints]; +} + + +- (UITextField *)_makeDigitField{ + UITextField *field = [[UITextField alloc] initWithFrame:CGRectZero]; + field.backgroundColor = _passcodeBackgroundColor; + field.textAlignment = NSTextAlignmentCenter; + field.text = _passcodeCharacter; + field.textColor = _passcodeTextColor; + field.font = _passcodeFont; + field.delegate = self; + field.secureTextEntry = NO; + field.tintColor = [UIColor clearColor]; + field.translatesAutoresizingMaskIntoConstraints = NO; + [field setBorderStyle:UITextBorderStyleNone]; + return field; +} + + +- (void)_setupOKButton { + _OKButton = [UIButton buttonWithType:UIButtonTypeCustom]; + [_OKButton setTitle:LTHPasscodeViewControllerStrings(@"OK") + forState:UIControlStateNormal]; + _OKButton.titleLabel.font = _labelFont; + _OKButton.backgroundColor = _enterPasscodeLabelBackgroundColor; + [_OKButton setTitleColor:_labelTextColor forState:UIControlStateNormal]; + [_OKButton setTitleColor:[UIColor blackColor] forState:UIControlStateHighlighted]; + [_OKButton addTarget:self + action:@selector(_validateComplexPasscode) + forControlEvents:UIControlEventTouchUpInside]; + [_complexPasscodeOverlayView addSubview:_OKButton]; + + _OKButton.hidden = YES; + _OKButton.translatesAutoresizingMaskIntoConstraints = NO; +} + + +- (void)updateViewConstraints { + [super updateViewConstraints]; + [self.view removeConstraints:self.view.constraints]; + [_animatingView removeConstraints:_animatingView.constraints]; + + _simplePasscodeView.hidden = !self.isSimple; + + _complexPasscodeOverlayView.hidden = self.isSimple; + _passcodeTextField.hidden = self.isSimple; + // This would make the existing text to be cleared after dismissing + // the keyboard, then focusing the text field again. + // When simple, the text field only acts as a proxy and is hidden anyway. + _passcodeTextField.secureTextEntry = !self.isSimple; + _passcodeTextField.keyboardType = self.isSimple ? UIKeyboardTypeNumberPad : UIKeyboardTypeASCIICapable; + [_passcodeTextField reloadInputViews]; + + if (self.isSimple) { + [_animatingView addSubview:_passcodeTextField]; + } + else { + [_complexPasscodeOverlayView addSubview:_passcodeTextField]; + + // If we come from simple state some constraints are added even if + // translatesAutoresizingMaskIntoConstraints = NO, + // because no constraints are added manually in that case + [_passcodeTextField removeConstraints:_passcodeTextField.constraints]; + } + + // MARK: Please read + // The controller works properly on all devices and orientations, but looks odd on iPhone's landscape. + // Usually, lockscreens on iPhone are kept portrait-only, though. It also doesn't fit inside a modal when landscape. + // That's why only portrait is selected for iPhone's supported orientations. + // Modify this to fit your needs. + + CGFloat yOffsetFromCenter = -self.view.frame.size.height * 0.24 + _verticalOffset; + NSLayoutConstraint *enterPasscodeConstraintCenterX = + [NSLayoutConstraint constraintWithItem: _enterPasscodeLabel + attribute: NSLayoutAttributeCenterX + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeCenterX + multiplier: 1.0f + constant: 0.0f]; + NSLayoutConstraint *enterPasscodeConstraintCenterY = + [NSLayoutConstraint constraintWithItem: _enterPasscodeLabel + attribute: NSLayoutAttributeCenterY + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeCenterY + multiplier: 1.0f + constant: yOffsetFromCenter]; + [self.view addConstraint: enterPasscodeConstraintCenterX]; + [self.view addConstraint: enterPasscodeConstraintCenterY]; + + NSLayoutConstraint *enterPasscodeInfoConstraintCenterX = + [NSLayoutConstraint constraintWithItem: _enterPasscodeInfoLabel + attribute: NSLayoutAttributeCenterX + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeCenterX + multiplier: 1.0f + constant: 0.0f]; + NSLayoutConstraint *enterPasscodeInfoConstraintCenterY = + [NSLayoutConstraint constraintWithItem: _enterPasscodeInfoLabel + attribute: NSLayoutAttributeCenterY + relatedBy: NSLayoutRelationEqual + toItem: _simplePasscodeView + attribute: NSLayoutAttributeCenterY + multiplier: 1.0f + constant: 50]; + [self.view addConstraint: enterPasscodeInfoConstraintCenterX]; + [self.view addConstraint: enterPasscodeInfoConstraintCenterY]; + + if (self.isSimple) { + [_digitTextFieldsArray enumerateObjectsUsingBlock:^(UITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) { + CGFloat constant = idx == 0 ? 0 : _horizontalGap; + UIView *toItem = idx == 0 ? _simplePasscodeView : _digitTextFieldsArray[idx - 1]; + + NSLayoutConstraint *digitX = + [NSLayoutConstraint constraintWithItem: textField + attribute: NSLayoutAttributeLeft + relatedBy: NSLayoutRelationEqual + toItem: toItem + attribute: NSLayoutAttributeLeft + multiplier: 1.0f + constant: constant]; + + NSLayoutConstraint *top = + [NSLayoutConstraint constraintWithItem: textField + attribute: NSLayoutAttributeTop + relatedBy: NSLayoutRelationEqual + toItem: _simplePasscodeView + attribute: NSLayoutAttributeTop + multiplier: 1.0f + constant: 0]; + + NSLayoutConstraint *bottom = + [NSLayoutConstraint constraintWithItem: textField + attribute: NSLayoutAttributeBottom + relatedBy: NSLayoutRelationEqual + toItem: _simplePasscodeView + attribute: NSLayoutAttributeBottom + multiplier: 1.0f + constant: 0]; + + [self.view addConstraint:digitX]; + [self.view addConstraint:top]; + [self.view addConstraint:bottom]; + + if (idx == _digitTextFieldsArray.count - 1) { + NSLayoutConstraint *trailing = + [NSLayoutConstraint constraintWithItem: textField + attribute: NSLayoutAttributeTrailing + relatedBy: NSLayoutRelationEqual + toItem: _simplePasscodeView + attribute: NSLayoutAttributeTrailing + multiplier: 1.0f + constant: 0]; + + [self.view addConstraint:trailing]; + } + }]; + + NSLayoutConstraint *simplePasscodeViewX = + [NSLayoutConstraint constraintWithItem: _simplePasscodeView + attribute: NSLayoutAttributeCenterX + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeCenterX + multiplier: 1.0 + constant: 0]; + + NSLayoutConstraint *simplePasscodeViewY = + [NSLayoutConstraint constraintWithItem: _simplePasscodeView + attribute: NSLayoutAttributeCenterY + relatedBy: NSLayoutRelationEqual + toItem: _enterPasscodeLabel + attribute: NSLayoutAttributeBottom + multiplier: 1.0 + constant: _verticalGap]; + + + [self.view addConstraint:simplePasscodeViewX]; + [self.view addConstraint:simplePasscodeViewY]; + + } + else { + NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings(_passcodeTextField, _OKButton); + + //TODO: specify different offsets through metrics + NSArray *constraints = + [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-10-[_passcodeTextField]-5-[_OKButton]-10-|" + options:0 + metrics:nil + views:viewsDictionary]; + + [self.view addConstraints:constraints]; + + constraints = + [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-5-[_passcodeTextField]-5-|" + options:0 + metrics:nil + views:viewsDictionary]; + + [self.view addConstraints:constraints]; + + NSLayoutConstraint *buttonY = + [NSLayoutConstraint constraintWithItem: _OKButton + attribute: NSLayoutAttributeCenterY + relatedBy: NSLayoutRelationEqual + toItem: _passcodeTextField + attribute: NSLayoutAttributeCenterY + multiplier: 1.0f + constant: 0.0f]; + + [self.view addConstraint:buttonY]; + + NSLayoutConstraint *buttonHeight = + [NSLayoutConstraint constraintWithItem: _OKButton + attribute: NSLayoutAttributeHeight + relatedBy: NSLayoutRelationEqual + toItem: _passcodeTextField + attribute: NSLayoutAttributeHeight + multiplier: 1.0f + constant: 0.0f]; + + [self.view addConstraint:buttonHeight]; + + NSLayoutConstraint *overlayViewLeftConstraint = + [NSLayoutConstraint constraintWithItem: _complexPasscodeOverlayView + attribute: NSLayoutAttributeLeft + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeLeft + multiplier: 1.0f + constant: 0.0f]; + + NSLayoutConstraint *overlayViewY = + [NSLayoutConstraint constraintWithItem: _complexPasscodeOverlayView + attribute: NSLayoutAttributeCenterY + relatedBy: NSLayoutRelationEqual + toItem: _enterPasscodeLabel + attribute: NSLayoutAttributeBottom + multiplier: 1.0f + constant: _verticalGap]; + + NSLayoutConstraint *overlayViewHeight = + [NSLayoutConstraint constraintWithItem: _complexPasscodeOverlayView + attribute: NSLayoutAttributeHeight + relatedBy: NSLayoutRelationEqual + toItem: nil + attribute: NSLayoutAttributeNotAnAttribute + multiplier: 1.0f + constant: _passcodeOverlayHeight]; + + NSLayoutConstraint *overlayViewWidth = + [NSLayoutConstraint constraintWithItem: _complexPasscodeOverlayView + attribute: NSLayoutAttributeWidth + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeWidth + multiplier: 1.0f + constant: 0.0f]; + [self.view addConstraints:@[overlayViewLeftConstraint, overlayViewY, overlayViewHeight, overlayViewWidth]]; + } + + NSLayoutConstraint *failedAttemptLabelCenterX = + [NSLayoutConstraint constraintWithItem: _failedAttemptLabel + attribute: NSLayoutAttributeCenterX + relatedBy: NSLayoutRelationEqual + toItem: _animatingView + attribute: NSLayoutAttributeCenterX + multiplier: 1.0f + constant: 0.0f]; + NSLayoutConstraint *failedAttemptLabelCenterY = + [NSLayoutConstraint constraintWithItem: _failedAttemptLabel + attribute: NSLayoutAttributeCenterY + relatedBy: NSLayoutRelationEqual + toItem: _enterPasscodeLabel + attribute: NSLayoutAttributeBottom + multiplier: 1.0f + constant: _failedAttemptLabelGap]; + NSLayoutConstraint *failedAttemptLabelHeight = + [NSLayoutConstraint constraintWithItem: _failedAttemptLabel + attribute: NSLayoutAttributeHeight + relatedBy: NSLayoutRelationEqual + toItem: nil + attribute: NSLayoutAttributeNotAnAttribute + multiplier: 1.0f + constant: LTHFailedAttemptLabelHeight + 6.0f]; + [self.view addConstraint:failedAttemptLabelCenterX]; + [self.view addConstraint:failedAttemptLabelCenterY]; + [self.view addConstraint:failedAttemptLabelHeight]; +} + + +#pragma mark - Displaying +- (void)showLockscreenWithoutAnimation { + [self showLockScreenWithAnimation:NO withLogout:NO andLogoutTitle:nil]; +} + +- (void)showLockScreenWithAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle { + [self showLockScreenOver:LTHMainWindow withAnimation:animated withLogout:hasLogout andLogoutTitle:logoutTitle]; +} + +- (void)showLockScreenOver:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle { + [self _prepareAsLockScreen]; + + // In case the user leaves the app while the lockscreen is already active. + if (_isCurrentlyOnScreen) { return; } + _isCurrentlyOnScreen = YES; + + [superview addSubview: self.view]; + + // All this hassle because a view added to UIWindow does not rotate automatically + // and if we would have added the view anywhere else, it wouldn't display properly + // (having a modal on screen when the user leaves the app, for example). + [self rotateAccordingToStatusBarOrientationAndSupportedOrientations]; + CGPoint superviewCenter = CGPointMake(superview.center.x, superview.center.y); + CGPoint newCenter; + [self statusBarFrameOrOrientationChanged:nil]; + if (LTHiOS8) { + self.view.center = CGPointMake(self.view.center.x, self.view.center.y * -1.f); + newCenter = CGPointMake(superviewCenter.x, + superviewCenter.y + self.navigationController.navigationBar.frame.size.height / 2); + } + else { + if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeLeft) { + self.view.center = CGPointMake(self.view.center.x * -1.f, self.view.center.y); + newCenter = CGPointMake(superviewCenter.x - self.navigationController.navigationBar.frame.size.height / 2, + superviewCenter.y); + } + else if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeRight) { + self.view.center = CGPointMake(self.view.center.x * 2.f, self.view.center.y); + newCenter = CGPointMake(superviewCenter.x + self.navigationController.navigationBar.frame.size.height / 2, + superviewCenter.y); + } + else if ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait) { + self.view.center = CGPointMake(self.view.center.x, self.view.center.y * -1.f); + newCenter = CGPointMake(superviewCenter.x, + superviewCenter.y - self.navigationController.navigationBar.frame.size.height / 2); + } + else { + self.view.center = CGPointMake(self.view.center.x, self.view.center.y * 2.f); + newCenter = CGPointMake(superviewCenter.x, + superviewCenter.y + self.navigationController.navigationBar.frame.size.height / 2); + } + } + + [UIView animateWithDuration: animated ? _lockAnimationDuration : 0 animations: ^{ + self.view.center = newCenter; + }]; + + // Add nav bar & logout button if specified + if (hasLogout) { + _isUsingNavBar = hasLogout; + [self _setupNavBarWithLogoutTitle:logoutTitle]; + } +} + + +- (void)_prepareNavigationControllerWithController:(UIViewController *)viewController { + if (!_hidesCancelButton) { + self.navigationItem.rightBarButtonItem = + [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel + target:self + action:@selector(_cancelAndDismissMe)]; + } + + if (!_displayedAsModal) { + [viewController.navigationController pushViewController:self + animated:YES]; + self.navigationItem.hidesBackButton = _hidesBackButton; + [self rotateAccordingToStatusBarOrientationAndSupportedOrientations]; + + return; + } + UINavigationController *navController = + [[UINavigationController alloc] initWithRootViewController:self]; + + // Make sure nav bar for logout is off the screen + [self.navBar removeFromSuperview]; + self.navBar = nil; + + // Customize navigation bar + // Make sure UITextAttributeTextColor is not set to nil + // barTintColor & translucent is only called on iOS7+ + navController.navigationBar.tintColor = self.navigationTintColor; + if ([self respondsToSelector:@selector(setEdgesForExtendedLayout:)]) { + navController.navigationBar.barTintColor = self.navigationBarTintColor; + navController.navigationBar.translucent = self.navigationBarTranslucent; + } + if (self.navigationTitleColor) { + navController.navigationBar.titleTextAttributes = + @{ NSForegroundColorAttributeName : self.navigationTitleColor }; + } + + [viewController presentViewController:navController + animated:YES + completion:nil]; + [self rotateAccordingToStatusBarOrientationAndSupportedOrientations]; +} + + +- (void)showForEnablingPasscodeInViewController:(UIViewController *)viewController + asModal:(BOOL)isModal { + _displayedAsModal = isModal; + _passcodeAlreadyExists = NO; + [self _prepareForEnablingPasscode]; + [self _prepareNavigationControllerWithController:viewController]; + self.title = LTHPasscodeViewControllerStrings(self.enablePasscodeString); +} + + +- (void)showForChangingPasscodeInViewController:(UIViewController *)viewController + asModal:(BOOL)isModal { + _displayedAsModal = isModal; + [self _prepareForChangingPasscode]; + [self _prepareNavigationControllerWithController:viewController]; + self.title = LTHPasscodeViewControllerStrings(self.changePasscodeString); +} + + +- (void)showForDisablingPasscodeInViewController:(UIViewController *)viewController + asModal:(BOOL)isModal { + _displayedAsModal = isModal; + [self _prepareForTurningOffPasscode]; + [self _prepareNavigationControllerWithController:viewController]; + self.title = LTHPasscodeViewControllerStrings(self.turnOffPasscodeString); +} + + +#pragma mark - Preparing +- (void)_prepareAsLockScreen { + // In case the user leaves the app while changing/disabling Passcode. + if (_isCurrentlyOnScreen && !_displayedAsLockScreen) { + [self _cancelAndDismissMe]; + } + _displayedAsLockScreen = YES; + _isUserTurningPasscodeOff = NO; + _isUserChangingPasscode = NO; + _isUserConfirmingPasscode = NO; + _isUserEnablingPasscode = NO; + _isUserSwitchingBetweenPasscodeModes = NO; + + self.title = @""; + [self _resetUI]; +#if !(TARGET_IPHONE_SIMULATOR) + [self _setupFingerPrint]; +#endif +} + + +- (void)_prepareForChangingPasscode { + _isCurrentlyOnScreen = YES; + _displayedAsLockScreen = NO; + _isUserTurningPasscodeOff = NO; + _isUserChangingPasscode = YES; + _isUserConfirmingPasscode = NO; + _isUserEnablingPasscode = NO; + + [self _resetUI]; +} + + +- (void)_prepareForTurningOffPasscode { + _isCurrentlyOnScreen = YES; + _displayedAsLockScreen = NO; + _isUserTurningPasscodeOff = YES; + _isUserChangingPasscode = NO; + _isUserConfirmingPasscode = NO; + _isUserEnablingPasscode = NO; + _isUserSwitchingBetweenPasscodeModes = NO; + + [self _resetUI]; +} + + +- (void)_prepareForEnablingPasscode { + _isCurrentlyOnScreen = YES; + _displayedAsLockScreen = NO; + _isUserTurningPasscodeOff = NO; + _isUserChangingPasscode = NO; + _isUserConfirmingPasscode = NO; + _isUserEnablingPasscode = YES; + _isUserSwitchingBetweenPasscodeModes = NO; + + [self _resetUI]; +} + + +#pragma mark - UITextFieldDelegate +- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField { + if (textField == _passcodeTextField) { return true; } + + [_passcodeTextField becomeFirstResponder]; + + UITextPosition *end = _passcodeTextField.endOfDocument; + UITextRange *range = [_passcodeTextField textRangeFromPosition:end toPosition:end]; + + [_passcodeTextField setSelectedTextRange:range]; + + return false; +} + +- (BOOL)textFieldShouldEndEditing:(UITextField *)textField { + if ((!_displayedAsLockScreen && !_displayedAsModal) || (_isUsingTouchID || !_useFallbackPasscode)) { + return YES; + } + return !_isCurrentlyOnScreen; +} + +- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string { + + if ([string isEqualToString: @"\n"]) return NO; + + NSString *typedString = [textField.text stringByReplacingCharactersInRange: range + withString: string]; + + if (self.isSimple) { + + [_digitTextFieldsArray enumerateObjectsUsingBlock:^(UITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) { + textField.secureTextEntry = typedString.length > idx; + }]; + + if (typedString.length == _digitsCount) { + // Make the last bullet show up + [self performSelector: @selector(_validatePasscode:) + withObject: typedString + afterDelay: 0.15]; + } + + if (typedString.length > _digitsCount) return NO; + } + else { + _OKButton.hidden = [typedString length] == 0; + } + + return YES; +} + +#pragma mark - Validation +- (void)_validateComplexPasscode { + [self _validatePasscode:_passcodeTextField.text]; +} + + +- (BOOL)_validatePasscode:(NSString *)typedString { + NSString *savedPasscode = [self _passcode]; + // Entering from Settings. If savedPasscode is empty, it means + // the user is setting a new Passcode now, or is changing his current Passcode. + if ((_isUserChangingPasscode || savedPasscode.length == 0) && !_isUserTurningPasscodeOff) { + // Either the user is being asked for a new passcode, confirmation comes next, + // either he is setting up a new passcode, confirmation comes next, still. + // We need the !_isUserConfirmingPasscode condition, because if he's adding a new Passcode, + // then savedPasscode is still empty and the condition will always be true, not passing this point. + if ((_isUserBeingAskedForNewPasscode || savedPasscode.length == 0) && !_isUserConfirmingPasscode) { + _tempPasscode = typedString; + // The delay is to give time for the last bullet to appear + [self performSelector:@selector(_askForConfirmationPasscode) + withObject:nil + afterDelay:0.15f]; + } + // User entered his Passcode correctly and we are at the confirming screen. + else if (_isUserConfirmingPasscode) { + // User entered the confirmation Passcode incorrectly, or the passcode is the same as the old one, start over. + _newPasscodeEqualsOldPasscode = [typedString isEqualToString:savedPasscode]; + if (![typedString isEqualToString:_tempPasscode] || _newPasscodeEqualsOldPasscode) { + [self performSelector:@selector(_reAskForNewPasscode) + withObject:nil + afterDelay:_slideAnimationDuration]; + } + // User entered the confirmation Passcode correctly. + else { + [self _dismissMe]; + } + } + // Changing Passcode and the entered Passcode is correct. + else if ([typedString isEqualToString:savedPasscode]){ + [self performSelector:@selector(_askForNewPasscode) + withObject:nil + afterDelay:_slideAnimationDuration]; + _failedAttempts = 0; + } + // Acting as lockscreen and the entered Passcode is incorrect. + else { + [self performSelector: @selector(_denyAccess) + withObject: nil + afterDelay: _slideAnimationDuration]; + return NO; + } + } + // App launch/Turning passcode off: Passcode OK -> dismiss, Passcode incorrect -> deny access. + else { + if ([typedString isEqualToString: savedPasscode]) { + [self _dismissMe]; + _useFallbackPasscode = NO; + if ([self.delegate respondsToSelector: @selector(passcodeWasEnteredSuccessfully)]) { + [self.delegate performSelector: @selector(passcodeWasEnteredSuccessfully)]; + } + } + else { + [self performSelector: @selector(_denyAccess) + withObject: nil + afterDelay: _slideAnimationDuration]; + return NO; + } + } + + return YES; +} + + +#pragma mark - Actions +- (void)_askForNewPasscode { + _isUserBeingAskedForNewPasscode = YES; + _isUserConfirmingPasscode = NO; + + // Update layout considering type + [self.view setNeedsUpdateConstraints]; + + _failedAttemptLabel.hidden = YES; + + CATransition *transition = [CATransition animation]; + [self performSelector: @selector(_resetUI) withObject: nil afterDelay: 0.1f]; + [transition setType: kCATransitionPush]; + [transition setSubtype: kCATransitionFromRight]; + [transition setDuration: _slideAnimationDuration]; + [transition setTimingFunction: + [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseInEaseOut]]; + [[_animatingView layer] addAnimation: transition forKey: @"swipe"]; +} + + +- (void)_reAskForNewPasscode { + _isUserBeingAskedForNewPasscode = YES; + _isUserConfirmingPasscode = NO; + _tempPasscode = @""; + + CATransition *transition = [CATransition animation]; + [self performSelector: @selector(_resetUIForReEnteringNewPasscode) + withObject: nil + afterDelay: 0.1f]; + [transition setType: kCATransitionPush]; + [transition setSubtype: kCATransitionFromRight]; + [transition setDuration: _slideAnimationDuration]; + [transition setTimingFunction: + [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseInEaseOut]]; + [[_animatingView layer] addAnimation: transition forKey: @"swipe"]; +} + + +- (void)_askForConfirmationPasscode { + _isUserBeingAskedForNewPasscode = NO; + _isUserConfirmingPasscode = YES; + _failedAttemptLabel.hidden = YES; + + CATransition *transition = [CATransition animation]; + [self performSelector: @selector(_resetUI) withObject: nil afterDelay: 0.1f]; + [transition setType: kCATransitionPush]; + [transition setSubtype: kCATransitionFromRight]; + [transition setDuration: _slideAnimationDuration]; + [transition setTimingFunction: + [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseInEaseOut]]; + [[_animatingView layer] addAnimation: transition forKey: @"swipe"]; +} + + +- (void)_denyAccess { + [self _resetTextFields]; + _passcodeTextField.text = @""; + _OKButton.hidden = YES; + + CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath: @"transform.translation.x"]; + animation.duration = 0.6; + animation.timingFunction = [CAMediaTimingFunction functionWithName: kCAAnimationLinear]; + animation.values = @[@-12, @12, @-12, @12, @-6, @6, @-3, @3, @0]; + + [_digitTextFieldsArray enumerateObjectsUsingBlock:^(UITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) { + [textField.layer addAnimation:animation forKey:@"shake"]; + }]; + + _failedAttempts++; + + if (_maxNumberOfAllowedFailedAttempts > 0 && + _failedAttempts >= _maxNumberOfAllowedFailedAttempts && + [self.delegate respondsToSelector: @selector(maxNumberOfFailedAttemptsReached)]) { + [self.delegate maxNumberOfFailedAttemptsReached]; + } + + NSString *translationText; + if (_failedAttempts == 1) { + translationText = LTHPasscodeViewControllerStrings(@"1 Passcode Failed Attempt"); + } + else { + translationText = [NSString stringWithFormat:LTHPasscodeViewControllerStrings(@"%i Passcode Failed Attempts"), _failedAttempts]; + + } + // To give it some padding. Since it's center-aligned, + // it will automatically distribute the extra space. + // Ironically enough, I found 5 spaces to be the best looking. + _failedAttemptLabel.text = [NSString stringWithFormat:@"%@ ", translationText]; + + _failedAttemptLabel.layer.cornerRadius = LTHiPad ? 19 : 14; + _failedAttemptLabel.clipsToBounds = true; + _failedAttemptLabel.hidden = NO; +} + + +- (void)_logoutWasPressed { + // Notify delegate that logout button was pressed + if ([self.delegate respondsToSelector: @selector(logoutButtonWasPressed)]) { + [self.delegate logoutButtonWasPressed]; + } +} + + +- (void)_resetTextFields { + // If _allowUnlockWithTouchID == true, but _isUsingTouchID == false, + // it means we're just launching, and we don't want the keyboard to show. + if (![_passcodeTextField isFirstResponder] + && (!(_allowUnlockWithTouchID || _isUsingTouchID) || _useFallbackPasscode)) { + // It seems like there's a glitch with how the alert gets removed when hitting + // cancel in the TouchID prompt. In some cases, the keyboard is present, but invisible + // after dismissing the alert unless we call becomeFirstResponder with a short delay + dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ + [_passcodeTextField becomeFirstResponder]; + }); + } + + [_digitTextFieldsArray enumerateObjectsUsingBlock:^(UITextField * _Nonnull textField, NSUInteger idx, BOOL * _Nonnull stop) { + textField.secureTextEntry = NO; + }]; +} + + +- (void)_resetUI { + [self _resetTextFields]; + _failedAttemptLabel.backgroundColor = _failedAttemptLabelBackgroundColor; + _failedAttemptLabel.textColor = _failedAttemptLabelTextColor; + if (_failedAttempts == 0) _failedAttemptLabel.hidden = YES; + + _passcodeTextField.text = @""; + if (_isUserConfirmingPasscode) { + if (_isUserEnablingPasscode) { + _enterPasscodeLabel.text = LTHPasscodeViewControllerStrings(self.reenterPasscodeString); + _enterPasscodeInfoLabel.hidden = YES; + } + else if (_isUserChangingPasscode) { + _enterPasscodeLabel.text = LTHPasscodeViewControllerStrings(self.reenterNewPasscodeString); + _enterPasscodeInfoLabel.hidden = YES; + } + } + else if (_isUserBeingAskedForNewPasscode) { + if (_isUserEnablingPasscode || _isUserChangingPasscode) { + _enterPasscodeLabel.text = LTHPasscodeViewControllerStrings(self.enterNewPasscodeString); + _enterPasscodeInfoLabel.hidden = YES; //hidden for changing PIN + } + } + else { + if (_isUserChangingPasscode) { + _enterPasscodeLabel.text = LTHPasscodeViewControllerStrings(self.enterOldPasscodeString); + _enterPasscodeInfoLabel.hidden = YES; + } else { + _enterPasscodeLabel.text = LTHPasscodeViewControllerStrings(self.enterPasscodeString); + //hidden for enabling PIN + _enterPasscodeInfoLabel.hidden = !(_isUserEnablingPasscode && _displayAdditionalInfoDuringSettingPasscode); + } + } + + _enterPasscodeInfoLabel.text = LTHPasscodeViewControllerStrings(self.enterPasscodeInfoString); + + // Make sure nav bar for logout is off the screen + if (_isUsingNavBar) { + [self.navBar removeFromSuperview]; + self.navBar = nil; + } + _isUsingNavBar = NO; + + _OKButton.hidden = YES; +} + + +- (void)_resetUIForReEnteringNewPasscode { + [self _resetTextFields]; + _passcodeTextField.text = @""; + // If there's no passcode saved in Keychain, + // the user is adding one for the first time, otherwise he's changing his passcode. + NSString *savedPasscode = [LTHKeychainUtils getPasswordForUsername: _keychainPasscodeUsername + andServiceName: _keychainServiceName + error: nil]; + _enterPasscodeLabel.text = savedPasscode.length == 0 + ? LTHPasscodeViewControllerStrings(self.enterPasscodeString) + : LTHPasscodeViewControllerStrings(self.enterNewPasscodeString); + _failedAttemptLabel.hidden = NO; + _failedAttemptLabel.text = _newPasscodeEqualsOldPasscode + ? LTHPasscodeViewControllerStrings(@"Cannot reuse the same passcode") + : LTHPasscodeViewControllerStrings(@"Passcodes did not match. Try again."); + _newPasscodeEqualsOldPasscode = NO; + _failedAttemptLabel.backgroundColor = [UIColor clearColor]; + _failedAttemptLabel.layer.borderWidth = 0; + _failedAttemptLabel.layer.borderColor = [UIColor clearColor].CGColor; + _failedAttemptLabel.textColor = _labelTextColor; +} + + +- (void)setIsSimple:(BOOL)isSimple inViewController:(UIViewController *)viewController asModal:(BOOL)isModal{ + if (!_isUserSwitchingBetweenPasscodeModes && + !_isUserBeingAskedForNewPasscode && + [self _doesPasscodeExist]) { + // User trying to change passcode type while having passcode already + _isUserSwitchingBetweenPasscodeModes = YES; + // Display modified change passcode flow starting with input once passcode + // of current type and then 2 times new one of another type + [self showForChangingPasscodeInViewController:viewController + asModal:isModal]; + } + else { + _isUserSwitchingBetweenPasscodeModes = NO; + _isSimple = isSimple; + [self.view setNeedsUpdateConstraints]; + } +} + +- (BOOL)isSimple { + // Is in process of changing, but not finished -> + // we need to display UI accordingly + return (_isUserSwitchingBetweenPasscodeModes && + (_isUserBeingAskedForNewPasscode || _isUserConfirmingPasscode)) == !_isSimple; +} + +#pragma mark - Notification Observers +- (void)_applicationDidEnterBackground { + if ([self _doesPasscodeExist]) { + if ([_passcodeTextField isFirstResponder]) { + _useFallbackPasscode = NO; + [_passcodeTextField resignFirstResponder]; + } + + if (_isCurrentlyOnScreen && !_displayedAsModal) return; + + _coverView.hidden = NO; + if (![LTHMainWindow viewWithTag: _coverViewTag]) { + [LTHMainWindow addSubview: _coverView]; + } + } +} + + +- (void)_applicationDidBecomeActive { + // If we are not being displayed as lockscreen, it means the TouchID alert + // just closed - it also calls UIApplicationDidBecomeActiveNotification + // and if we open for changing / turning off really fast, it will call this + // after viewWillAppear, and it will hide the UI. + if (_isUsingTouchID && !_useFallbackPasscode && _displayedAsLockScreen) { + _animatingView.hidden = YES; + [_passcodeTextField resignFirstResponder]; + } + _coverView.hidden = YES; +} + + +- (void)_applicationWillEnterForeground { + if ([self _doesPasscodeExist] && + [self _didPasscodeTimerEnd]) { + _useFallbackPasscode = NO; + + if (!_displayedAsModal && !_displayedAsLockScreen && _isCurrentlyOnScreen) { + [_passcodeTextField resignFirstResponder]; + [self.navigationController popViewControllerAnimated:NO]; + // This is like this because it screws up the navigation stack otherwise + [self performSelector:@selector(showLockscreenWithoutAnimation) + withObject:nil + afterDelay:0.0]; + } + else { + [self showLockScreenWithAnimation:NO + withLogout:NO + andLogoutTitle:nil]; + } + } +} + + +- (void)_applicationWillResignActive { + if ([self _doesPasscodeExist] && !([self isCurrentlyOnScreen] && [self displayedAsLockScreen])) { + _useFallbackPasscode = NO; + [self _saveTimerStartTime]; + } +} + + +#pragma mark - Init ++ (instancetype)sharedUser { + __strong static LTHPasscodeViewController *sharedObject = nil; + + static dispatch_once_t pred; + dispatch_once(&pred, ^{ + sharedObject = [[self alloc] init]; + }); + + return sharedObject; +} + + +- (id)init { + self = [super init]; + + if (self) { + [self _commonInit]; + } + return self; +} + + +- (id)initWithCoder:(NSCoder *)aDecoder { + self = [super initWithCoder:aDecoder]; + if (self) { + [self _commonInit]; + } + return self; +} + + +- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { + self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; + if (self) { + [self _commonInit]; + } + return self; +} + + +- (void)_commonInit { + [self _loadDefaults]; +} + + +- (void)_loadDefaults { + [self _loadMiscDefaults]; + [self _loadStringDefaults]; + [self _loadGapDefaults]; + [self _loadFontDefaults]; + [self _loadColorDefaults]; + [self _loadKeychainDefaults]; +} + + +- (void)_loadMiscDefaults { + _digitsCount = LTHMinPasscodeDigits; + _digitTextFieldsArray = [NSMutableArray new]; + _coverViewTag = 994499; + _lockAnimationDuration = 0.25; + _slideAnimationDuration = 0.15; + _maxNumberOfAllowedFailedAttempts = 0; + _usesKeychain = YES; + _isSimple = YES; + _displayedAsModal = YES; + _hidesBackButton = YES; + _hidesCancelButton = YES; + _passcodeAlreadyExists = YES; + _newPasscodeEqualsOldPasscode = NO; +#if !(TARGET_IPHONE_SIMULATOR) + _allowUnlockWithTouchID = [self _allowUnlockWithTouchID]; +#else + _allowUnlockWithTouchID = NO; +#endif + _passcodeCharacter = @"\u2014"; // A longer "-"; + _localizationTableName = @"LTHPasscodeViewController"; + _displayAdditionalInfoDuringSettingPasscode = NO; +} + + +- (void)_loadStringDefaults { + self.enterOldPasscodeString = @"Enter your old passcode"; + self.enterPasscodeString = @"Enter your passcode"; + self.enterPasscodeInfoString = @"Passcode info"; + self.enablePasscodeString = @"Enable Passcode"; + self.changePasscodeString = @"Change Passcode"; + self.turnOffPasscodeString = @"Turn Off Passcode"; + self.reenterPasscodeString = @"Re-enter your passcode"; + self.reenterNewPasscodeString = @"Re-enter your new passcode"; + self.enterNewPasscodeString = @"Enter your new passcode"; + self.touchIDString = @"Unlock using Touch ID"; +} + + +- (void)_loadGapDefaults { + _fontSizeModifier = LTHiPad ? 1.5 : 1; + _horizontalGap = 40 * _fontSizeModifier; + _verticalGap = LTHiPad ? 60.0f : 25.0f; + _modifierForBottomVerticalGap = LTHiPad ? 2.6f : 3.0f; + _failedAttemptLabelGap = _verticalGap * _modifierForBottomVerticalGap - 2.0f; + _passcodeOverlayHeight = LTHiPad ? 96.0f : 40.0f; +} + + +- (void)_loadFontDefaults { + _labelFontSize = 15.0; + _passcodeFontSize = 33.0; + _labelFont = [UIFont fontWithName: @"AvenirNext-Regular" + size: _labelFontSize * _fontSizeModifier]; + _passcodeFont = [UIFont fontWithName: @"AvenirNext-Regular" + size: _passcodeFontSize * _fontSizeModifier]; +} + + +- (void)_loadColorDefaults { + // Backgrounds + _backgroundColor = [UIColor colorWithRed:0.97f green:0.97f blue:1.0f alpha:1.00f]; + _passcodeBackgroundColor = [UIColor clearColor]; + _coverViewBackgroundColor = [UIColor colorWithRed:0.97f green:0.97f blue:1.0f alpha:1.00f]; + _failedAttemptLabelBackgroundColor = [UIColor colorWithRed:0.8f green:0.1f blue:0.2f alpha:1.000f]; + _enterPasscodeLabelBackgroundColor = [UIColor clearColor]; + + // Text + _labelTextColor = [UIColor colorWithWhite:0.31f alpha:1.0f]; + _passcodeTextColor = [UIColor colorWithWhite:0.31f alpha:1.0f]; + _failedAttemptLabelTextColor = [UIColor whiteColor]; +} + + +- (void)_loadKeychainDefaults { + _keychainPasscodeUsername = @"demoPasscode"; + _keychainTimerStartUsername = @"demoPasscodeTimerStart"; + _keychainServiceName = @"demoServiceName"; + _keychainTimerDurationUsername = @"passcodeTimerDuration"; + _keychainPasscodeIsSimpleUsername = @"passcodeIsSimple"; + _keychainAllowUnlockWithTouchID = @"allowUnlockWithTouchID"; +} + + +- (void)_addObservers { + [[NSNotificationCenter defaultCenter] + addObserver: self + selector: @selector(_applicationDidEnterBackground) + name: UIApplicationDidEnterBackgroundNotification + object: nil]; + [[NSNotificationCenter defaultCenter] + addObserver: self + selector: @selector(_applicationWillResignActive) + name: UIApplicationWillResignActiveNotification + object: nil]; + [[NSNotificationCenter defaultCenter] + addObserver: self + selector: @selector(_applicationDidBecomeActive) + name: UIApplicationDidBecomeActiveNotification + object: nil]; + [[NSNotificationCenter defaultCenter] + addObserver: self + selector: @selector(_applicationWillEnterForeground) + name: UIApplicationWillEnterForegroundNotification + object: nil]; + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(statusBarFrameOrOrientationChanged:) + name:UIApplicationDidChangeStatusBarOrientationNotification + object:nil]; + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(statusBarFrameOrOrientationChanged:) + name:UIApplicationDidChangeStatusBarFrameNotification + object:nil]; +} + + +#pragma mark - Handling rotation +- (UIInterfaceOrientationMask)supportedInterfaceOrientations { + if (_displayedAsLockScreen) + return LTHiOS8 ? UIInterfaceOrientationMaskPortrait : UIInterfaceOrientationMaskAll; + // I'll be honest and mention I have no idea why this line of code below works. + // Without it, if you present the passcode view as lockscreen (directly on the window) + // and then inside of a modal, the orientation will be wrong. + + // If you could explain why, I'd be more than grateful :) + return UIInterfaceOrientationMaskPortrait; +} + + +// All of the rotation handling is thanks to Håvard Fossli's - https://github.com/hfossli +// answer: http://stackoverflow.com/a/4960988/793916 +- (void)statusBarFrameOrOrientationChanged:(NSNotification *)notification { + /* + This notification is most likely triggered inside an animation block, + therefore no animation is needed to perform this nice transition. + */ + [self rotateAccordingToStatusBarOrientationAndSupportedOrientations]; + if (LTHiOS8) { + _animatingView.frame = self.view.bounds; + } + else { + if (UIInterfaceOrientationIsPortrait([UIApplication sharedApplication].statusBarOrientation)) { + _animatingView.frame = CGRectMake(0, 0, LTHMainWindow.frame.size.width, LTHMainWindow.frame.size.height); + } + else { + _animatingView.frame = CGRectMake(0, 0, LTHMainWindow.frame.size.height, LTHMainWindow.frame.size.width); + } + } +} + + +// And to his AGWindowView: https://github.com/hfossli/AGWindowView +// Without the 'desiredOrientation' method, using showLockscreen in one orientation, +// then presenting it inside a modal in another orientation would display +// the view in the first orientation. +- (UIInterfaceOrientation)desiredOrientation { + UIInterfaceOrientation statusBarOrientation = + [[UIApplication sharedApplication] statusBarOrientation]; + UIInterfaceOrientationMask statusBarOrientationAsMask = UIInterfaceOrientationMaskFromOrientation(statusBarOrientation); + if(self.supportedInterfaceOrientations & statusBarOrientationAsMask) { + return statusBarOrientation; + } + else { + if(self.supportedInterfaceOrientations & UIInterfaceOrientationMaskPortrait) { + return UIInterfaceOrientationPortrait; + } + else if(self.supportedInterfaceOrientations & UIInterfaceOrientationMaskLandscapeLeft) { + return UIInterfaceOrientationLandscapeLeft; + } + else if(self.supportedInterfaceOrientations & UIInterfaceOrientationMaskLandscapeRight) { + return UIInterfaceOrientationLandscapeRight; + } + else { + return UIInterfaceOrientationPortraitUpsideDown; + } + } +} + + +- (void)rotateAccordingToStatusBarOrientationAndSupportedOrientations { + UIInterfaceOrientation orientation = [self desiredOrientation]; + CGFloat angle = UIInterfaceOrientationAngleOfOrientation(orientation); + CGAffineTransform transform = CGAffineTransformMakeRotation(angle); + + [self setIfNotEqualTransform: transform]; +} + + +- (void)setIfNotEqualTransform:(CGAffineTransform)transform { + CGRect frame = self.view.superview.frame; + if(!CGAffineTransformEqualToTransform(self.view.transform, transform)) { + self.view.transform = transform; + } + if(!CGRectEqualToRect(self.view.frame, frame)) { + self.view.frame = frame; + } +} + +- (void)disablePasscodeWhenApplicationEntersBackground { + [[NSNotificationCenter defaultCenter] + removeObserver:self + name:UIApplicationDidEnterBackgroundNotification + object:nil]; + [[NSNotificationCenter defaultCenter] + removeObserver:self + name:UIApplicationWillEnterForegroundNotification + object:nil]; +} + +- (void)enablePasscodeWhenApplicationEntersBackground { + // To avoid double registering. + [self disablePasscodeWhenApplicationEntersBackground]; + + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(_applicationDidEnterBackground) + name:UIApplicationDidEnterBackgroundNotification + object:nil]; + [[NSNotificationCenter defaultCenter] + addObserver:self + selector:@selector(_applicationWillEnterForeground) + name:UIApplicationWillEnterForegroundNotification + object:nil]; +} + + ++ (CGFloat)getStatusBarHeight { + UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation; + if (UIInterfaceOrientationIsLandscape(orientation)) { + return [UIApplication sharedApplication].statusBarFrame.size.width; + } + else { + return [UIApplication sharedApplication].statusBarFrame.size.height; + } +} + + +CGFloat UIInterfaceOrientationAngleOfOrientation(UIInterfaceOrientation orientation) { + CGFloat angle; + + switch (orientation) { + case UIInterfaceOrientationPortraitUpsideDown: + angle = M_PI; + break; + case UIInterfaceOrientationLandscapeLeft: + angle = -M_PI_2; + break; + case UIInterfaceOrientationLandscapeRight: + angle = M_PI_2; + break; + default: + angle = 0.0; + break; + } + + return angle; +} + +UIInterfaceOrientationMask UIInterfaceOrientationMaskFromOrientation(UIInterfaceOrientation orientation) { + return 1 << orientation; +} + + +@end diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/cs.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/cs.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..faadff19 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/cs.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Vložte Passcode"; + +"Enter your old passcode" = "Vložte stávající passcode"; + +"Enter your passcode" = "Vložte svůj passcode"; + +"Enable Passcode" = "Zapnout Passcode"; + +"Change Passcode" = "Změnit Passcode"; + +"Turn Off Passcode" = "Vypnout Passcode"; + +"Re-enter your passcode" = "Ověřte passcode"; + +"Re-enter your new passcode" = "Ověřte svůj nový passcode"; + +"Enter your new passcode" = "Vložte svůj nový passcode"; + +"Passcodes did not match. Try again." = "Zadání není platné. Zkuste prosím znovu."; + +"1 Passcode Failed Attempt" = "1 špatné přihlášení"; + +"%i Passcode Failed Attempts" = "%i špatných přihlášení"; + +"Unlock using Touch ID" = "Odemkněte pomocí Touch ID"; \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/de.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/de.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..53eda470 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/de.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,30 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Pincode eingeben"; + +"Enter your old passcode" = "Alten Pincode eingeben"; + +"Enter your passcode" = "Geben Sie Ihren Pincode ein"; + +"Enable Passcode" = "Pincode aktivieren"; + +"Change Passcode" = "Pincode ändern"; + +"Turn Off Passcode" = "Pincode deaktivieren"; + +"Re-enter your passcode" = "Pincode wiederholen"; + +"Re-enter your new passcode" = "Neuen Pincode wiederholen"; + +"Enter your new passcode" = "Geben Sie Ihren neuen Pincode ein"; + +"Passcodes did not match. Try again." = "Pincodes nicht ident. Bitte nochmals versuchen."; + +"1 Passcode Failed Attempt" = "1 fehlgeschlagener Eingabeversuch"; + +"%i Passcode Failed Attempts" = "%i fehlgeschlagene Eingabeversuche"; + +"Unlock using Touch ID" = "Entsperren mit Touch ID"; + +"Cannot reuse the same passcode" = "Sie können nicht denselben Pincode benutzen"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/en.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/en.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..abec899e --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/en.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,32 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Enter Passcode"; + +"Enter your old passcode" = "Enter your old passcode"; + +"Enter your passcode" = "Enter your passcode"; + +"Passcode info" = "You will be asked to enter this code\neverytime you open the application"; + +"Enable Passcode" = "Enable Passcode"; + +"Change Passcode" = "Change Passcode"; + +"Turn Off Passcode" = "Turn Off Passcode"; + +"Re-enter your passcode" = "Re-enter your passcode"; + +"Re-enter your new passcode" = "Re-enter your new passcode"; + +"Enter your new passcode" = "Enter your new passcode"; + +"Passcodes did not match. Try again." = "Passcodes did not match. Try again."; + +"1 Passcode Failed Attempt" = "1 Passcode Failed Attempt"; + +"%i Passcode Failed Attempts" = "%i Passcode Failed Attempts"; + +"Unlock using Touch ID" = "Unlock using Touch ID"; + +"Cannot reuse the same passcode" = "Cannot reuse the same passcode"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/es.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/es.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..4dd188c7 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/es.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Introduzca contraseña"; + +"Enter your old passcode" = "Introduzca su contraseña antigua"; + +"Enter your passcode" = "Introduzca su contraseña"; + +"Enable Passcode" = "Activar contraseña"; + +"Change Passcode" = "Cambiar contraseña"; + +"Turn Off Passcode" = "Desactivar contraseña"; + +"Re-enter your passcode" = "Vuelva a introducir su contraseña"; + +"Re-enter your new passcode" = "Vuelva a introducir su nueva contraseña"; + +"Enter your new passcode" = "Introduzca su nueva contraseña"; + +"Passcodes did not match. Try again." = "Las contraseñas no coinciden. Inténtelo de nuevo."; + +"1 Passcode Failed Attempt" = "1 intento fallido"; + +"%i Passcode Failed Attempts" = "%i intentos fallidos"; + +"Unlock using Touch ID" = "Desbloquea usando Touch ID"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/fr.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/fr.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..df4e5685 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/fr.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Entrez votre mot de passe"; + +"Enter your old passcode" = "Entrez votre ancien mot de passe"; + +"Enter your passcode" = "Entrez votre mot de passe"; + +"Enable Passcode" = "Entrez votre mot de passe"; + +"Change Passcode" = "Changez votre mot de passe"; + +"Turn Off Passcode" = "Supprimez votre mot de passe"; + +"Re-enter your passcode" = "Réentrez votre mot de passe"; + +"Re-enter your new passcode" = "Réentrez votre nouveau mot de passe"; + +"Enter your new passcode" = "Entrez votre nouveau mot de passe"; + +"Passcodes did not match. Try again." = "Les mots de passe ne correspondent pas. Essayez à nouveau."; + +"1 Passcode Failed Attempt" = "1 échec"; + +"%i Passcode Failed Attempts" = "%i échecs"; + +"Unlock using Touch ID" = "Déverrouillez en utilisant Touch ID"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/it.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/it.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..98451198 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/it.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Inserire il Codice"; + +"Enter your old passcode" = "Inserire il codice precedente"; + +"Enter your passcode" = "Inserisci il codice"; + +"Enable Passcode" = "Abilita codice"; + +"Change Passcode" = "Cambia codice"; + +"Turn Off Passcode" = "Disattiva codice"; + +"Re-enter your passcode" = "Reinserisci il codice"; + +"Re-enter your new passcode" = "Reinserisci il nuovo codice"; + +"Enter your new passcode" = "Inserisci il codice"; + +"Passcodes did not match. Try again." = "I codici non corrispondono. Riprova. "; + +"1 Passcode Failed Attempt" = "1 tentativo fallito"; + +"%i Passcode Failed Attempts" = "%i tentativi falliti"; + +"Unlock using Touch ID" = "Sblocca usando il Touch ID"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ja.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ja.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..c16154ae --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ja.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "パスコードを入力"; + +"Enter your old passcode" = "古いパスコードを入力"; + +"Enter your passcode" = "パスコードを入力"; + +"Enable Passcode" = "パスコードを設定"; + +"Change Passcode" = "パスコードを変更"; + +"Turn Off Passcode" = "パスコードをオフ"; + +"Re-enter your passcode" = "パスコードを再入力"; + +"Re-enter your new passcode" = "新しいパスコードを再入力"; + +"Enter your new passcode" = "新しいパスコードを入力"; + +"Passcodes did not match. Try again." = "パスコードが一致しません。\nもう一度入力してください。"; + +"1 Passcode Failed Attempt" = "パスコード入力に1回失敗"; + +"%i Passcode Failed Attempts" = "パスコード入力に%i回失敗"; + +"Unlock using Touch ID" = "Touch IDで解除"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ko.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ko.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..a586e1a3 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ko.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "암호 입력"; + +"Enter your old passcode" = "이전 암호 입력"; + +"Enter your passcode" = "암호 입력"; + +"Enable Passcode" = "암호 켜기"; + +"Change Passcode" = "암호 변경"; + +"Turn Off Passcode" = "암호 끄기"; + +"Re-enter your passcode" = "암호 재입력"; + +"Re-enter your new passcode" = "새로운 암호 재입력"; + +"Enter your new passcode" = "새로운 암호 입력"; + +"Passcodes did not match. Try again." = "암호가 일치하지 않습니다. 다시 시도하십시오."; + +"1 Passcode Failed Attempt" = "1번의 암호 입력 실패"; + +"%i Passcode Failed Attempts" = "%i번의 암호 입력 실패"; + +"Unlock using Touch ID" = "Touch ID를 이용해 잠금 해제"; \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/nl.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/nl.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..849b7acb --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/nl.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Voer toegangscode in"; + +"Enter your old passcode" = "Voer oude toegangscode in"; + +"Enter your passcode" = "Voer uw toegangscode in"; + +"Enable Passcode" = "Zet code aan"; + +"Change Passcode" = "Wijzig toegangscode"; + +"Turn Off Passcode" = "Zet code uit"; + +"Re-enter your passcode" = "Herhaal toegangscode"; + +"Re-enter your new passcode" = "Herhaal nieuwe toegangscode"; + +"Enter your new passcode" = "Voer nieuwe toegangscode in"; + +"Passcodes did not match. Try again." = "Codes niet hetzelfde. Probeer opnieuw."; + +"1 Passcode Failed Attempt" = "1 mislukte toegangscodepoging"; + +"%i Passcode Failed Attempts" = "%i mislukte toegangscodepogingen"; + +"Unlock using Touch ID" = "Ontgrendel met Touch ID"; \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/pt-PT.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/pt-PT.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..6174fdb4 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/pt-PT.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Inserir senha"; + +"Enter your old passcode" = "Entre com sua senha antiga"; + +"Enter your passcode" = "Inserir sua senha"; + +"Enable Passcode" = "Ativar senha"; + +"Change Passcode" = "Alterar senha"; + +"Turn Off Passcode" = "Desativar senha"; + +"Re-enter your passcode" = "Repetir senha"; + +"Re-enter your new passcode" = "Repetir sua nova senha"; + +"Enter your new passcode" = "Entre com sua nova senha"; + +"Passcodes did not match. Try again." = "Senhas não são equivalentes. Por favor faça outra vez."; + +"1 Passcode Failed Attempt" = "1 falha de entrada de senha"; + +"%i Passcode Failed Attempts" = "%i falhas de entrada de senha"; + +"Unlock using Touch ID" = "Destravar usando o Touch ID"; \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/pt.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/pt.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..abd26cfc --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/pt.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Digite sua senha"; + +"Enter your old passcode" = "Digite sua senha antiga"; + +"Enter your passcode" = "Digite sua senha"; + +"Enable Passcode" = "Ativar senha"; + +"Change Passcode" = "Alterar senha"; + +"Turn Off Passcode" = "Desativar senha"; + +"Re-enter your passcode" = "Repetir senha"; + +"Re-enter your new passcode" = "Repetir sua nova senha"; + +"Enter your new passcode" = "Digite sua nova senha"; + +"Passcodes did not match. Try again." = "Senhas não são equivalentes. Por favor tente novamente."; + +"1 Passcode Failed Attempt" = "1 falha ao digitar a senha"; + +"%i Passcode Failed Attempts" = "%i falhas ao digitar a senha"; + +"Unlock using Touch ID" = "Desbloquear usando o Touch ID"; \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ro.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ro.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..28bd0c2b --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ro.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Introduceți parola"; + +"Enter your old passcode" = "Introduceți parola veche"; + +"Enter your passcode" = "Introduceți parola"; + +"Enable Passcode" = "Activați parola"; + +"Change Passcode" = "Schimbați parola"; + +"Turn Off Passcode" = "Dezactivați parola"; + +"Re-enter your passcode" = "Reintroduceți parola"; + +"Re-enter your new passcode" = "Reintroduceți parola nouă"; + +"Enter your new passcode" = "Introduceți parola nouă"; + +"Passcodes did not match. Try again." = "Parolele nu coincid. Incercați din nou."; + +"1 Passcode Failed Attempt" = "1 încercare eșuată"; + +"%i Passcode Failed Attempts" = "%i încercări eșuate"; + +"Cannot reuse the same passcode" = "Nu puteți refolosi aceeași parolă"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ru.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ru.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..a14bb5d0 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/ru.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,26 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "Введите пароль"; + +"Enter your old passcode" = "Введите старый пароль"; + +"Enter your passcode" = "Введите свой пароль"; + +"Enable Passcode" = "Включить пароль"; + +"Change Passcode" = "Изменить пароль"; + +"Turn Off Passcode" = "Выключить пароль"; + +"Re-enter your passcode" = "Повторно введите пароль"; + +"Re-enter your new passcode" = "Повторно введите новый пароль"; + +"Enter your new passcode" = "Введите новый пароль"; + +"Passcodes did not match. Try again." = "Пароли не совпадают. Попробуйте снова."; + +"1 Passcode Failed Attempt" = "1 Неудачная попытка ввода пароля"; + +"%i Passcode Failed Attempts" = "%i Неудачная попытка "; \ No newline at end of file diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/zh-Hans-CN.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/zh-Hans-CN.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..f5893b3d --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/zh-Hans-CN.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,28 @@ +/* + LTHPasscodeViewController.strings + */ +"Enter Passcode" = "输入密码"; + +"Enter your old passcode" = "输入旧密码"; + +"Enter your passcode" = "输入你的密码"; + +"Enable Passcode" = "启用密码"; + +"Change Passcode" = "改密码"; + +"Turn Off Passcode" = "不启用密码"; + +"Re-enter your passcode" = "重新输入你的密码"; + +"Re-enter your new passcode" = "重新输入你的新密码"; + +"Enter your new passcode" = "输入你的新密码"; + +"Passcodes did not match. Try again." = "密码不正确,请重试!"; + +"1 Passcode Failed Attempt" = "密码错误 1 次"; + +"%i Passcode Failed Attempts" = "密码错误 %i 次"; + +"Unlock using Touch ID" = "用 Touch ID 解锁"; diff --git a/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/zh-Hant.lproj/LTHPasscodeViewController.strings b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/zh-Hant.lproj/LTHPasscodeViewController.strings new file mode 100644 index 00000000..bdb693e8 --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/Localizations/LTHPasscodeViewController.bundle/zh-Hant.lproj/LTHPasscodeViewController.strings @@ -0,0 +1,29 @@ +/* + LTHPasscodeViewController.strings + */ + +"Enter Passcode" = "輸入密碼"; + +"Enter your old passcode" = "輸入舊密碼"; + +"Enter your passcode" = "輸入密碼"; + +"Enable Passcode" = "啟用密碼"; + +"Change Passcode" = "改密碼"; + +"Turn Off Passcode" = "停用密碼"; + +"Re-enter your passcode" = "重新輸入密碼"; + +"Re-enter your new passcode" = "重新輸入新密碼"; + +"Enter your new passcode" = "輸入新密碼"; + +"Passcodes did not match. Try again." = "密碼錯誤,請重試!"; + +"1 Passcode Failed Attempt" = "密碼錯誤 1 次"; + +"%i Passcode Failed Attempts" = "密碼錯誤 %i 次"; + +"Unlock using Touch ID" = "用 Touch ID 解鎖"; diff --git a/app/Pods/LTHPasscodeViewController/README.md b/app/Pods/LTHPasscodeViewController/README.md new file mode 100644 index 00000000..1300ba0e --- /dev/null +++ b/app/Pods/LTHPasscodeViewController/README.md @@ -0,0 +1,91 @@ +# LTHPasscodeViewController +Simple to use iOS 7 style Passcode - the one you get in Settings when changing your passcode. + +# How to use +Drag the contents of `LTHPasscodeViewController` to your project, or add `pod 'LTHPasscodeViewController'` to your Podfile (preffered). + +If your app uses extensions, `LTH_IS_APP_EXTENSION` needs to be defined: + +* either in each target's `Prefix.pch` file, if there is one, via `#define LTH_IS_APP_EXTENSION` +* or in each target's build settings, down to `Preprocessor Macros`, double click each of your schemes, click on the `+` on the popup that appears and add `LTH_IS_APP_EXTENSION` + +Example, called in `application:didFinishLaunchingWithOptions`: + +```objc +[LTHPasscodeViewController useKeychain:NO]; +if ([LTHPasscodeViewController doesPasscodeExist]) { + if ([LTHPasscodeViewController didPasscodeTimerEnd]) + [[LTHPasscodeViewController sharedUser] showLockScreenWithAnimation:YES + withLogout:NO + andLogoutTitle:nil]; +} +``` + +* Supports simple (4 digit) and complex passcodes. +* Data us saved in the Keychain, by default. Supports custom saving, by calling `[LTHPasscodeViewController useKeychain:NO]` after initializing and implementing a few protocol methods (the same names the library uses for the same job): + +```objc +- (void)passcodeViewControllerWillClose; +- (void)maxNumberOfFailedAttemptsReached; +- (void)passcodeWasEnteredSuccessfully; +- (void)logoutButtonWasPressed; +- (NSTimeInterval)timerDuration; +- (void)saveTimerDuration:(NSTimeInterval)duration; +- (NSTimeInterval)timerStartTime; +- (void)saveTimerStartTime; +- (BOOL)didPasscodeTimerEnd; +- (void)deletePasscode; +- (void)savePasscode:(NSString *)passcode; +- (NSString *)passcode; +// All of them fall back on the Keychain if they are not implemented, even if [LTHPasscodeViewController useKeychain:NO] was called, for flexibility over what and where you save. +// Do you only want to save the passcode in a different location and leave everything else in the Keychain? Call [LTHPasscodeViewController useKeychain:NO], but only implement -savePasscode: +``` + +* Open as a modal, or pushed for changing, enabling or disabling the passcode: + +```objc +/** + @param viewController The view controller where the passcode view controller will be displayed. + @param asModal Set to YES to present as a modal, or to NO to push on the current nav stack. + */ +- (void)showForEnablingPasscodeInViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +- (void)showForDisablingPasscodeInViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +- (void)showForChangingPasscodeInViewController:(UIViewController *)viewController asModal:(BOOL)isModal; +``` + +* Show the lock screen over the window: + +```objc +- (void)showLockScreenWithAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle; + +// Example: +[[LTHPasscodeViewController sharedUser] showLockscreenWithAnimation:YES withLogout:NO andLogoutTitle:nil]; +// Displayed with a slide up animation, which, combined with +// the keyboard sliding down animation, creates an "unlocking" impression. +``` + +* Show the lock screen over a specific view. Works like the above method, but the size and center will be of the passed in view: + +```objc +- (void)showLockScreenOver:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString *)logoutTitle; + +// Example: +[[LTHPasscodeViewController sharedUser] showLockscreenOver:popover withAnimation:YES withLogout:NO andLogoutTitle:nil]; +``` + +* entering foreground and resigning is handled from within the class. + + +Makes use of [SFHFKeyChainUtils](https://github.com/ldandersen/scifihifi-iphone) to save the passcode in the Keychain. I know he dropped support for it, but I updated it for ARC 2 years ago ([with help](http://stackoverflow.com/questions/7663443/sfhfkeychainutils-ios-keychain-arc-compatible)) and I kept using it since. The 'new' version isn't updated to ARC anyway, so I saw no reason to switch to it, or to any other library. + +Feel free to [contact me](mailto:roland@rolandleth.com), or open an issue if anything is unclear, bugged, or can be improved. + +![Screenshot](https://rolandleth.com/images/ios7-style-passcode/screenshot.png) ![Screenshot](https://rolandleth.com/images/ios7-style-passcode/change-passcode-screenshot.png) + +# Apps using this control +[Expenses Planner](https://itunes.apple.com/us/app/expenses-planner-reminders/id669431471?mt=8), [DigitalOcean Manager](https://itunes.apple.com/us/app/digitalocean-manager/id633128302?mt=8), [LovelyHeroku](https://itunes.apple.com/us/app/lovelyheroku/id706287663?mt=8&uo=4), [Flow Web Browser](https://itunes.apple.com/us/app/flow-web-browser-downloader/id705536564?mt=8), [Balance - Checkbook App](https://itunes.apple.com/US/app/id854362248), [QIF Reader](https://itunes.apple.com/us/app/qif-reader/id374178932?mt=8), [Zee - Personal Finance](https://itunes.apple.com/us/app/zee-personal-finance/id422694086?mt=8), [EZDiary](https://itunes.apple.com/us/app/ezdiary-my-diary/id1128083826?ls=1&mt=8), [MEGA](https://itunes.apple.com/us/app/mega/id706857885?mt=8). + +If you're using this control, I'd love hearing from you! + +# License +Licensed under MIT. If you'd like (or need) a license without attribution, don't hesitate to [contact me](mailto:roland@rolandleth.com). diff --git a/app/Pods/Manifest.lock b/app/Pods/Manifest.lock index ac5342e6..6f69c4bd 100644 --- a/app/Pods/Manifest.lock +++ b/app/Pods/Manifest.lock @@ -45,6 +45,7 @@ PODS: - JDStatusBarNotification (1.5.3) - JSCoreBom (1.1.1) - libPhoneNumber-iOS (0.8.13) + - LTHPasscodeViewController (3.8.10) - MBProgressHUD (1.0.0) - NSGIF (1.2) - NSHash (1.1.0) @@ -90,6 +91,7 @@ DEPENDENCIES: - JDStatusBarNotification - JSCoreBom (~> 1.1.1) - libPhoneNumber-iOS + - LTHPasscodeViewController - MBProgressHUD (~> 1.0) - NSGIF (~> 1.0) - NSHash @@ -145,6 +147,7 @@ SPEC CHECKSUMS: JDStatusBarNotification: 29413865af11c862c17180610b0f46a21118b412 JSCoreBom: 712590b897ecd74d9fa9cb0f16857491411c932b libPhoneNumber-iOS: 3a37004baf779b4262ab29a31a87d2ae668159d4 + LTHPasscodeViewController: 17b0d49903dc1db6d35b95ccc4ecc4253791601f MBProgressHUD: 4890f671c94e8a0f3cf959aa731e9de2f036d71a NSGIF: 73b435330174a9d04db9886a232c605a3e8139b5 NSHash: 61d598c6d48957c5557f1eef0aeafd6ef5ec5fb7 @@ -167,6 +170,6 @@ SPEC CHECKSUMS: TWMessageBarManager: fd84e7948ba7968a2b5d9454859135761214ec56 UICKeyChainStore: f1cbd42216a113f0165de1e733e62905b8823432 -PODFILE CHECKSUM: ff638f73ded7730662d7ed545fb35075e747caa1 +PODFILE CHECKSUM: ba82972a11ef499ab9fab03ac4de5a0eceed8f5a COCOAPODS: 1.2.1 diff --git a/app/Pods/Pods.xcodeproj/project.pbxproj b/app/Pods/Pods.xcodeproj/project.pbxproj index da00c016..abbec59f 100644 --- a/app/Pods/Pods.xcodeproj/project.pbxproj +++ b/app/Pods/Pods.xcodeproj/project.pbxproj @@ -7,1039 +7,1062 @@ objects = { /* Begin PBXBuildFile section */ - 000DFD432472EF39564852DE457A91DC /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CB56540951EF36C5E98755E6A042969 /* SDWebImageDownloaderOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 00C05031BBA5BA48A00FE41348F41BDA /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B956627C8F29346A3228905FB54814 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 01899650FEA6B646D9B45E8925285DC0 /* IQAudioRecorderConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 40ADE6B0D7B3C182841E61FF8499599D /* IQAudioRecorderConstraints.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 01B4CF2CDCB2D598E373E3913DB3A00B /* AFOAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B07FF1E06C53DCB8B217AA9478784B /* AFOAuthCredential.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 01E86F7E0A271496136145E2625BF38C /* APJob.m in Sources */ = {isa = PBXBuildFile; fileRef = F60BDAA393F4B22881993108134A78FA /* APJob.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 02299FB24381BF3507023EC58B7E1751 /* APAddressBook-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7428F379FCB715DBF9A1D3CCC796F985 /* APAddressBook-dummy.m */; }; - 02695298444D9570C8D8D613D35A8C7E /* stop_playing@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = BA54C48877EF60705261EA85AE05196F /* stop_playing@3x.png */; }; - 0338342CFF0CCEDC1E25BB2D55B78AAA /* APContactDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BEE37C5508DD5FE4F1A8C06786DBFFA /* APContactDate.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0349372423392636AF1ACC5E001FDE64 /* SCSiriWaveformView.m in Sources */ = {isa = PBXBuildFile; fileRef = BABE6FBA4F5F2244E7CC6B584D54AD13 /* SCSiriWaveformView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 03B4A2ED30801DB55104B313BD1D3D0C /* id3_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EFE46D6EBE39C57DF71C86E72B9B960 /* id3_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03FE3C98B37B1DF2360D5AD18A58E04B /* DTCoreTextGlyphRun.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FA955B9C8CC142C90D35B73249EC5A /* DTCoreTextGlyphRun.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0426F736B9DFCEFDBBE86F5B4D86C9E3 /* DTCustomColoredAccessory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A8AC01C185C863465A829E558CBEA9F /* DTCustomColoredAccessory.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 04283694D9E7034DEFA593C3D2D60966 /* NSData+DTCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 70453B076B8940B2EB2C5FC8B72E5BCF /* NSData+DTCrypto.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0533E8787C1CF0848971CB342E37F07B /* DTAttributedTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDBDF8DAE9FB6AE9BC7CE6D695C0E61 /* DTAttributedTextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0542CF420008AB56A718E7457DB3EBEB /* DTFoundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 979C34194C0854F49DDCFBB45F2947B0 /* DTFoundation-dummy.m */; }; - 055F635F7677C8DD3C2C796AA2247FBF /* FLEXDictionaryExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA4DD1C4C964A6E72CE72E34B9F402F /* FLEXDictionaryExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 058B1CBA818FA465DA7DA197D70B5A35 /* SWFrameButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBABFC70BDB54438E010E1587B30256 /* SWFrameButton.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 05AE03D228A3B8DB1E974258E82B436F /* FSXMLHttpRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A25E4D2337CDEF01767C153CE059BF2 /* FSXMLHttpRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 060D49CF80F7594CBC3CC04177ABD229 /* FLEXArgumentInputTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D549B2036E0AF736ED85F46598B515 /* FLEXArgumentInputTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06C46BE119389ADC39EDDD5BD740C9F3 /* DTPieProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B74B9B1AB4534E5C4AB7C4DF1EF82E9 /* DTPieProgressIndicator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 06D098BB74425BD6B84E15B23B488172 /* DTHTMLParserTextNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE1E79B32A754EE56307A40DC61E30C /* DTHTMLParserTextNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 06E31F8A639C5A6A131E2C51AA8C0AB0 /* FLEXHeapEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 108A838DA8BB27D43022CDA8610A7B1A /* FLEXHeapEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E9478921B6F9D64E339B9EF676BDF1 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D3ED3B8811A0ADCAE6456BE8C2C8ED /* UIImageView+HighlightedWebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 07211881F4CB4221B8DC96C716DE02D3 /* TTTAttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F99FB59527E073D47C4CB48C98FD83C /* TTTAttributedLabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 075BD03B22848B54C3D82D5E1E796EAF /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = E1460E1D84FFC0E3C2FD62AC2FCADD6F /* AFImageDownloader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 077610199435AA2CD9C07A60395EACEC /* FLEXWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92E46C5CB2BDE33EB48F4CF4D42E25F4 /* FLEXWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0790E52599F3313337C3904375DC91C8 /* REMenu-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B73049F1AC9268AAF70E3553760730 /* REMenu-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 07FD8BA1B8D4EDA4397392EE58D4920A /* FLEXArgumentInputViewFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = A685A658CCBAB501BB1A71894C650C31 /* FLEXArgumentInputViewFactory.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 00C05031BBA5BA48A00FE41348F41BDA /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB6F71E1F9B759FE76C700470F308B7 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 01899650FEA6B646D9B45E8925285DC0 /* IQAudioRecorderConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EFFA87876839553ADA5F9F992BE792D /* IQAudioRecorderConstraints.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 01B4CF2CDCB2D598E373E3913DB3A00B /* AFOAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = BDE1DC8E722D6F7487DF5DD3D0FD7A71 /* AFOAuthCredential.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 01E86F7E0A271496136145E2625BF38C /* APJob.m in Sources */ = {isa = PBXBuildFile; fileRef = B0275973A544E586721DF5BE05257135 /* APJob.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 01FD2B65FB516ABE58091C6E30D6C0F4 /* SBJson4.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B67B04AD3EA88328409190784CEF75 /* SBJson4.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02299FB24381BF3507023EC58B7E1751 /* APAddressBook-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 888D5413CDAF7C079B15F75C5A808015 /* APAddressBook-dummy.m */; }; + 02695298444D9570C8D8D613D35A8C7E /* stop_playing@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7582CDC7053ADDEFAAA3CE47D8505FDB /* stop_playing@3x.png */; }; + 0338342CFF0CCEDC1E25BB2D55B78AAA /* APContactDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 40BB9F9D8CDCFD669BC9A375047477E9 /* APContactDate.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0349372423392636AF1ACC5E001FDE64 /* SCSiriWaveformView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84131B04EF0BC7FE5CF4A03430C50F9C /* SCSiriWaveformView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0380DF1C347DED433D52DDA96A6093DD /* UICKeyChainStore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 923D69D940528F5C1A90D31C2171AEFC /* UICKeyChainStore-dummy.m */; }; + 03B4A2ED30801DB55104B313BD1D3D0C /* id3_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = F62AEEAD3EA1439130930CD5E5F92414 /* id3_parser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03CBB3C277265E15E863F8B9B09EBDE2 /* SBJson4StreamWriterState.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A72C8F0744BF0817294DEC749F6092 /* SBJson4StreamWriterState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 03FE3C98B37B1DF2360D5AD18A58E04B /* DTCoreTextGlyphRun.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CADE16C4B3FC2CCA56DE0F17E29013C /* DTCoreTextGlyphRun.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0426F736B9DFCEFDBBE86F5B4D86C9E3 /* DTCustomColoredAccessory.m in Sources */ = {isa = PBXBuildFile; fileRef = 600387883BC9EC0E1F68A77D2C288367 /* DTCustomColoredAccessory.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 04283694D9E7034DEFA593C3D2D60966 /* NSData+DTCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = AF44F2CABF4F4738E41C289C99D978DD /* NSData+DTCrypto.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0533E8787C1CF0848971CB342E37F07B /* DTAttributedTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCB537225BC2F88E672800536A596EC /* DTAttributedTextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0542CF420008AB56A718E7457DB3EBEB /* DTFoundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 941C16CF27A3B6F58104814FF006B5EB /* DTFoundation-dummy.m */; }; + 055F635F7677C8DD3C2C796AA2247FBF /* FLEXDictionaryExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5620E858C3F0F2A3B085EC77B6EAF607 /* FLEXDictionaryExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05AE03D228A3B8DB1E974258E82B436F /* FSXMLHttpRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7293D4E5C870A94981600DCA4CAFAC08 /* FSXMLHttpRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 060D49CF80F7594CBC3CC04177ABD229 /* FLEXArgumentInputTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = BF57BFC3FFE384D3DF9B91968B67792A /* FLEXArgumentInputTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06C46BE119389ADC39EDDD5BD740C9F3 /* DTPieProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 79084DDFF0DCF8918952878D090A9AAB /* DTPieProgressIndicator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 06D098BB74425BD6B84E15B23B488172 /* DTHTMLParserTextNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95C83E07D36273D1B428D328F2E219CF /* DTHTMLParserTextNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 06E31F8A639C5A6A131E2C51AA8C0AB0 /* FLEXHeapEnumerator.h in Headers */ = {isa = PBXBuildFile; fileRef = DC90916D03181C6661E323F9FB5159B1 /* FLEXHeapEnumerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 075BD03B22848B54C3D82D5E1E796EAF /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = E18D993D0CB98625E6A7F40C1F37B4C0 /* AFImageDownloader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 077610199435AA2CD9C07A60395EACEC /* FLEXWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A7E267A8B2B6EE0AF7881373BCFC6E /* FLEXWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07C473087AE762AE05A2A28A21300E80 /* RMDateSelectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BC85BD8EE9E4A6E0558FE3FCA909D70 /* RMDateSelectionViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 07FD8BA1B8D4EDA4397392EE58D4920A /* FLEXArgumentInputViewFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 07D1330B53BC9692892AE7E7E2702790 /* FLEXArgumentInputViewFactory.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 084DA372E50596A0BD8907AB7C45250E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; - 0880FB10FF585D07C1C7D689070B6C29 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7249FFC6D8551192D7D771C80C2158D1 /* ImageIO.framework */; }; - 08A4E0D87A5A1E4AC57DE4A59670B94D /* FLEXFileBrowserTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C87805A7042B335E7040668DC5F60AAD /* FLEXFileBrowserTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08A798B631806487F66A170B25FA01DD /* UIWebView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = FC02B14FB01A964E9E90E8009D0853E8 /* UIWebView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 08A812FC234F48B94BCDA13AC5C3534C /* HMSegmentedControl-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C4D40948A967A9066D3764FD4CBB52 /* HMSegmentedControl-dummy.m */; }; - 09565959F63BDF332DEF0B927ACA844B /* TTTAttributedLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3A02815769BB4E0ED550DB1FBE35F5 /* TTTAttributedLabel-dummy.m */; }; + 08A4E0D87A5A1E4AC57DE4A59670B94D /* FLEXFileBrowserTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF677B97CC51E8752A9B6768DCFBFB5 /* FLEXFileBrowserTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08A798B631806487F66A170B25FA01DD /* UIWebView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F7230EBFA846202E522AD8142BCAB6 /* UIWebView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 08A812FC234F48B94BCDA13AC5C3534C /* HMSegmentedControl-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C74663550A52CC7EE1C2CC6491846167 /* HMSegmentedControl-dummy.m */; }; 09B63DB6C06DF38890F830A3D6BA9E46 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 09F4E66B266AAB8D5420D96BD09E58CA /* DTTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD4C39A6EC0674744537D4134D10BE7 /* DTTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A3BF33F7A8249E1B6DD30CC808C03C4 /* IQAudioRecorderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7548DFEBC1E1B7EF0FA46886357DBF9F /* IQAudioRecorderViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0A7047939239917E7010D8DA6CF22C40 /* FLEXArgumentInputStructView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB8699A1D8F9ADBE5A02516E01BA8B6 /* FLEXArgumentInputStructView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A783372D710D5C7E5C6EE371E8E3977 /* TWMessageBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 516E62C5BC8A17EE6E1E4B882C90A370 /* TWMessageBarManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0A8CE87FF6D40C6B355763FE7CAB4DDB /* NSURL+DTUnshorten.h in Headers */ = {isa = PBXBuildFile; fileRef = 690E28B5592B0D4DEBC50629497F7A10 /* NSURL+DTUnshorten.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0AA14DBFC3908632E4134E0452386C09 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8EDA7B79DBE2339D4A925BA5BCF4A4 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09F4E66B266AAB8D5420D96BD09E58CA /* DTTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B1272DD6790F6324EE3D1928904137 /* DTTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A361D6B6B8792CF5C34132094407F96 /* icon-error.png in Resources */ = {isa = PBXBuildFile; fileRef = 60AB17D9A77BFA09F5D1C7A10CBDDB3E /* icon-error.png */; }; + 0A3BF33F7A8249E1B6DD30CC808C03C4 /* IQAudioRecorderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8E2FC15A1725A98A47D7FD116832C5 /* IQAudioRecorderViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0A7047939239917E7010D8DA6CF22C40 /* FLEXArgumentInputStructView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C520C8169D9AB8BC753B6B22989480 /* FLEXArgumentInputStructView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A8CE87FF6D40C6B355763FE7CAB4DDB /* NSURL+DTUnshorten.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6901341334DEDE58238A0327DD0A64 /* NSURL+DTUnshorten.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0AB81D1D16C62C3714F29189B870DD8E /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 429815C3542D5E4802EC62913EEBD897 /* CFNetwork.framework */; }; 0AEAE6836CA4418C83060E29621DABE2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 0AFFE3D2E0FED76FA5588047AD43A3ED /* TWMessageBarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E0B998B5AB50343A77AB46611BD8CF /* TWMessageBarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B0B1EADFB7D5F4CCE268CF0F51AD2BD /* REMenuItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 12084775717090174509AFC9E241F704 /* REMenuItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B5168580C154E121CA5CE81429FD912 /* APThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 6867048CC65188369D134347ECD7AF6D /* APThread.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0BB454055479B16B4B13AB887C48A981 /* INTUHeadingRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B8AF31B3B9C9C9215734128DDB02EC1B /* INTUHeadingRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0C33EF0EBC8DA71E0A3C9B7CC92D888E /* FLEX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FA012A35DE80851658E776943351113 /* FLEX-dummy.m */; }; - 0C4285780FA84FE2BA7976F457CF7999 /* REMenuItemView.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C923CEEAAE9923A5D39EF04BA26A1C /* REMenuItemView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0C4C25E8F5DDFC749244E0CD41AB3EB5 /* NSAttributedString+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BB5070AB48DFD5D2ECD6629C9BFCD04 /* NSAttributedString+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0C4F680C0D707222DC53067283D51F54 /* APDeprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = 4672F80170A9881CFB9F66C08E3857F6 /* APDeprecated.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0C60817C2626A8B5055E1C10D3BFB3DF /* DTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D1290477FFB589F2B6DE72441808F9 /* DTAttributedLabel.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0C624B43FA3BE616DA34A96696AB422D /* NSString+DTPaths.m in Sources */ = {isa = PBXBuildFile; fileRef = F956B99B115045FDADA5A63BF3DD8F70 /* NSString+DTPaths.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0CA8895DC1FD30548578F1C3C7C6E37B /* FLEXWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED70B0D12F67CBCFF4E17F833FEFB4D /* FLEXWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CE82EB91327F8EFF7FF559C007BDF67 /* RMActionController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EC832BA8D266ECEB23E447318232D0EE /* RMActionController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D1FFD30267C0776FD3E88EFF51E312F /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 457C0E5170CE625A3714799F2F6869C1 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D4EB0FD52ACB4FB09B529EFA9A430FC /* FLEXArgumentInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5862181980ECA3CF8DD1EE7B49643D1 /* FLEXArgumentInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DDB37BA5632653D1858BD91347B26E1 /* DTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D0ADE84C411222AF23DB1BF0D9317C97 /* DTLog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0DE540E32E3579DE9B061B343C150315 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FCDD1D2A2D06CBA142DB8AFFA0D4D0 /* Reachability.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0DEBEE451E428C99304A1C817A909CC5 /* JDStatusBarNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEF243AA454536B04D54B074E4AEA575 /* JDStatusBarNotification-dummy.m */; }; - 0DF99B6173869EAF608E31C09C46695A /* JDStatusBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = D4CEC3362541FF919AB84A5783341BDE /* JDStatusBarView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0E5B82B9252B09A317CD032A77248477 /* BBBadgeBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 98BA0687B2D225DB73211D0D7F7CF9F8 /* BBBadgeBarButtonItem.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0E6294102F8325A5396CA8B7942DB45A /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 429815C3542D5E4802EC62913EEBD897 /* CFNetwork.framework */; }; - 0E8C512752C87282EE16E68D46FE1A04 /* DTCoreText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F382EDDE6497862B6B7F86E8DE2FE671 /* DTCoreText-dummy.m */; }; - 0F0D3E798AF929592B64BC97D8FE9C01 /* SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 12692D9853407786F7ABCDF0D2A6BF9A /* SRWebSocket.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0F444F6E80B11B919E979776C7EED9C8 /* file_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 957747C16F150CA097C088E30CEDDC6B /* file_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F60733159BB82F39984B0ED8607C5A4 /* SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1892499FF6ABB4BC6ECA5C278874732C /* SRWebSocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0F9B8EA34F2B9B36D11613FE78EF7116 /* FSParsePlaylistRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 9392750CF54642F63111ACBECC55036F /* FSParsePlaylistRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0FE8DE00A461C8F1CF8C7F425B2CAC1E /* NSCoder+DTCompatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = A1EDC91DC918486140EBFA96AA2518D9 /* NSCoder+DTCompatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 0FEA4584B14641DF2DB60F5BDEFEDDCC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 1055569D3D1BC7EF0966218503A8E9DB /* NSScanner+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 80BCA8699920B9B7171BE369FA6205A6 /* NSScanner+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 10C1E8FFBB0D3745E0ECF90FDED5434E /* NSArray+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = D8BD21D7BB635862F7C639F950D476A7 /* NSArray+DTError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 10F573E7F69161CCD73BFF12E02281EF /* audio_record.png in Resources */ = {isa = PBXBuildFile; fileRef = 1536793F3F8EE667AEE062528C222BAD /* audio_record.png */; }; - 11099077F741E3E811458D3BA6F0E014 /* DTIframeTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = F8048C686915AB3DFB1B6F55D1CCC118 /* DTIframeTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 115DABA105F7B1BE08B66597B16C6F90 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ECA4DFB3BC38760CD4BD4C3121A1129 /* UIImage+MultiFormat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1185B5F511BDF709DB5E3B32CF337BE4 /* audio_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = C18064EF11B4E40506A6A4C68EB1AD24 /* audio_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 121759DC052830681A2B0FEF9AEDE747 /* RMActionController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3ABFD948A06BEE96A317BC5C6F3325 /* RMActionController-dummy.m */; }; - 1277D4AE1B25CC3C1700AE6A8A32316F /* SZTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA81A7E47A3412C239DAE175A6A38F5D /* SZTextView-dummy.m */; }; - 127C9D0DA7ED97AC041327BE74DF9F9A /* FLEXGlobalsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BD0DE6BDA689B15CA3F97CC3D82BA9 /* FLEXGlobalsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12D420728D0E6205F129D183A6CD9BFF /* FLEX-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D197F8B6E9BBCB7F92B8CF5C39D2D8 /* FLEX-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 141385CA441D1B15F1D59B0A71B39572 /* FSPlaylistItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C3A6B11DC9748FD6401F0EDDB0436E9F /* FSPlaylistItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1432297E0366BBEDC4E0A8F5F0F9B28A /* Pods-Jasonette-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D43C2AC26C2A0F4B9F6588C9A50344DF /* Pods-Jasonette-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14567316F682EC54503DCCDF2AA0DF57 /* DTCoreTextConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E481CD749FDA0512A86F61A3F3DB394 /* DTCoreTextConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1488E9BD5532C6379221C9405B86340C /* INTULocationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F06426721B1F4E116E9EAC674B15C7 /* INTULocationManager+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 148C26C489354034115BE1F22185EA84 /* APAddressBookRefWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 40428BBE9D2D7D7A773C9D218055FC2F /* APAddressBookRefWrapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 14AF3E0E6FDA2DF0B1CB1080E7250352 /* DTFolderMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = E94B01BF2AD31C5DA1A523E24D40AAEB /* DTFolderMonitor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0B5168580C154E121CA5CE81429FD912 /* APThread.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F95B98AD8FB3A3BCFB481C73F97BAC /* APThread.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0BB454055479B16B4B13AB887C48A981 /* INTUHeadingRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E5410520A51BFE20C24BAC455CC4E3 /* INTUHeadingRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0C33EF0EBC8DA71E0A3C9B7CC92D888E /* FLEX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7B7944C844092E0A671E7967E9D4019 /* FLEX-dummy.m */; }; + 0C4C25E8F5DDFC749244E0CD41AB3EB5 /* NSAttributedString+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 637C79F4C883D018947722FAE52C0F60 /* NSAttributedString+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0C4F680C0D707222DC53067283D51F54 /* APDeprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = 78530D09E660F0440BEC54E9D39164D7 /* APDeprecated.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0C60817C2626A8B5055E1C10D3BFB3DF /* DTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = B436D7684F588E961A6D7F30D3D64CE9 /* DTAttributedLabel.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0C624B43FA3BE616DA34A96696AB422D /* NSString+DTPaths.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AAC256B0D73B2852C368D2FC9794639 /* NSString+DTPaths.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0C8558E2CE6B6A3A883FA0627FCB4C5B /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + 0CA8895DC1FD30548578F1C3C7C6E37B /* FLEXWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 7468F75F8EC8F6219DEA8FDCD9B9E5BC /* FLEXWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D1FFD30267C0776FD3E88EFF51E312F /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FA41754E7D5A2B5A1EB61BE12B2CE6 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0D4EB0FD52ACB4FB09B529EFA9A430FC /* FLEXArgumentInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 138BB209C0934ED4E38AA814B0C3EF36 /* FLEXArgumentInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DDB37BA5632653D1858BD91347B26E1 /* DTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C65AFC62CA31D4715CCB2040BD43198 /* DTLog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0DE540E32E3579DE9B061B343C150315 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F37F960C46352D28F46DF9C2ACDC484 /* Reachability.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0DEBEE451E428C99304A1C817A909CC5 /* JDStatusBarNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 082427ECF6CCB82459A8091714C81274 /* JDStatusBarNotification-dummy.m */; }; + 0DF99B6173869EAF608E31C09C46695A /* JDStatusBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = A3F0FBC34E9260AFD75E99D4C3B475BA /* JDStatusBarView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0E5B82B9252B09A317CD032A77248477 /* BBBadgeBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A3D96E5FCA89977E3EABE38BA34C0C0 /* BBBadgeBarButtonItem.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 0E6785E9A606B5B9D7F2036761557098 /* SBJson4StreamParser.h in Headers */ = {isa = PBXBuildFile; fileRef = A464BA27CF561E1F6D8E5AD19C3D1847 /* SBJson4StreamParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0E8C512752C87282EE16E68D46FE1A04 /* DTCoreText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C9E138035AB9626282D01978280D54 /* DTCoreText-dummy.m */; }; + 0F444F6E80B11B919E979776C7EED9C8 /* file_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F824D88D9DC2EC39209686A09DC59EF /* file_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9B8EA34F2B9B36D11613FE78EF7116 /* FSParsePlaylistRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 240FD91EF54A748EA9B6476014C7DFF2 /* FSParsePlaylistRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FE8DE00A461C8F1CF8C7F425B2CAC1E /* NSCoder+DTCompatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DDC194FD012415DE371E97259AEA5D4 /* NSCoder+DTCompatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1055569D3D1BC7EF0966218503A8E9DB /* NSScanner+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE9C4267310C59A5C302AB6BFA6EAB9 /* NSScanner+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 10C1E8FFBB0D3745E0ECF90FDED5434E /* NSArray+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E007265AB1375938CB8864D20767051 /* NSArray+DTError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 10F573E7F69161CCD73BFF12E02281EF /* audio_record.png in Resources */ = {isa = PBXBuildFile; fileRef = 168507772F60842626535B6D314E37BD /* audio_record.png */; }; + 11099077F741E3E811458D3BA6F0E014 /* DTIframeTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA92A0040CAFDEAE4A4F42F2C2071D7 /* DTIframeTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1185B5F511BDF709DB5E3B32CF337BE4 /* audio_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5B40387A80ED13803A1C6F450D4B72 /* audio_queue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127C9D0DA7ED97AC041327BE74DF9F9A /* FLEXGlobalsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D6C686C023236F9439EF6F410FB435 /* FLEXGlobalsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12D420728D0E6205F129D183A6CD9BFF /* FLEX-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E0F6026C083FAD1E5D616635326E13 /* FLEX-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 141385CA441D1B15F1D59B0A71B39572 /* FSPlaylistItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F45BF724B6A66F73E5EEF34DE78988 /* FSPlaylistItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14567316F682EC54503DCCDF2AA0DF57 /* DTCoreTextConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E24FC69B6876DD5DA8F7E90AE4D7B3 /* DTCoreTextConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1488E9BD5532C6379221C9405B86340C /* INTULocationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A533DF28C707710B043376272DF45DC2 /* INTULocationManager+Internal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 148C26C489354034115BE1F22185EA84 /* APAddressBookRefWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 482174E714D9BE843D0737D31C5A7163 /* APAddressBookRefWrapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 14AF3E0E6FDA2DF0B1CB1080E7250352 /* DTFolderMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = BE46C0E810CDA8DF6288461E1F502870 /* DTFolderMonitor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 14BD28A6E52D43CF08B80D0CC4466705 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; 14CA32AACADBC7D008311E6F720D583D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 15DE889D999DED9C2BCF95EB3AD955A7 /* RMDateSelectionViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E12C129ADD9AA593E8E9482A0B22E5F0 /* RMDateSelectionViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 15F08193174D25A990D2A74B7CC3BF81 /* APAddressBookAccessRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = D575A59D3C2EE746BA5E62A403964436 /* APAddressBookAccessRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 168BA5B32CF701B54295CFE6802D5E37 /* AFOAuth2Manager.m in Sources */ = {isa = PBXBuildFile; fileRef = 040E201D23C3272382C725C339A9E191 /* AFOAuth2Manager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 15F08193174D25A990D2A74B7CC3BF81 /* APAddressBookAccessRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 09601A063C8FAF8E78B9CE3F57E326A6 /* APAddressBookAccessRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 168BA5B32CF701B54295CFE6802D5E37 /* AFOAuth2Manager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0101CFD9A46B816F8AC07A639D46C7EB /* AFOAuth2Manager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 169065206066B2A7CDECBFEDAA73BD45 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E70F4BD02D647CEE820CC65A4916D3E /* UIKit.framework */; }; - 16B3110415CB468DD256F3BBD951B475 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - 16FFDC93BB8AB9E0D8F2F84411615646 /* JSCoreBom.h in Headers */ = {isa = PBXBuildFile; fileRef = 95238CDB6D9A985E03040C605CEB404E /* JSCoreBom.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 171F47D5B8C4A8CAC17D0C9A2D33E064 /* FLEXGlobalsTableViewControllerEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB3C4C04AD6BF1711323155D0A0C89F /* FLEXGlobalsTableViewControllerEntry.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 17273A2E51D1316B7AB6E92C916C2191 /* FLEXTableContentCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 8293519E7ED69D4E3FAC5AE1AED0C0BF /* FLEXTableContentCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17DCFB6A270240937555184EC7E4855B /* Reachability-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F02172ABD321A56C54B60CD32E788349 /* Reachability-dummy.m */; }; - 17F35E34D9AB22D81FBA77B6DCF1C3BB /* JDStatusBarStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8583FFA08DD9B9FB1EBDD5EE7D493DF8 /* JDStatusBarStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17F43BD263095E16EF936F95F01ACF88 /* NBPhoneNumberDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BF7058E82E1B94ADA5D0DB5024284A /* NBPhoneNumberDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 185AA994E7F3670860B8AFBEA70B7CF3 /* APAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = D08BDE0EC8D8460F373677430C80C109 /* APAddressBook.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 18AF4B55D867CDC898C91414BC98A1BA /* SBJson-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F515558612CF3F4389DAEB0FA237FF6B /* SBJson-dummy.m */; }; - 18B809B55F7A50DA858A5196C78814D3 /* FLEXMultilineTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B4F9B214A377B49897194D0790FAAC48 /* FLEXMultilineTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 18D282DFF5098EABD48B5DFDFEBCCCF2 /* DTCoreTextLayoutFrame+Cursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E355C6423D3D40D0AEA2368BB53BC3F /* DTCoreTextLayoutFrame+Cursor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1946480CD3D7A60FD1450ED99857F650 /* UIView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8C062D6B33A1D5AD268E7FDB3D6174 /* UIView+DTFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 196E97428E4C6F87B24745FC8F1518D9 /* FLEXHierarchyTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 268F104C6B07DEADB10BF8A867035B86 /* FLEXHierarchyTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19A12BC0BAD95C5EAF757378A1E88ABF /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF9CEECDC891DC10424F5DF51252A23 /* SDWebImageDecoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 19D65AC2E3C1F7E972E64BF6A42C5A47 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */; }; - 1A0E6E34FA9158352F2BD06E83F83E21 /* FLEXNetworkObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DDFB7042468918B6D0E4D747137A7AC /* FLEXNetworkObserver.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1A1B0C21E0E256C7FCB365022387E8CA /* NSDictionary+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DB509DC9CF8B2241B6EA60524C64EF6 /* NSDictionary+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1A2F11555BA76052D739C90162E376DE /* DTStylesheetHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1361BE48688FACA82DCDDEEE90F8C5 /* DTStylesheetHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A5923D2A0E6E44A129E617FD3E75732 /* NBMetadataCoreTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DD86302A9328F626FDBC2E8D7D4B78 /* NBMetadataCoreTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AE5B4C4FAC7E20DD4EC4BB40BF9584D /* DTImage+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B38C4CD08902B568D9EFA0C7F74E406 /* DTImage+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1B0A754AA66AAAF4004A4B8930368CEC /* FLEXTableContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 02FB53BD80F9E693CCEFE91A6913631E /* FLEXTableContentCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1B3F47733A58136F5BECDD0850BE8E6C /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3759E544FECB7204C85D3663715B009B /* AFNetworkReachabilityManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1BB7F8BDFC9915F056F1060DB9A84336 /* NSString+DTFormatNumbers.h in Headers */ = {isa = PBXBuildFile; fileRef = 491BF5014DA3DF05AF8F50CFBE8BEF2B /* NSString+DTFormatNumbers.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C08469DF68BC04875B07A918FE7B422 /* FLEXManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E11DB7AC6960344D9C54E53896FF0756 /* FLEXManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1C1E7151CF15D151BE54824C0E91BDBF /* DTHTMLAttributedStringBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAAE8AAB11A172235273D6C57EDBEA7 /* DTHTMLAttributedStringBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C3E1285D3D3B99A777E5FEEC5C55FBD /* input_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 611B11604E291C2C381F178E4282CD21 /* input_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1C6F7BBA24C6DEFF0C03767CEE0489A2 /* stop_recording.png in Resources */ = {isa = PBXBuildFile; fileRef = CCFEEC940DBC404FAA8D79E69846F571 /* stop_recording.png */; }; - 1C77CD64C4B21D772D4AEFF5EFD2D4F6 /* FLEXPropertyEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E8E7CE7E422569FC90CE5499B2F3D6EC /* FLEXPropertyEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1CDDF94E6DD20B9167FB393F7B344361 /* DTActivityTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 507DCFD6B7E4F8C746E0CC5EC646138E /* DTActivityTitleView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1D09EEB9EC20E6E03B81FA916DDB3585 /* APSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 84757CB1455CB0A3D2BF397704678B92 /* APSource.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1DD597B84F331EC2D7489EBC21E509FD /* FLEXMultiColumnTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BF84DCA7AEE35EB88D3B6A8C1CBBE9 /* FLEXMultiColumnTableView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 1DF67FAD9E63BAF1C2AA5F8F7A77785F /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7D889D36CA71F37C9B6769F59AFE7B /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16FFDC93BB8AB9E0D8F2F84411615646 /* JSCoreBom.h in Headers */ = {isa = PBXBuildFile; fileRef = 613A2363EEA4D8E47505978617ACEE48 /* JSCoreBom.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 171F47D5B8C4A8CAC17D0C9A2D33E064 /* FLEXGlobalsTableViewControllerEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB7172085E1F7DC0070C963988BABB4 /* FLEXGlobalsTableViewControllerEntry.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 17273A2E51D1316B7AB6E92C916C2191 /* FLEXTableContentCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F27B72ABC4CA7AAA0842D63CB954FB4 /* FLEXTableContentCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17DCFB6A270240937555184EC7E4855B /* Reachability-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69BDCFD72E0B64953FB1B7E2F39FB3D5 /* Reachability-dummy.m */; }; + 17F35E34D9AB22D81FBA77B6DCF1C3BB /* JDStatusBarStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E9EAAC937FB1ECCA32D4B5A657ED22 /* JDStatusBarStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 17F43BD263095E16EF936F95F01ACF88 /* NBPhoneNumberDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E8A5D179C489EB0AEABB97C133C92F /* NBPhoneNumberDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 185AA994E7F3670860B8AFBEA70B7CF3 /* APAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A69D40AE46D6DB5D1E0DD2337EE73F /* APAddressBook.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 18B0D973B877F5E0472C815A90CCC757 /* RMActionController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEF9F2C56601D0B98853CA21F4EB5C5A /* RMActionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 18B809B55F7A50DA858A5196C78814D3 /* FLEXMultilineTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E62C2CC0113FB1F09248BFE3DE6111 /* FLEXMultilineTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 18D282DFF5098EABD48B5DFDFEBCCCF2 /* DTCoreTextLayoutFrame+Cursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 89E6949E82E53745F75A8965A29B1761 /* DTCoreTextLayoutFrame+Cursor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1946480CD3D7A60FD1450ED99857F650 /* UIView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 650A7641A8DA925DE82A867E54F7DBFF /* UIView+DTFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 196E97428E4C6F87B24745FC8F1518D9 /* FLEXHierarchyTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8781B518414DD112EAFEAB757E1A2A76 /* FLEXHierarchyTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 197E726B66B02E98F641F8B25873F8E2 /* LTHPasscodeViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D27045C306E58DBF6DCDC8879B284EBB /* LTHPasscodeViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A0E6E34FA9158352F2BD06E83F83E21 /* FLEXNetworkObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 063A2EB52BA67037EEFEE3651CF4545F /* FLEXNetworkObserver.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1A132982A1186C638DFB6972815D2B05 /* TDOAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9C71AC3BFDFD8058151C0858156049 /* TDOAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A1B0C21E0E256C7FCB365022387E8CA /* NSDictionary+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = A76969048B4D17ECAC95D0E2223ECD91 /* NSDictionary+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1A2F11555BA76052D739C90162E376DE /* DTStylesheetHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 014DF03FEFCDAFD9C5E325D32DC9BBA4 /* DTStylesheetHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A5923D2A0E6E44A129E617FD3E75732 /* NBMetadataCoreTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 00635D15C733B60A45B76861727DFAB3 /* NBMetadataCoreTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1AE5B4C4FAC7E20DD4EC4BB40BF9584D /* DTImage+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 868E8F88147EFAE87E28ABE76B0C51E0 /* DTImage+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1B0A754AA66AAAF4004A4B8930368CEC /* FLEXTableContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0271C37F7C21A724BD434E04CEFFB9 /* FLEXTableContentCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1B3F47733A58136F5BECDD0850BE8E6C /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B2B81E66619AEA1CE228E860391B398 /* AFNetworkReachabilityManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1BA4DD77A54B3D1F153CA4A9F5D3BEFC /* Pods-Jasonette-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D43C2AC26C2A0F4B9F6588C9A50344DF /* Pods-Jasonette-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BB7F8BDFC9915F056F1060DB9A84336 /* NSString+DTFormatNumbers.h in Headers */ = {isa = PBXBuildFile; fileRef = E2229DF58B134CF5A7CFD98896FE73B6 /* NSString+DTFormatNumbers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C08469DF68BC04875B07A918FE7B422 /* FLEXManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C298D4F6B472E7CF5D70B84B779B40 /* FLEXManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1C1E7151CF15D151BE54824C0E91BDBF /* DTHTMLAttributedStringBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7210D6C808C359B57D4B969F0FDD5A /* DTHTMLAttributedStringBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C3E1285D3D3B99A777E5FEEC5C55FBD /* input_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F49A7D5713AE62F90AF00904BECEFB22 /* input_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1C6D83FB602F5116ACE8AF12F7060173 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAB4581362A9199223F0146BB0EFF3E /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C6F7BBA24C6DEFF0C03767CEE0489A2 /* stop_recording.png in Resources */ = {isa = PBXBuildFile; fileRef = B37D6D23BA69C116C5E5F3CB73C29B86 /* stop_recording.png */; }; + 1C77CD64C4B21D772D4AEFF5EFD2D4F6 /* FLEXPropertyEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2276569D9668C8365626CB4A11DFF88C /* FLEXPropertyEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1CDDF94E6DD20B9167FB393F7B344361 /* DTActivityTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B918A2132BD82082457A0A6DAF0571 /* DTActivityTitleView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1D09EEB9EC20E6E03B81FA916DDB3585 /* APSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F4B46B72B504CFECC519FDDDE4F6A2D /* APSource.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1D2A8F69E733EFFE2E499E95040C2997 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = BA90A33B9CE96F240C504CDAE123DE9B /* SDWebImageDecoder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1D4BF31B89F4A8116592DEBFDBA90C35 /* REMenuItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 048E5131C8FC71A9F30BD933711391B1 /* REMenuItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D53E0A7E765CFFC2C6F6307D4CBDEA6 /* icon-error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = CC51DDB31015BAAECCB9074DBEC101EC /* icon-error@2x.png */; }; + 1DD597B84F331EC2D7489EBC21E509FD /* FLEXMultiColumnTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D169FFA420A8C418E313FD6BE6AFB77 /* FLEXMultiColumnTableView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1E216BD409D649B78030E101C8888FB1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 1E2A6D057E20BE8F5ED3E594F7B8C286 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE938E822026C09880ED03B182D2C42 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EDA7DA3F870CCE1854C96EB1ACEDC4D /* stop_recording@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 04C37143C60B15F7D3623A979BA03682 /* stop_recording@3x.png */; }; - 1F291F009459CE21FDE3F2D3257E0D41 /* DTColorFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9287BA7D5F8EDBFF48649C5851DC245B /* DTColorFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F6AC2D07E9EA834F21B073854FD6CCA /* DTImageTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B8DC279A0EA70BDA821F5BEC138E4D /* DTImageTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 1E2A6D057E20BE8F5ED3E594F7B8C286 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A07410484672352B55F846C72F00E41 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EDA7DA3F870CCE1854C96EB1ACEDC4D /* stop_recording@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EDC414555B8CFF580AC5FB3A551F2EC8 /* stop_recording@3x.png */; }; + 1F291F009459CE21FDE3F2D3257E0D41 /* DTColorFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF8863732BA0423DFF57ED96CF2DB24 /* DTColorFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F6AC2D07E9EA834F21B073854FD6CCA /* DTImageTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = A650009084237AC7497A865E3F7856AE /* DTImageTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 1FADE1B1DC4EB4F499E77CFC24D5C8F1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 203CB8B2A419AA793AA617508B7ABCF4 /* FLEXObjectExplorerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = BA78E1A542FD90911BBC87AB0E0B6938 /* FLEXObjectExplorerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 205D8179837AECF94A9546AB4CC637F2 /* stop_recording@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4EB1AFC0F0BB5EBA3119A05F31FBA2E7 /* stop_recording@2x.png */; }; - 2148A2137E4326D6A5F98EF37D1A1915 /* IQAudioCropperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF5D73B67ABD0B32A29AD04D7B2E51C /* IQAudioCropperViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 214D65177D6B59F70C28A2388041C78A /* APImageExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = DE8E740A15EDBCAA586230157EB2AE24 /* APImageExtractor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2152B06521394F4B5E9AAA10FF6F6809 /* APSocialProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = E9E1384D496AAA9B283AEFA30B66EF4C /* APSocialProfile.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 21546BC02382FE26D1584347268796D7 /* INTULocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2862CFB145421835FDCD35C88C3D49 /* INTULocationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 215C55B6C77E6212746AC4EB5E9A9891 /* FLEXHierarchyTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F249B86095425A5685500A10D7301CCD /* FLEXHierarchyTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21AD726A2A97839E22F0D28AEE279410 /* PHFComposeBarView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4EDFBA155B2F1F90F2091CDF984E2DF /* PHFComposeBarView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 21CDA1FE2FA8DDF400EBA1E5E2AFB6AF /* FLEXInstancesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 617A831F012971178ADE21664D234D89 /* FLEXInstancesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 22A76330235D55C88E64F0AD5620338B /* FLEXTableLeftCell.m in Sources */ = {isa = PBXBuildFile; fileRef = FA2B93552EF93AE446B3386969889822 /* FLEXTableLeftCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 22BDC19834E751A93ACD2FFF87805415 /* FLEXMultiColumnTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = F912D2EBA8D178ED9CF9C0A47ABDAFD0 /* FLEXMultiColumnTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2325BB8ED8892303FE9BCF68448EC94C /* HMSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED48DDEACCE3A6BAAE9FD584B0E1C4A8 /* HMSegmentedControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2464E9543A94573CBB2316E63220BCB2 /* UIView+DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D6C1E40EBE740FEC2AC48971177C69 /* UIView+DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 246D03DAEB73CD108B4110077808EF1B /* DTCoreText-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 710023910822F8867F68F19098C62DEE /* DTCoreText-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 246D4772DC8D0027A038531EB6A34276 /* SocketRocket-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B01A1224EF62025CEA6D9CEE37E4090C /* SocketRocket-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 203CB8B2A419AA793AA617508B7ABCF4 /* FLEXObjectExplorerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 728A8A110C1CA52192626D39E90D7D2A /* FLEXObjectExplorerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 205D8179837AECF94A9546AB4CC637F2 /* stop_recording@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B89C3C4C81B7BB3EA6854CB5DD9DFB71 /* stop_recording@2x.png */; }; + 2148A2137E4326D6A5F98EF37D1A1915 /* IQAudioCropperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BB84FF09CC0E216C1825A88D09D95498 /* IQAudioCropperViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 214D65177D6B59F70C28A2388041C78A /* APImageExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6C9C4A05B31B04D4737CE571B00274 /* APImageExtractor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2152B06521394F4B5E9AAA10FF6F6809 /* APSocialProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 60478A58028459547F02E6B26B7E2C2C /* APSocialProfile.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 21546BC02382FE26D1584347268796D7 /* INTULocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1015A993C8DDA9E33B16E701E2C225E5 /* INTULocationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 215C55B6C77E6212746AC4EB5E9A9891 /* FLEXHierarchyTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 127F23ED467FC6FA7D2245540EB65EC8 /* FLEXHierarchyTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21AD726A2A97839E22F0D28AEE279410 /* PHFComposeBarView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 312DD32B81DBEBA53BC64C852DDD8296 /* PHFComposeBarView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 21CDA1FE2FA8DDF400EBA1E5E2AFB6AF /* FLEXInstancesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 454A94A23F8B655043521863DE4566C3 /* FLEXInstancesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2252122E2688E75B741140A8C9A10410 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 22A76330235D55C88E64F0AD5620338B /* FLEXTableLeftCell.m in Sources */ = {isa = PBXBuildFile; fileRef = AA50134A1713AB12D6D9F686AC7C7D0E /* FLEXTableLeftCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 22BDC19834E751A93ACD2FFF87805415 /* FLEXMultiColumnTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6DD99C292B8538A59EC7F1D5D01E926 /* FLEXMultiColumnTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 231B228AD6AE309D1976A13A8FD1FFB2 /* REMenu-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C8E8C270812CB43A578833FE6ED293E /* REMenu-dummy.m */; }; + 2325BB8ED8892303FE9BCF68448EC94C /* HMSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDB95DA868100191585DA899E92326B /* HMSegmentedControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2403861F1A04069878681D178DD36342 /* SWUtilityButtonView.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E9B9D6D6A8F36C8AAF9C87491EA5BB /* SWUtilityButtonView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2405B94F3C43E9073F661D37F0A65011 /* SWTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A411C2A65F0D437713432504EEFE1B6C /* SWTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2464E9543A94573CBB2316E63220BCB2 /* UIView+DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 5290BA7843E810AE324457A4792A9A53 /* UIView+DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 246D03DAEB73CD108B4110077808EF1B /* DTCoreText-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F517F7480D96916528F8CF9663290D46 /* DTCoreText-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 24C5ECBD884823490C4167F40B3F5AEB /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - 24C98D85DF71748C0635438C85D1F6A6 /* TDOAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BA03D4FCEE4BB6D1E492EAF626E3C50 /* TDOAuth-dummy.m */; }; - 250DA5D8C8F630AA0B97B3B6314F48EC /* APContactBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = F611DBD348F74AEDC6F29D991F835D5F /* APContactBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26201EBD62BB69FFC3ED3AEE4884638C /* FLEXFileBrowserTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC0B326721C9ECADF094D5F13E21848 /* FLEXFileBrowserTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 24C9161EF53018685A0582D2D80556BE /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = C3300AE7266ED5C0CE5770F1FC59666C /* NSData+ImageContentType.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 250DA5D8C8F630AA0B97B3B6314F48EC /* APContactBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 794CDDCD33CA229E71632CB3D445E2A4 /* APContactBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 25C930BB76F3136080E34252AFC3F0C8 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; + 25E0606CFC53CBFF4BB92B947084F44E /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F276140F3A59CE005F1799A31CE5A5B /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26201EBD62BB69FFC3ED3AEE4884638C /* FLEXFileBrowserTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 978867F7D43DA8B96CBBA4B7172AF315 /* FLEXFileBrowserTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 2658BBFCF73D6E068AC4D3E561A4D9BF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - 26612D9280D716DF8D06CAEFEFE3D160 /* INTULocationManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A0DFAAFE55B4D5FC550A250A9F19AB1 /* INTULocationManager-dummy.m */; }; - 26799E0AEDE0ACD98F9D672EB5673879 /* APThread.h in Headers */ = {isa = PBXBuildFile; fileRef = D148B450A3F94C377BE9DC7D5E0007D6 /* APThread.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26B967CCF03D2D527D8568E2FF758550 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 122C554953A5F7E29573AE46483E12FA /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2723332B5C586BAFFAB7E4B2802788B5 /* NBNumberFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA81BF722910FBA73BAE6061C231573 /* NBNumberFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 274C352BC177BC65AFF48B261362B900 /* FLEXSystemLogMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C77704E508C620E66B06F0437172813 /* FLEXSystemLogMessage.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 276BB6E2578B5A6E4EA3F3172C828E8B /* DTTextBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 65576D8B919226BC5A96337F21206ACF /* DTTextBlock.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2778E912D1B2CFDBAE5865A151A7F6CE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 2783A89B7A418C644E008383404B5CA0 /* HMSegmentedControl-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0C3835E53EB462BBCD8D9FAA8E1290 /* HMSegmentedControl-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2814663060DFDA4A17C72D5ADA766FEA /* NSAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 344F4158CF80A5108A8E261D50F8627B /* NSAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 281E449B46DE401E0E56B44A61724FFA /* DTFoundationConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1562E015955FD1934E4E64758BEBCF8B /* DTFoundationConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2836DAF2D53FE02E41B653D96CCA8B33 /* DAKeyboardControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 700278E1CA5E20C88290200E6EE849C8 /* DAKeyboardControl.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2851FF380DA474372A34295D6CBF5461 /* DTWeakSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 803A7847D0F6D9F7595F07710EDE3EBC /* DTWeakSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 28A794912ED1E06B05D96DF5ED0AED19 /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DD600079B2320B87D93B83FC71C3176A /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 292E410CCF91999BF1B10C51A4CBC293 /* DAKeyboardControl.h in Headers */ = {isa = PBXBuildFile; fileRef = B6547E0850EDE5D5DC33BBE475EE96BC /* DAKeyboardControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29B061BAF5F7B5C1132F2C5A53F08D7A /* FreeStreamer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F16D10B1AFE67BD601776D379AEA8AD2 /* FreeStreamer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29D1A2C7DDF7D1E1DB4B5041926753FD /* INTULocationManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D9A45886D21680D59ABCAAAA7D55DB /* INTULocationManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29DD109B03CDD481EFBD8058566503C1 /* TDOAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 02686E0CF74BC021364E1FCFD9182253 /* TDOAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A1F6F8FFB21F6EB0874F42FF48542A0 /* DTWebVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D0EE7F78AF196294BD0F7B51774F5B /* DTWebVideoView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A5B25F981753DA4C86FBC740BC140FB /* NSString+DTURLEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C017E618B3A2203BD8D42A167E9780 /* NSString+DTURLEncoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2B0705CC26A4CBEE32A5A60284AED35B /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 156494AADBDCE611D5119B5898E1CB3B /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2B588BAD70CEC2E91CEEB396039D97E7 /* APPhone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2856616DCC61C2BB47F6CB7158661703 /* APPhone.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C17A6624788B53E2AD6C7BD8C61477F /* APSocialServiceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F887D174CFC67DFDDB353FFC5AD1B5DF /* APSocialServiceHelper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C1B5C4711BD7386884E67E9037DDC33 /* FLEXDictionaryExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0AFA6E8877B48AD4B34A3F8DA953EBC /* FLEXDictionaryExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C348A3A2C99F1F734B3718BC33C7F90 /* DTCSSListStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 034FC560852D843D7EE74446572B1500 /* DTCSSListStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2C88BD55F441DFCCCE39A0D9911CEB47 /* DTCoreGraphicsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B2BD6A83828190E5D58EFAA49579288F /* DTCoreGraphicsUtils.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2CA038E6E9DEFF216A0D4DEB9C714BF9 /* UICKeyChainStore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F4618B6CE2DDE6778CAE0721D3322D31 /* UICKeyChainStore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2CCD590C0D1144CABAE4F96F488EC1B3 /* FSParsePlaylistRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2388A1207E457C97DD0E4DB74EFF0B /* FSParsePlaylistRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2CE6E78B2B66C05AC0112AB0EA9DA105 /* DTCoreTextLayouter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E35634647948F892A5535CC1B07B461 /* DTCoreTextLayouter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2D8230D7AF73D64CEE78FBC6346863ED /* stop_playing@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D06540118748F906429C464F5168B08 /* stop_playing@2x.png */; }; - 2E924EBF748D84FACF13BE13886BD869 /* DTCoreTextFontDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 47569B86D1DE6E9617577D9A7F61F7BD /* DTCoreTextFontDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2E9A9FA859970A80E8177A81B45C5FA9 /* APRecordDate.h in Headers */ = {isa = PBXBuildFile; fileRef = 558E3CE88B94DCD84E6BC17A93B7F25B /* APRecordDate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2E9DAAF49BE5DD053D6E324E351B737E /* DTSmartPagingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10DD8D8C669AD8B9CB35E643E28A51A3 /* DTSmartPagingScrollView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2F441913B1C89ED304BCDBAEC1DF85F3 /* Reachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DB399656ADE8ABC93CCFC742753A81 /* Reachability.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F848EF5105E584DF4092D07ADDC2035 /* DTCoreTextLayoutLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A015FA5487709777444D151C8254BE4 /* DTCoreTextLayoutLine.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 2F91FE96FA11BB10748410C5D80163E4 /* DTTextAttachmentHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 3604F2892C9CBCAE45CC2ED18A93E43F /* DTTextAttachmentHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F9CC799398B4B6AFECCBA47EBD223D2 /* IQPlaybackDurationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BABFD8B3E32DB263D450658A19B476 /* IQPlaybackDurationView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 30396F1D77DA38FB2AEC39F4262251A8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 30EA86A20940A3CAE750996A2C077FA0 /* FLEXRealmDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9337EB2F9DEC064593E6F1156AA4CF7D /* FLEXRealmDatabaseManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 26612D9280D716DF8D06CAEFEFE3D160 /* INTULocationManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F14FBC9CBF6B7F9831F381D3B13691DA /* INTULocationManager-dummy.m */; }; + 26799E0AEDE0ACD98F9D672EB5673879 /* APThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F51C6B9E85DCB98DD2E434D934BF12 /* APThread.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26B967CCF03D2D527D8568E2FF758550 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E61DBF2994BBF04C34271543FE1EE7 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 271C2DCB59BEFC4391C0412DE0C75B55 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 2723332B5C586BAFFAB7E4B2802788B5 /* NBNumberFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF8A3876241814FDB93899B1FB843B4 /* NBNumberFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 274C352BC177BC65AFF48B261362B900 /* FLEXSystemLogMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = EC17319B4532C869AE8BBE3DE4830814 /* FLEXSystemLogMessage.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 276BB6E2578B5A6E4EA3F3172C828E8B /* DTTextBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA902333079E87625A6142A43F8B3C8 /* DTTextBlock.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2783A89B7A418C644E008383404B5CA0 /* HMSegmentedControl-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA0CBA57EF7D73AD6D4EC56947B8874 /* HMSegmentedControl-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2814663060DFDA4A17C72D5ADA766FEA /* NSAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CC7436C6FC16CFE94217D3CA14B25B3 /* NSAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 281E449B46DE401E0E56B44A61724FFA /* DTFoundationConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9313DB8F0D00C4A6808079D9893FEF /* DTFoundationConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2836DAF2D53FE02E41B653D96CCA8B33 /* DAKeyboardControl.m in Sources */ = {isa = PBXBuildFile; fileRef = F866CFDA767FFDCB7DA39BEEEF9D872A /* DAKeyboardControl.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2851FF380DA474372A34295D6CBF5461 /* DTWeakSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 110A659F0FD6F837104237CD578A5849 /* DTWeakSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28A794912ED1E06B05D96DF5ED0AED19 /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FF0FF702957B1B7F60E84646B51986E6 /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 292E410CCF91999BF1B10C51A4CBC293 /* DAKeyboardControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D28E280BD0127321A29B6772F5483F /* DAKeyboardControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 29B061BAF5F7B5C1132F2C5A53F08D7A /* FreeStreamer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D6A04F975226C09FFFBCE3061B1A695 /* FreeStreamer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 29D1A2C7DDF7D1E1DB4B5041926753FD /* INTULocationManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8980ED07065D80AD44DAE17CDBC0A7 /* INTULocationManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A1F6F8FFB21F6EB0874F42FF48542A0 /* DTWebVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 69335B5BAA7BAD225C247D4874564B81 /* DTWebVideoView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A5B25F981753DA4C86FBC740BC140FB /* NSString+DTURLEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2614BCCE7E08481D18DFDC2E8FC653 /* NSString+DTURLEncoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B0705CC26A4CBEE32A5A60284AED35B /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 67655F35B1BE87855CCF6FF69FF4E467 /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B588BAD70CEC2E91CEEB396039D97E7 /* APPhone.m in Sources */ = {isa = PBXBuildFile; fileRef = 40A5FF347055CB51A779565A6F402594 /* APPhone.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2BFDF8CE48EC0E2AA1169A8DCCB9B964 /* TDOAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DD79587A506CBC95FEB8B8B185A556 /* TDOAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2C17A6624788B53E2AD6C7BD8C61477F /* APSocialServiceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 349B39BDB7252DECC35C89A81170303A /* APSocialServiceHelper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2C1B5C4711BD7386884E67E9037DDC33 /* FLEXDictionaryExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F753EB45A389A945DD508AE8EC07413 /* FLEXDictionaryExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2C348A3A2C99F1F734B3718BC33C7F90 /* DTCSSListStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 5785B155E5A5F677B026C834297B5091 /* DTCSSListStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2C88BD55F441DFCCCE39A0D9911CEB47 /* DTCoreGraphicsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F200A53901AF55BFCBEEFEBC1E37971 /* DTCoreGraphicsUtils.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2CCD590C0D1144CABAE4F96F488EC1B3 /* FSParsePlaylistRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0415BE9419BF1BAC84D0205EB738DFB0 /* FSParsePlaylistRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2CE6E78B2B66C05AC0112AB0EA9DA105 /* DTCoreTextLayouter.m in Sources */ = {isa = PBXBuildFile; fileRef = 926A11F9E79566E000C84C27AE4E4F76 /* DTCoreTextLayouter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2D8230D7AF73D64CEE78FBC6346863ED /* stop_playing@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D53BB20862E68CF0E0E012066C1D5DB5 /* stop_playing@2x.png */; }; + 2E924EBF748D84FACF13BE13886BD869 /* DTCoreTextFontDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA9FC195B3428F36C378CBC2532EE8B /* DTCoreTextFontDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2E9A9FA859970A80E8177A81B45C5FA9 /* APRecordDate.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D8F0B43B5B32E5781B4A4539F13DD7 /* APRecordDate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2E9DAAF49BE5DD053D6E324E351B737E /* DTSmartPagingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F11AF4F5E761CF8E3C90031FE909E99 /* DTSmartPagingScrollView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2F441913B1C89ED304BCDBAEC1DF85F3 /* Reachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8982FB84582984831579D2E314460861 /* Reachability.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F848EF5105E584DF4092D07ADDC2035 /* DTCoreTextLayoutLine.m in Sources */ = {isa = PBXBuildFile; fileRef = A0AD63521FC84FDD28A736A0C1D07143 /* DTCoreTextLayoutLine.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2F8F13B4CDD3ABF91F9BD2449DEF067C /* REMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5587581B5F87FFD668818031AC672E8E /* REMenuItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 2F91FE96FA11BB10748410C5D80163E4 /* DTTextAttachmentHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA4E4C6FA2B857347563BBD25310D3E /* DTTextAttachmentHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F9CC799398B4B6AFECCBA47EBD223D2 /* IQPlaybackDurationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 330E31FFD6A2FF724199EA533BF0D252 /* IQPlaybackDurationView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 300C2B430E14BCDE92461169841588F6 /* TTTAttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F86C9C4F05F2541956E658A05E32A4C /* TTTAttributedLabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 30EA86A20940A3CAE750996A2C077FA0 /* FLEXRealmDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2273DCA4242526BD02106DC7D95022 /* FLEXRealmDatabaseManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 30F0BAE1DBB79BBB6CBD957EA8B89E4B /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 30ABC8C3AF21DDBF4DC5AC8281AB073A /* MobileCoreServices.framework */; }; - 319D4E6D6B1E131FEAFFC34E5076E432 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = EBCFD00C89E3D082AB027C278509DB9E /* SDWebImageDecoder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 31B079DECEF980039302C8893CB69449 /* FLEXSystemLogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 213EF8ACBC5AB1931A6D5E7861832E9D /* FLEXSystemLogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31EA3C55BDAD4C05AED1254E7E3AED8B /* RECommonFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4116FD07B693D49DFCFA61467A084C /* RECommonFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 326A87EA02ADCD21D3AF347E350DA3C3 /* Pods-Jasonette-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6575BDE2379F6A422495C23290149CD4 /* Pods-Jasonette-dummy.m */; }; - 33069F6A6CE23D82E811EA1EF9598E19 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9BD9207EFC7EE18120C17AA6DC24C840 /* CoreText.framework */; }; + 3111BE400FE649BCDA1F9E99BE0D85D9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 31B079DECEF980039302C8893CB69449 /* FLEXSystemLogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC909C014043DCCE0969AEC6E894E08 /* FLEXSystemLogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3340093F2C5D0B3E5309897CD4AF42DA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - 33F1CED0A821E4BB97F386BB07CA9113 /* DTListItemHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = F75639BE1F3F4F7217F65F7203D2A963 /* DTListItemHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 340BBEAAB087711A03E97F3CBF13E619 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2D3CA3A4BF8033DFB1BB769F578DDB /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 342AE1CC0C9633896D674C82538150B4 /* PHFComposeBarView_TextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA7EC0188DF5B8FBF343D95703F32E9 /* PHFComposeBarView_TextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3431F959137070C38D39B4110787D317 /* REMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2C70A86A3A3133641EC1644269E85D /* REMenu.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3458AA64705094FF171A786EA09035C9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 349E92A3F6E20470F0CCF7C7949990D9 /* ModuleConsole.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE5DAA3DB03B6727463F8E26C96116A /* ModuleConsole.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34FE6DDBF00FF01CA70453BE967925E7 /* FLEXTableListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BD0756CEC5E5BAC98BD61F3211E44DBD /* FLEXTableListViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 356899D02F95EC38380A2E4A42500677 /* SBJson4StreamTokeniser.m in Sources */ = {isa = PBXBuildFile; fileRef = AE945A64D9FBE9DBBDEE2781AD93D6B6 /* SBJson4StreamTokeniser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 35CBB7B255FD8D412AFCECBC4311A847 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E7AE16EEBB5AA229312455B6E8CF1DF1 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 35F37EB3E1A9CBCD7D5E661C6E340B90 /* NBMetadataHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BE52A6666CCB6EF0249C1961BD6A9F01 /* NBMetadataHelper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 35F4D770534938A92746138FD72030F5 /* RMActionController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BA79654855CD0B7DB14A8FDEC6742D1 /* RMActionController.framework */; }; - 360C9C934823354E0ACACE70D9C2364F /* FLEXObjectExplorerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C7CC239DC1B51AE13D342D0A448E4 /* FLEXObjectExplorerFactory.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3610E259C039356C90E6A16A8C0E799B /* DTCoreTextLayoutFrame+Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 81FB61E8DF1BB41220DBA702E28EB2DF /* DTCoreTextLayoutFrame+Cursor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 364731F2F3A069A5D4AAA5E29489FCFC /* UIWindow+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 73B597B24FDB45F7B4BD7987A6BADF89 /* UIWindow+AHKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 36A8ED1D447D64D18A71691491302B51 /* NBAsYouTypeFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = E3310F435D254B90A7BDC356713C2915 /* NBAsYouTypeFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36EC9A62E8FF4548AB7E99403B660D38 /* NBMetadataCoreMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 962613801DDA861855AA6BE17E90FAE0 /* NBMetadataCoreMapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36F76978D5D1A1B394802C9E7C51F777 /* REMenuContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F7516BD863149D036E44FBEA3D601D94 /* REMenuContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3708EC9667C9936409CE8069DA41EC94 /* NSHash-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EB58037C6EAB5A003CFF8951B361DB17 /* NSHash-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 37C799676D843531B4F8CE0325603183 /* NSString+IQTimeIntervalFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C44503E6F5BB74EF5D3E85152DE4E6 /* NSString+IQTimeIntervalFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 38C271413326F5AE7079F1DEAFC122F9 /* file_output.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4144A220A2219B829EE7C2F2A0CEEC1 /* file_output.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 39210BAC1EA567A4275F313CBDA374CD /* AFOAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD1D507A4AD1ECD578735A89277F610 /* AFOAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3ABBC0F8C3712C28956971F2CEC92B14 /* APSocialServiceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3C46DCE0A93092132E2534CC02C4AA /* APSocialServiceHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B485B89FA91EE6083B42DA5B845D10D /* OMGHTTPURLRQ-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 245F58EAF5658C585E051045F4ED7E73 /* OMGHTTPURLRQ-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B8C2C25A32A22D7C8CB8709AE961FE3 /* FLEXArgumentInputStructView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE1028B7680E7D5B488E4A7BCD11E01 /* FLEXArgumentInputStructView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3C05532D087261D3FA21B68874272B6B /* FLEXArrayExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BE2CE74BE1DF0A68B63D8E0C75194BF3 /* FLEXArrayExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3D07E61C6DC752379DC48938344E6CE9 /* DTBase64Coding.m in Sources */ = {isa = PBXBuildFile; fileRef = 6704C40559C67CA2DAFF8C264DC0CCD5 /* DTBase64Coding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3DD5358C8FF2875154AC1B8049D6F337 /* PHFComposeBarView_Button.h in Headers */ = {isa = PBXBuildFile; fileRef = E80CCCAA8A0488742434000C11EC50B3 /* PHFComposeBarView_Button.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3DD70C08D98BBCB46A43DE971E21D93D /* FSAudioController.h in Headers */ = {isa = PBXBuildFile; fileRef = DA97FD74D88F2129AE8F4C10C0D1358C /* FSAudioController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3E23BF104DD676CB18F2BC432F0DF66E /* RMDateSelectionViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F94363765D157922E0FDE17241FA47 /* RMDateSelectionViewController-dummy.m */; }; - 3E3709B35F0450BF890FD1094045FBED /* FLEXNetworkTransactionDetailTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CD72105FDD3497C27A833027B98C1D5 /* FLEXNetworkTransactionDetailTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3E587128040D1497E2DF1536B067524E /* DTAttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAD34DFC67E1B8795F900627C74E1F8 /* DTAttributedLabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3E65D52ABF0B059F54C768F47EF3E6EA /* FLEXViewControllerExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B6CF5A8A27A80C1FCF2BAA7843277D0 /* FLEXViewControllerExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3E816E138E3AC45F6CBF044EF15DB2A5 /* FLEXTableColumnHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 886F5824D97B60715F7E9E429F988545 /* FLEXTableColumnHeader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3E88FCA627BAB00DCAE9B762B2CEDAFC /* UIScrollView+DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EEB8EA978E33681A9406C3C9B9BBBEA /* UIScrollView+DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3E8C8E48200D3E28B9210410F3A7E670 /* FLEXFieldEditorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B45E6E9D262DA3DF6CB410EDE6BBCB0 /* FLEXFieldEditorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 334A40A53740A8B4A7CF6D0BF328883E /* SWUtilityButtonTapGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FE471E282BDC6D9C3252D480850BE4D /* SWUtilityButtonTapGestureRecognizer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 33F1CED0A821E4BB97F386BB07CA9113 /* DTListItemHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 325A8EBD34DDAEC2C1B9E67EED2945F8 /* DTListItemHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 340BBEAAB087711A03E97F3CBF13E619 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6732433245E95C3BBD082EA649276BD4 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 342AE1CC0C9633896D674C82538150B4 /* PHFComposeBarView_TextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E32F7417A1FB40B1CAB52C92F7A1DBD /* PHFComposeBarView_TextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 349E92A3F6E20470F0CCF7C7949990D9 /* ModuleConsole.h in Headers */ = {isa = PBXBuildFile; fileRef = 22276A8CCAE53313E22A86E0D3C0CF36 /* ModuleConsole.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34AB904C35F01A2E4AE605C5EBDB28BA /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7DD668659E62565F7AC4D0862B5AD4 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34FE6DDBF00FF01CA70453BE967925E7 /* FLEXTableListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 139A19CB7D0AF2B732A85C427EBCFE93 /* FLEXTableListViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 357B6682EB49A514C971CFC114BE6EE9 /* SBJson4Writer.m in Sources */ = {isa = PBXBuildFile; fileRef = A2B40BFB1C139F80E7E3A9898173ABBA /* SBJson4Writer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 35CBB7B255FD8D412AFCECBC4311A847 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DBBAC472BD4A3B9101CDB81FFF1C16 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 35F37EB3E1A9CBCD7D5E661C6E340B90 /* NBMetadataHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0248E1832D8E07DFC0F5F428DE729CFE /* NBMetadataHelper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3603637EC17F9E25C026D744553C1D50 /* SocketRocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3AF2C1BEF6526BC9D503045080CDC9 /* SocketRocket-dummy.m */; }; + 360C9C934823354E0ACACE70D9C2364F /* FLEXObjectExplorerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE95EA1C41DF1DBE9C61818A3462A21 /* FLEXObjectExplorerFactory.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3610E259C039356C90E6A16A8C0E799B /* DTCoreTextLayoutFrame+Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 188393816F1A6E8BBB18E975382CB3DC /* DTCoreTextLayoutFrame+Cursor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 364731F2F3A069A5D4AAA5E29489FCFC /* UIWindow+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8ED6D54D0068E083E3BAEC35E0CF6D /* UIWindow+AHKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 36A8ED1D447D64D18A71691491302B51 /* NBAsYouTypeFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8E12B6391D0B6BCE23BB2CDB66688E /* NBAsYouTypeFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 36EC9A62E8FF4548AB7E99403B660D38 /* NBMetadataCoreMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 392CDEB4285C42E05FBCB4C09FE56CA5 /* NBMetadataCoreMapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3708EC9667C9936409CE8069DA41EC94 /* NSHash-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91411F5984FE0F8A33132B7067035872 /* NSHash-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37C799676D843531B4F8CE0325603183 /* NSString+IQTimeIntervalFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EE5115B68DEC24DAE20AD5A076BDFF /* NSString+IQTimeIntervalFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37D7A61F2CADD2523B198FD019023671 /* OMGHTTPURLRQ.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3581C5E67C77A561CB90131ED590FDDE /* OMGHTTPURLRQ.framework */; }; + 37EAA795D67DCFB6CC58ED2EEA225592 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + 37EF79A02DF84BDFA884415E56D9727C /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B554318291784CCD16C7E148C5FED09A /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 38C271413326F5AE7079F1DEAFC122F9 /* file_output.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF0838F426E499BF4EDF2704AF27869 /* file_output.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 39210BAC1EA567A4275F313CBDA374CD /* AFOAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = A65D1ADB19477D7A39CFCBBA4CA0DB0D /* AFOAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3A19A94B17643B200EF6B7CEC4BBA925 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 05DCCE465F94E5C9893C80E38E7B8DC6 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3ABBC0F8C3712C28956971F2CEC92B14 /* APSocialServiceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 805A151F5373EBABAB36EE8DA6500DED /* APSocialServiceHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B485B89FA91EE6083B42DA5B845D10D /* OMGHTTPURLRQ-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD290DDF640EA0B60E39139D1C4734A /* OMGHTTPURLRQ-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B8C2C25A32A22D7C8CB8709AE961FE3 /* FLEXArgumentInputStructView.m in Sources */ = {isa = PBXBuildFile; fileRef = 64BED456F39940F3081D2FDF9AA5C51B /* FLEXArgumentInputStructView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3BC2812392AB51B3E3367C28E16FD2E5 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = B52F45F9C921D00B4CD5607586EB48CA /* SDWebImageDownloader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3BC9DCD7401E92F282215EEE535B7A94 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B409FF11D750CA4BA50E99F3A5E9DE9 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C05532D087261D3FA21B68874272B6B /* FLEXArrayExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BE6E0EE4ECA673FE1564EDDF0206627B /* FLEXArrayExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3D07E61C6DC752379DC48938344E6CE9 /* DTBase64Coding.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D580EDB55DF5456D24128C5034AD356 /* DTBase64Coding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3D0B750618BDB590D3A1F9CBE7156C47 /* LTHPasscodeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D3C62272F59EB3D2321D19076AECBC /* LTHPasscodeViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3D556D3FEA1FA9629F6837959091FF35 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D95B644BA56122C1940D6EA857526D /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3DCBFDA39E9CC860C311A42261867D73 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB31D781CB10C17EB33B6775082A583 /* SDImageCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3DD5358C8FF2875154AC1B8049D6F337 /* PHFComposeBarView_Button.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BEC4DE01641F1474D8EC021E93BDB5 /* PHFComposeBarView_Button.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3DD70C08D98BBCB46A43DE971E21D93D /* FSAudioController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2599BCCA616A52C5CF333EE039CDD1B7 /* FSAudioController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3E3709B35F0450BF890FD1094045FBED /* FLEXNetworkTransactionDetailTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4652E28BF1AD2AC93965084072F689A6 /* FLEXNetworkTransactionDetailTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3E587128040D1497E2DF1536B067524E /* DTAttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD18199334D02693F838A01630051C1 /* DTAttributedLabel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3E65D52ABF0B059F54C768F47EF3E6EA /* FLEXViewControllerExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F0832B55BA4F6440B1DB668D9A771D /* FLEXViewControllerExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3E816E138E3AC45F6CBF044EF15DB2A5 /* FLEXTableColumnHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D5A4010E9671DB8BAAAA7F1565F8B5 /* FLEXTableColumnHeader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3E88FCA627BAB00DCAE9B762B2CEDAFC /* UIScrollView+DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4D114E0B879CD07A7880D6749A5448 /* UIScrollView+DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3E8C8E48200D3E28B9210410F3A7E670 /* FLEXFieldEditorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5F1DCD27C374AD7E28CB3A5156392E /* FLEXFieldEditorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E90AAF65B220CE4C44ABCE79BC57E00 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 3EB7A0B692C84BAA7A99AA66E403A99D /* APAddressBookAccessRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = A672C018A3BFF4B6B1FDB891191CF78A /* APAddressBookAccessRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 3ED606BF23EDB4A6B13161A5895EC1D8 /* IQ_FDWaveformView.h in Headers */ = {isa = PBXBuildFile; fileRef = C897F582833061FA8E77B6E3C84AD56C /* IQ_FDWaveformView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3EEE51D5B509C734BBAD8D622E0BBE65 /* APRelatedPerson.h in Headers */ = {isa = PBXBuildFile; fileRef = A7506DEBEB38DDC2EEA3551B91F8EF7B /* APRelatedPerson.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3F094E10EADA5FB71237585C5ADC162F /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ED8D20BD1D73E556A97BBC712084C3B2 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3EB7A0B692C84BAA7A99AA66E403A99D /* APAddressBookAccessRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B30A048113079408DAB2EE5C967390E /* APAddressBookAccessRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3ED606BF23EDB4A6B13161A5895EC1D8 /* IQ_FDWaveformView.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B862E7F7FD15E15262F77529380342 /* IQ_FDWaveformView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3EEE51D5B509C734BBAD8D622E0BBE65 /* APRelatedPerson.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ABCB43A9FF16DA56D00E75C5307E06 /* APRelatedPerson.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3F1AB800FAE8E2F45A18DCEA5CDDC9D9 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; - 3F46C74CCB7D535F6ECB98193A925112 /* NBMetadataCoreTestMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E98ACAEA4049F6F240BB8C84B0C0F38 /* NBMetadataCoreTestMapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3F55DE3B352BD63A17E2FF6AB5D9DC88 /* DTCoreTextLayoutFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 51DBB0AD842D2C57418199D24F35F776 /* DTCoreTextLayoutFrame.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4072A42DD94D7BE7FE8AAF23A1DB9A7F /* SBJson4Parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC44CECF70790D37C22523906367E3F /* SBJson4Parser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40777C9AF7C031182F2C1A06BE658C06 /* DTLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A68FE5C331CD5C21152DCBD1E6CC621 /* DTLog.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 40998311CBDF3C5D52BAFFA4F715615B /* NSString+CSS.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E8C62C8C05873DC8732649A266DD92 /* NSString+CSS.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 3F46C74CCB7D535F6ECB98193A925112 /* NBMetadataCoreTestMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA9AA73A6C5E51405370B2506DE5FBC /* NBMetadataCoreTestMapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3F55DE3B352BD63A17E2FF6AB5D9DC88 /* DTCoreTextLayoutFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 39C47FA1164D94E45DD14BD1BC269231 /* DTCoreTextLayoutFrame.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4068378CDD4974CA6A56F9039955C2AB /* SocketRocket.h in Headers */ = {isa = PBXBuildFile; fileRef = ED02686A4F4B9FD0BBF1BC30F9E2DDC7 /* SocketRocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 40777C9AF7C031182F2C1A06BE658C06 /* DTLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E82BD09FAC7F84D445D8B67101B05F1 /* DTLog.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 40998311CBDF3C5D52BAFFA4F715615B /* NSString+CSS.m in Sources */ = {isa = PBXBuildFile; fileRef = 012EF796BD8A73567E1F91ECF8EA5CCD /* NSString+CSS.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 40BB332EB1EB55548AA4A1B6825DEE09 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = F32AC9B14ACAF04107AD0FB0B78A6BCD /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4104B20CEAD5C0BD2050642F5F53C91D /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 429815C3542D5E4802EC62913EEBD897 /* CFNetwork.framework */; }; - 413A7D4623004DD3DBD888B4CDB8F07A /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 354CCA5A59590E88BE6E7CB64F73D9A5 /* UIImageView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4197810EC82443E7291338B29071EE9D /* NSString+DTUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CC8CA1A2411789038BE7CFB2B2AD87F /* NSString+DTUtilities.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 413A7D4623004DD3DBD888B4CDB8F07A /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 56BA7E4324537AFE6EC868FAD94AB181 /* UIImageView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4197810EC82443E7291338B29071EE9D /* NSString+DTUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 62A2F121D81207F0987F91CAA7F22614 /* NSString+DTUtilities.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 427CC71F3341FFAA784E8AEA3998E8B4 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C19AB05D6161C4718CD40B49A57E17A2 /* AudioToolbox.framework */; }; 42AF1BB1ED090CC9E588A463441D09E3 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA2D1FD4C36B896FAD89B9DF0FE1755D /* SystemConfiguration.framework */; }; - 430D3EB5DA357837ADF22FB23F0091E6 /* SWFrameButton-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D66FC5C5460E71FAFE1C79784F7BC489 /* SWFrameButton-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 434ECF1278A354463EDEA96480007910 /* FLEXImagePreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E8A364EC7E16B403A3DF91B1DA8A27 /* FLEXImagePreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4383C55C91CA79C0184D94CFE77EE862 /* FLEXViewExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEC2E90EE0E9A9C6C17F8D977BEB1B9 /* FLEXViewExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43BBDF9D05E91AEAFFDE8A9790F7F890 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C53801A01823DC1DE30867CEDA6F360 /* AFHTTPSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 43D64A784BE52E08AFADE93ADDE271EC /* JSCoreBom-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C190D867F7B47EF6005B622DF7AF30DE /* JSCoreBom-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 443767ECD9924DEEA1A36A2D61682F6C /* IQPlaybackDurationView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA519B60E5E20621A384EB8C966DD9B5 /* IQPlaybackDurationView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4442D8453D210EFC13CFE2CAF862ED1D /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CD907AF42E99BA6EC5C82D31090172 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 455C3561EE4A831049FB8A04CA79894F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 833F7DD3D68BBA748A38508A3E074106 /* AFURLSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 459108E54836DABE38476C0DD97140C4 /* FLEXViewExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8078C98EEF8EF37A6AD6FC25D66DAA /* FLEXViewExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 45AED3036210F9D836E509C48F2D7BAF /* DTColor+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 62AE830DFB41FD3A391C5C34D70C710D /* DTColor+Compatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 45F802D04B3BE0CAEC586C2F3016027B /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C0CE5EAFE1C35FD46B9047190604D5EA /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 461568103E304E8545395B163277B85D /* NSMutableString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CD42BE41A454731972965BC7D286DE /* NSMutableString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46A45325921A22AAAE2AC187C79799FF /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = AEB4674951FE9F45FAE98D6DD57E82DD /* UIProgressView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4751DB46A00B9D7CFBC78B05CD7661A1 /* DTBlockFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 45783DABE884C1E04E9FAC37ECB50B41 /* DTBlockFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 475A1261D59E3C04FCAFFF1C06750299 /* NBPhoneNumberUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 08FD2A26F2B494DB7A793A9FA5699164 /* NBPhoneNumberUtil.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4786FD5100DCBB86385E8E82B6E68F6C /* NSAttributedString+DTDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEEBB3577342B19CBD08214BACDC205 /* NSAttributedString+DTDebug.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 47F04CBDF6C54B220F6AEECEF15264D5 /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F6849EF8E598E378F7B02473FC6A90EB /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 47FBA27CAF1EAD72AF0D304F768E7A9E /* FLEXArgumentInputSwitchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 59DC15EEF5FAF8C06942A1B3C94DC1A7 /* FLEXArgumentInputSwitchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 482476705FEBF63831487BA9666BF247 /* icon-success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6C8EAF1BC43D6D89030D45498D0F0107 /* icon-success@2x.png */; }; - 48AB8E717D9D02650CECFEBA88FBF4EB /* APAddressBookBaseRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = EC203DAF14A102117BCB16702674984F /* APAddressBookBaseRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 48CC3B44A65A1FFE43D2B21B7F7ADBCC /* Reachability-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DF46A167F4D20909D9F0D76AB571C9D1 /* Reachability-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4927B6705E230D19B7660471B790850C /* RMActionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B44DC08BAE20CAF9BEBCC7190F8C390 /* RMActionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 434ECF1278A354463EDEA96480007910 /* FLEXImagePreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0315FC88AD210D29280B9C332300F900 /* FLEXImagePreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 436604FC5F73BDB57D712BD517D5665D /* UICKeyChainStore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CF5246F3DFD951544D3F6C96DB87BF /* UICKeyChainStore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4383C55C91CA79C0184D94CFE77EE862 /* FLEXViewExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2559F78B7B5D4A2A9B006DE2074FAD /* FLEXViewExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43BBDF9D05E91AEAFFDE8A9790F7F890 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 332DDAFCB6B10D337A0AF796FA92AED1 /* AFHTTPSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 43D64A784BE52E08AFADE93ADDE271EC /* JSCoreBom-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E7579B5CD6EDC544FF279129A9961977 /* JSCoreBom-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 443767ECD9924DEEA1A36A2D61682F6C /* IQPlaybackDurationView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA26D99A2BEADE031C12F913E0E034A3 /* IQPlaybackDurationView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4442D8453D210EFC13CFE2CAF862ED1D /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3927AE0E8AB10A4E6FA0DB615AD0E2 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 44745B41D0F80AFFA8F622FDC7651314 /* SBJson4StreamParserState.m in Sources */ = {isa = PBXBuildFile; fileRef = FFCBCEAD82508B6CAE5F3EB8A7C01D6A /* SBJson4StreamParserState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 455C3561EE4A831049FB8A04CA79894F /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D56F9BF3379327796677C4E9D8145D5 /* AFURLSessionManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 459108E54836DABE38476C0DD97140C4 /* FLEXViewExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D39BD5AD164E1E8F26456448DDCD8699 /* FLEXViewExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 459528CBE1A438AD6374FDD1D7A82015 /* TWMessageBarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A6ABDB66718B75B55D17E534456D15A2 /* TWMessageBarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45AED3036210F9D836E509C48F2D7BAF /* DTColor+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E7E4CCF99755FEA618847EC6E8DB7FC /* DTColor+Compatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 45F802D04B3BE0CAEC586C2F3016027B /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E639FB91B7A719EE8EDCE6A60285EA49 /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 461568103E304E8545395B163277B85D /* NSMutableString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CD6F97C2EE2C2B2F814C5861DAEE8C /* NSMutableString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 46A45325921A22AAAE2AC187C79799FF /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D68DEC7885B35A7B694C96F0C7E0DAB /* UIProgressView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4721ED24E7B87CBCEE1C52C6DA6E3527 /* UICKeyChainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = AD93E66D2C89F42BD4143A7FD2778E86 /* UICKeyChainStore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4751DB46A00B9D7CFBC78B05CD7661A1 /* DTBlockFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = A4ECA9B5DB655B813F58795F78C3DA20 /* DTBlockFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 475A1261D59E3C04FCAFFF1C06750299 /* NBPhoneNumberUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 31015D9F0C7755A222DFF450F7763191 /* NBPhoneNumberUtil.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4786FD5100DCBB86385E8E82B6E68F6C /* NSAttributedString+DTDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 0162F9D4B37A3556A11153E4A686C39C /* NSAttributedString+DTDebug.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 47F04CBDF6C54B220F6AEECEF15264D5 /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DF0509DBA6FA52FD6A42F206E6217C /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 47FBA27CAF1EAD72AF0D304F768E7A9E /* FLEXArgumentInputSwitchView.h in Headers */ = {isa = PBXBuildFile; fileRef = B7CD41C180BC03F6B9434D557BF1ED6B /* FLEXArgumentInputSwitchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 489B47D6B31CBECA13288B3CFF24A7D5 /* SBJson4Writer.h in Headers */ = {isa = PBXBuildFile; fileRef = CC77D45A652C70665A3BC5583DF80E6F /* SBJson4Writer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 48AB8E717D9D02650CECFEBA88FBF4EB /* APAddressBookBaseRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5A0308174AF310E81EF277B06D095D /* APAddressBookBaseRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 48CC3B44A65A1FFE43D2B21B7F7ADBCC /* Reachability-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A4B3FEDE51F8471C429474D9D006B1 /* Reachability-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4975B5E3E08FD2A62A8F8A56F9B354C5 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7249FFC6D8551192D7D771C80C2158D1 /* ImageIO.framework */; }; - 4A61C8394F3074A12A159A8A1415AE90 /* IQAudioCropperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D238117BF0AE0095D53AD46682F887E /* IQAudioCropperViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A7AACD1F7ECE20C1F2D8044999BB9EE /* DTIframeTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 180A153A5ABC25A4499EA583C1F5DCFB /* DTIframeTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4B525190315F8BC7325EF532D62DEE33 /* caching_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ECECEE29899EC55AE00604EA4E8F1C2 /* caching_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4B581711004B17AD82F30F4903E1A647 /* DTAccessibilityViewProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8277C25A212E1067F8735004E2EB94A7 /* DTAccessibilityViewProxy.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4B6BC4DFC78D087218A41B4D659549EC /* APContactDataExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ACCF9FAFACEFFAD75C46A10CBC0D021 /* APContactDataExtractor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4BC942CD6384167BF03D6938C071E92E /* FreeStreamer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 882A7AD2F7F89826B2C2A6E3C710C058 /* FreeStreamer-dummy.m */; }; - 4D1B2C17293394FC872A1F80A397BCAC /* SWFrameButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 758DF3327724F761D9A897292724B2DF /* SWFrameButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4D8405A79CFC592025D3ACD062C72AAC /* UIScrollView+DHSmartScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 3782B740FF13EAFB0F93D537D5B5735D /* UIScrollView+DHSmartScreenshot.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4D863B882780031656B2880B75522C88 /* FLEXWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB1FFF9C9C70F73AD9FB3FEC835D2AA /* FLEXWebViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4DB8232D586A4E05AF3787132FEB0489 /* DTAccessibilityViewProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A86F145F2A8D79099D7CE5777ABBE80 /* DTAccessibilityViewProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A61C8394F3074A12A159A8A1415AE90 /* IQAudioCropperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AFA61C780E4397C0E70A3C7DE6F3D9 /* IQAudioCropperViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A7607B042190915659DA12D63512466 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 4A7AACD1F7ECE20C1F2D8044999BB9EE /* DTIframeTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F0E4286FB7CEC6340FA93A1176FF559 /* DTIframeTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4B525190315F8BC7325EF532D62DEE33 /* caching_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 043229ADADDE01C8FBFE231777181B0F /* caching_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4B581711004B17AD82F30F4903E1A647 /* DTAccessibilityViewProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 087EA7C286CC34A7F91AC04CD4CBF5C0 /* DTAccessibilityViewProxy.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4B6BC4DFC78D087218A41B4D659549EC /* APContactDataExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A81F0367B7ACE95B5516A357966189C /* APContactDataExtractor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4BC942CD6384167BF03D6938C071E92E /* FreeStreamer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10021409A11D009223ECB1B5899563E1 /* FreeStreamer-dummy.m */; }; + 4C9BF640C4564B6855C69F79D3A0D3DC /* icon-success@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 134A5AEF25827855A883D162D3546180 /* icon-success@2x.png */; }; + 4D8405A79CFC592025D3ACD062C72AAC /* UIScrollView+DHSmartScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3432B961B88D0CD5A745EA7400F354 /* UIScrollView+DHSmartScreenshot.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4D863B882780031656B2880B75522C88 /* FLEXWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CD4D54A6BFF316D60EF919A4D12175 /* FLEXWebViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4DB8232D586A4E05AF3787132FEB0489 /* DTAccessibilityViewProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B9683E70E90590C748A965AA0A20BB /* DTAccessibilityViewProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4DD110322F45272F05F40D1E04225A92 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E660D0FC762BC034DB84AD775305493 /* AVFoundation.framework */; }; - 4E6FAA960B378E038868599412698E38 /* CYRTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44132EBC5255D4397B14E0680BB2F09A /* CYRTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EE3BD6F91C2EEDDE9FA1E2CD4B23F07 /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F39DC88F75372014C667F99DC67C63C /* AFAutoPurgingImageCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4E52D30369A5F251EC5B3BF44A67A3A8 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 255EE026B4E014B685A142131C75E372 /* SDWebImageManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4E6FAA960B378E038868599412698E38 /* CYRTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E7CC7D6E818F3F128C1015ED2F2D74C9 /* CYRTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4EE3BD6F91C2EEDDE9FA1E2CD4B23F07 /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FE41931EA44ADD1B9573324BFC188D6A /* AFAutoPurgingImageCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4EF45821AEF6CD220020C73BF0B0FA33 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 4F11747B289E20D4E39F96C8FDCC038C /* APAddressBookBaseRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE88AB7344895DBA06D6EEB120A28C6 /* APAddressBookBaseRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F1E3EAAA5E21C07C86AB289A5E0076E /* IQAudioRecorderController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB24ADE13239369C8C6C79BF5FC2E9A /* IQAudioRecorderController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F284B13D0B52EEB5C55AD76BB0E31DF /* FLEXResources.m in Sources */ = {isa = PBXBuildFile; fileRef = 2219BC94EE0F47A3DF3BB88E3FAB8E28 /* FLEXResources.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4F11747B289E20D4E39F96C8FDCC038C /* APAddressBookBaseRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AF61407797889ABF209BF3C55700F1 /* APAddressBookBaseRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F1E3EAAA5E21C07C86AB289A5E0076E /* IQAudioRecorderController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C0FC307E45E13AB19C05DC6DADA30CA0 /* IQAudioRecorderController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F284B13D0B52EEB5C55AD76BB0E31DF /* FLEXResources.m in Sources */ = {isa = PBXBuildFile; fileRef = 225098B70C97648CDF810F5E4C00BBA2 /* FLEXResources.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 4F4FD8A70649D7CAE841D1197AAAF456 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4A8328C532DD00D9AD12F4AED010C8B /* JavaScriptCore.framework */; }; - 4F6D1930AA63A30F335D1092D7215507 /* DTColorFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = DF69154FE621A8EAAECA8FB9B3C869DB /* DTColorFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4FD385D74083027F4F651C485985F35A /* UIImage+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ADE36751F4B590C3B6E54FA9031CA50 /* UIImage+AHKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4FD8E4ACB6708AD51C0C42F91C188E34 /* FLEXNetworkSettingsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A8032D4906C33B0B8B34183EC17B51 /* FLEXNetworkSettingsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 500A585039B4770D6C75E36021754C71 /* NSURL+DTAppLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = A13FE084E4D177F7A7B4E1B3BEDB80FA /* NSURL+DTAppLinks.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5053854247477596A9081FEF7691290C /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C34307AE2CF4D77C04EB4B1A42EEA007 /* MBProgressHUD.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5069F2AE6871E9341C4F669BFE58C4B4 /* NSCharacterSet+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = F9C2CA7D82D98B83E258571835D0A7AF /* NSCharacterSet+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5104457877C506E5830812DF99096070 /* OMGUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F37F30A7564A654146F3BF2A838B31F /* OMGUserAgent.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 51047C1945103943F70BEADE83725630 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E31A4D9AC30A5DD9E8B7F9FC197E44 /* UIWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 510773704B85535114D8929D04DD2820 /* NBMetadataCoreTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 35B69160E4C26956871F8C8B2C4A7347 /* NBMetadataCoreTest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5110BCD5DC4FA0016FAFFEF4B8F6FB49 /* DTAccessibilityElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 95958F2AA1E42C86C885FDA2C182FE37 /* DTAccessibilityElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 511CD2877F82A4D2FA1FFC2398E48C9C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 51200971A8C179B812CB211D62CD549A /* FSCheckContentTypeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 40A578ABC0BE2EB6763B8D53A148583D /* FSCheckContentTypeRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 518EBC3E626C6511A35C45589E9651F4 /* FLEXGlobalsTableViewControllerEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = C5347CF99D1C6E577A419258C485BAA0 /* FLEXGlobalsTableViewControllerEntry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519AB05108425A77DF1EB83C73E70D98 /* NBMetadataHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DF24338E9E6E4FA556BE9F53B50510A /* NBMetadataHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 51CE11BC40C9EF654264A81039FC4134 /* FLEXNetworkTransactionDetailTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD42AC426DDDAF6E8037B90C2ECD6C9 /* FLEXNetworkTransactionDetailTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 523714441628C1854BE932C7F3267E57 /* DTImageTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B2AC64538C7E467406417B13C7B37D9 /* DTImageTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 52FA3205E08F65BE07E9FB7B3D986F13 /* APJob.h in Headers */ = {isa = PBXBuildFile; fileRef = 392EFD01317558B34DBED814903DC779 /* APJob.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 532D4C956B94C366FFCF017AA8652B11 /* FLEXDefaultsExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FA3ECD73E7E5CB18CCBD36C8341E00E4 /* FLEXDefaultsExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53742E89F0088EC645158DE6ECB434F8 /* SBJson4StreamParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C85DAE33A03BD5102DF3D846DAACBCE7 /* SBJson4StreamParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5376779CEE9C8F9497ABF7D51FE56CA4 /* APEmail.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1691C62AF6DD8C051D7AC505C7E17B /* APEmail.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53DB7CCD2D213DB1E78F6D896EC393D2 /* DTAccessibilityElement.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AEB2BAA84C8F0640FF28BAF04E143A /* DTAccessibilityElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 541DF1B3FF39630E9EBA42F8A9990B15 /* FSAudioStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CF4504CF839991AA06FDC5BF836C63 /* FSAudioStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F6D1930AA63A30F335D1092D7215507 /* DTColorFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE4DC3D29EDE1F982127CB5DE84FDD9 /* DTColorFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4FD385D74083027F4F651C485985F35A /* UIImage+AHKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A2191F395691B194B1EA99D0DA6A3E83 /* UIImage+AHKAdditions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4FD8E4ACB6708AD51C0C42F91C188E34 /* FLEXNetworkSettingsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 489F461B9D627E3F0F59061E0D41B50F /* FLEXNetworkSettingsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 500A585039B4770D6C75E36021754C71 /* NSURL+DTAppLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B24B6B33A2686A74454B4C779F0263 /* NSURL+DTAppLinks.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5053854247477596A9081FEF7691290C /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 24CD3A992934047CA47218EEF4230068 /* MBProgressHUD.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5069F2AE6871E9341C4F669BFE58C4B4 /* NSCharacterSet+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = B12CFA1A907987C327E40410996B53FC /* NSCharacterSet+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5104457877C506E5830812DF99096070 /* OMGUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C93C95C4D21E06FB0D18CD81584549 /* OMGUserAgent.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 51047C1945103943F70BEADE83725630 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 864012F553B4C4EB70925DD10E59945B /* UIWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 510773704B85535114D8929D04DD2820 /* NBMetadataCoreTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E95882FCEA987F6F4933E34F413EF3E /* NBMetadataCoreTest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5110BCD5DC4FA0016FAFFEF4B8F6FB49 /* DTAccessibilityElement.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F44B80244405121A2177CC0E173C1C /* DTAccessibilityElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51200971A8C179B812CB211D62CD549A /* FSCheckContentTypeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0690638056E11072CE1A38CE01F3DED5 /* FSCheckContentTypeRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 518EBC3E626C6511A35C45589E9651F4 /* FLEXGlobalsTableViewControllerEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D15446E5E0831DE23E8CBBB9A634A24 /* FLEXGlobalsTableViewControllerEntry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519AB05108425A77DF1EB83C73E70D98 /* NBMetadataHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FE487F298F6F6CC1C1D04CC2E0995237 /* NBMetadataHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51B14CC1F481FEAD8C1C71577020AE20 /* SWFrameButton-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD8CF1859545D02370A32CB07C1F721 /* SWFrameButton-dummy.m */; }; + 51CE11BC40C9EF654264A81039FC4134 /* FLEXNetworkTransactionDetailTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A29FCD1F6E9D037888CEF089C038AA5 /* FLEXNetworkTransactionDetailTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 523714441628C1854BE932C7F3267E57 /* DTImageTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9D90FAC899744D21ADE3FDB7446793 /* DTImageTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 52FA3205E08F65BE07E9FB7B3D986F13 /* APJob.h in Headers */ = {isa = PBXBuildFile; fileRef = 17DA5D3EE0388C64C8C7138166C1FC95 /* APJob.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 532D4C956B94C366FFCF017AA8652B11 /* FLEXDefaultsExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E29B0579561131FA620729BA1B31F3 /* FLEXDefaultsExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5376779CEE9C8F9497ABF7D51FE56CA4 /* APEmail.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8C2251138DD1E6F1DD451A1ECA3118 /* APEmail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 53DB7CCD2D213DB1E78F6D896EC393D2 /* DTAccessibilityElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225CA8087B99AF61544FD89FC6B5C95 /* DTAccessibilityElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 541DF1B3FF39630E9EBA42F8A9990B15 /* FSAudioStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 714E002DDE85F979EA95B7718B852666 /* FSAudioStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; 542246AB6ACEAEADC9B06A338786545D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 5460F2BA7C66CA095149620CACD23147 /* UIApplication+DTNetworkActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = D7B66C8A4DB3613F99CFD60E6C279516 /* UIApplication+DTNetworkActivity.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 548BFE2355136A356ED165B0913C7532 /* FLEXExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 82389B09ADD3C59DCBFEC5EF4D619F4B /* FLEXExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5460F2BA7C66CA095149620CACD23147 /* UIApplication+DTNetworkActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D44E2A180C0B49A3125C97FFDA91B92 /* UIApplication+DTNetworkActivity.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 548BFE2355136A356ED165B0913C7532 /* FLEXExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F8758C641D913288CF42FF3096088AA /* FLEXExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BEEAF0C1B5B8C7620C94DBB628795D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */; }; 54E7EBE76583166E59FD3E54D81B994B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 55609031062C5418B4FE4254130A11F2 /* DTDictationPlaceholderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA0765D3AFE479009B2F4E22737C821 /* DTDictationPlaceholderView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5577A8EDF875E62AFB3EFF2BB2046D74 /* SBJson-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6EB2B5A346C307DFA2BD04E436D592 /* SBJson-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 55EBAE7C6CC9EDCB0F273EA508B77ADE /* FLEXFileBrowserFileOperationController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0463379A6B09C0FC98B8A45C1CDFCF7 /* FLEXFileBrowserFileOperationController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 55F07E653B48359C2980DA712D38EDAA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - 5637DCDC2759140835DDFB1D3FB4C5B8 /* FLEXFileBrowserSearchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 458A2664B88365B18888C48BE7C5245A /* FLEXFileBrowserSearchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 565BD2646D6A1767798D119C9C2B07EE /* SBJson4StreamWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0895CE05DDD499C7B964F366FE26BD30 /* SBJson4StreamWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 56FE39159CBEAE7B792C20D3ED87E807 /* DTHorizontalRuleHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F79B105BDF17D949E5716F1C4E09DE /* DTHorizontalRuleHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 573C74898228FFEC7742FD3BAD6D25E1 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 60103F7EC28D7BBA767715BA7A08BCF3 /* UIWebView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5821D73FB91EE5856D78230364A77264 /* NBPhoneNumberUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 92869F4229627365CF1E01601E9BABF7 /* NBPhoneNumberUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 585A10DB0F2FB0FCA4DADD30999ED508 /* DTCSSStylesheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 85FAB40F966CB04375CD54F523A81E89 /* DTCSSStylesheet.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5888C2A15A25CA4BB5D482D3898E5D6C /* APAddressBookExternalChangeRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2E48F5D6A9FEE856DD520502CE2276 /* APAddressBookExternalChangeRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5920A526757714698F1158FC951218C4 /* FLEXKeyboardShortcutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE1B58702457B81E698A6762A3B8590 /* FLEXKeyboardShortcutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55609031062C5418B4FE4254130A11F2 /* DTDictationPlaceholderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 474A91D3F930308C6A14D3BF24C7A145 /* DTDictationPlaceholderView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 55EBAE7C6CC9EDCB0F273EA508B77ADE /* FLEXFileBrowserFileOperationController.m in Sources */ = {isa = PBXBuildFile; fileRef = B0816CFA36316E0074BC7F4D908070FC /* FLEXFileBrowserFileOperationController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5637DCDC2759140835DDFB1D3FB4C5B8 /* FLEXFileBrowserSearchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4D711B2D09F23AA5547129BAC38E1D /* FLEXFileBrowserSearchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56FE39159CBEAE7B792C20D3ED87E807 /* DTHorizontalRuleHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = F9997C1F55EC31E855B89E64FF136150 /* DTHorizontalRuleHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 573C74898228FFEC7742FD3BAD6D25E1 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F6DA1D2798AB54B3494C7E09860031F9 /* UIWebView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5821D73FB91EE5856D78230364A77264 /* NBPhoneNumberUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 40F92C3A3453B80D668E5AB6D671CEFB /* NBPhoneNumberUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 585A10DB0F2FB0FCA4DADD30999ED508 /* DTCSSStylesheet.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF32DF244B0D511C38096C3D8DCA5E0 /* DTCSSStylesheet.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5888C2A15A25CA4BB5D482D3898E5D6C /* APAddressBookExternalChangeRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFEB64414941B0DE0EFA00C4A76124F /* APAddressBookExternalChangeRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5920A526757714698F1158FC951218C4 /* FLEXKeyboardShortcutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D1EA386C8AA06187FA257B63A8885E /* FLEXKeyboardShortcutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 593ED721EA94A77E4F3F1BBA64FDE495 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 37DD53D7F475DC0B4C60F4E81CE89B31 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 59A9CE44E452CB91AC28F37298689FFE /* SWUtilityButtonTapGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E56B8BFA4A4729166C37E4CF17EF4D0 /* SWUtilityButtonTapGestureRecognizer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 59C35BA443943812926B427093EC56B3 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9EA038990895B29F1838AFBB359B6A14 /* MediaPlayer.framework */; }; - 59E0A85D6735528F65C1055CAF71E5CC /* TTTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C2070FA75E79BD3EED3558F5EE498DA /* TTTAttributedLabel.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5A17224617474E50AF6048EF3CACB390 /* APAddressBook.h in Headers */ = {isa = PBXBuildFile; fileRef = DB65166AC5569AB5BF675512F1244C0A /* APAddressBook.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5ADBC23A15B18590C592D3AC99BDB291 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DB0650D8DB7B7CF9E949BFE4CA00BC /* SDImageCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5B00C1C775BCB16805D313EE77220F36 /* FLEXLiveObjectsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CF09DC5093F059EDAA975353F2159FBE /* FLEXLiveObjectsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B1C17BB39430D571917D0B86CCF01CB /* AHKActionSheetViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F71B093A516957C2EF3A4D20CCE60753 /* AHKActionSheetViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5C2E6BFFC47D6FEA615DEDACC445949B /* FLEXNetworkRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = F614DD58A7DB038D16DE033020A94B0D /* FLEXNetworkRecorder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5D19BC03914A7CA9B59734B487872DAA /* FLEXArgumentInputJSONObjectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08940494FC681FDF38E8AD6BF49997FB /* FLEXArgumentInputJSONObjectView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5D32C3C73BF1F5FD90919225F7757167 /* NSString+NSHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 71307B0292B7D17DF506FB8C9D8C21A1 /* NSString+NSHash.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5D689CD8E470B1C17CE026A709A4D083 /* NSAttributedString+SmallCaps.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A6F9C48380A2B9C7D99A1AC445BACD /* NSAttributedString+SmallCaps.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5A17224617474E50AF6048EF3CACB390 /* APAddressBook.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CC1D34A7D4F261D66486CA9E7900166 /* APAddressBook.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5A2151FADF718FF41BA339EC5F879510 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DFC4AEB0E3B9DD4E09BF0EC3A55E444A /* UIImageView+HighlightedWebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5B00C1C775BCB16805D313EE77220F36 /* FLEXLiveObjectsTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 553082BDFDAAC608DBC835A88F1A96B5 /* FLEXLiveObjectsTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B1C17BB39430D571917D0B86CCF01CB /* AHKActionSheetViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBD299F417097202418969D6130D3F1 /* AHKActionSheetViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B31EC5CE021085D4D1E032F44E8B263 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 5C2E6BFFC47D6FEA615DEDACC445949B /* FLEXNetworkRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2188C3A2C36545CD72E7897D4B35A323 /* FLEXNetworkRecorder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5D19BC03914A7CA9B59734B487872DAA /* FLEXArgumentInputJSONObjectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08D06236C3B63EF5F56EE7B546F81A5F /* FLEXArgumentInputJSONObjectView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5D32C3C73BF1F5FD90919225F7757167 /* NSString+NSHash.m in Sources */ = {isa = PBXBuildFile; fileRef = F055BF80AC18B8CC51BCE7CDB4F76A73 /* NSString+NSHash.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5D689CD8E470B1C17CE026A709A4D083 /* NSAttributedString+SmallCaps.m in Sources */ = {isa = PBXBuildFile; fileRef = 887CAF11E4CC02F23B2BD1E92204AF3A /* NSAttributedString+SmallCaps.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 5DC6AE6192BCEFDC697141D740A9E71F /* Reachability.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A554454E9875DE6C81C75C7372773543 /* Reachability.framework */; }; - 5E08B90F4B73CDE4273763C006B3CB98 /* FLEXPropertyEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E0C10BD833413844F775BE54F046C4 /* FLEXPropertyEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E349FC0EC73CE85C88E2273251F7600 /* NBMetadataCoreMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F90A2AB9DE6A83A61E66BBEA92BA0B8 /* NBMetadataCoreMapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5E08B90F4B73CDE4273763C006B3CB98 /* FLEXPropertyEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6471F2799F9868314CDA3AC12E5B694B /* FLEXPropertyEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E349FC0EC73CE85C88E2273251F7600 /* NBMetadataCoreMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B620094280C6723FABBDEC73B62AFFC /* NBMetadataCoreMapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 5EBA8F38ED25FB2EF420E37151AC5C93 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; 5EFE3C1316AE3DF65B81286439987953 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - 5F34F8B5C00D596EBC20339C2153D472 /* DTLinkButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D1948DD27AF23FE4E029755D9C926C67 /* DTLinkButton.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5F369C300AB72E0D429C3DB0AF06D775 /* APEmail.m in Sources */ = {isa = PBXBuildFile; fileRef = 6350D9BBE613A0024F8FA4AA8E14C0D0 /* APEmail.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 5F6DE07218106FB1FA7145C910E7D370 /* PHFDelegateChain-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C7E5E86457B0BEC58B54C986855694 /* PHFDelegateChain-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5FE809C62A2BC6D0B92220C69BBAFF73 /* IQ_FDWaveformView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FCDC3C909277DBA560800C498C358C /* IQ_FDWaveformView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6007355DD83EF44CE73136C68FD50B77 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 436CD1ADDC482ADE71C853AD7F499378 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 60C1547EDBC28182969C2DD600A81664 /* NBPhoneNumberDefines.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2065AAF837CAC0C69369F61F679F1E /* NBPhoneNumberDefines.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 60E1BD88B7F2CB8B3ED3DABC67DAF73F /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B3939E9C7F1994101A7D3A32CA84EAE6 /* UIButton+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 61942289F2A5325575511DD629ABC154 /* PHFDelegateChain.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F78DA5E56BC5F28442876D67B582C5 /* PHFDelegateChain.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 619FBD389344DB62F9E73132C8E7C303 /* FLEXUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = B3429C41E98A2B27F8DE021FBA0BA492 /* FLEXUtility.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 61A2C1504421793336A80DA0EFCF7494 /* FLEXDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AAE597B678E628668F66C5BB6873F1F /* FLEXDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62180C8C36E95B36753FEC09AAF38668 /* DTCoreTextParagraphStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE032E44373EA6A7CC9BBFD5FE504B2 /* DTCoreTextParagraphStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F34F8B5C00D596EBC20339C2153D472 /* DTLinkButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EE768E016D759EFFE6C9D3917786B9B /* DTLinkButton.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5F369C300AB72E0D429C3DB0AF06D775 /* APEmail.m in Sources */ = {isa = PBXBuildFile; fileRef = 31C713021DCD8B9CA1EA9B20C7C5B793 /* APEmail.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 5F6DE07218106FB1FA7145C910E7D370 /* PHFDelegateChain-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1B9C6C63E282E5D73AF0FFA2E9D02B /* PHFDelegateChain-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5FE809C62A2BC6D0B92220C69BBAFF73 /* IQ_FDWaveformView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4040355D4B12AE84625DD2DA8FDF112 /* IQ_FDWaveformView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 60C1547EDBC28182969C2DD600A81664 /* NBPhoneNumberDefines.m in Sources */ = {isa = PBXBuildFile; fileRef = E4689B56BE90BFC7C6F8AB6F5403DB1C /* NBPhoneNumberDefines.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 60CB94DAD5BB8F739FB18ECE5420EF54 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC6443161D72C2C76F1F9920132DC00 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 60E1BD88B7F2CB8B3ED3DABC67DAF73F /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 9329D74727BEA09FBC4817BF61E7B563 /* UIButton+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 61942289F2A5325575511DD629ABC154 /* PHFDelegateChain.m in Sources */ = {isa = PBXBuildFile; fileRef = 44CD4217846E37AF1CF24CA15ABEF41C /* PHFDelegateChain.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 619FBD389344DB62F9E73132C8E7C303 /* FLEXUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = EAFF32048AC640F63721A96CD250A86B /* FLEXUtility.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 61A2C1504421793336A80DA0EFCF7494 /* FLEXDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9E3126619208950AE7BAB04A0DD7BA /* FLEXDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62180C8C36E95B36753FEC09AAF38668 /* DTCoreTextParagraphStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9078DF86D999C8B64E182DB0F65BDF78 /* DTCoreTextParagraphStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; 623DAC0C933E33D23D4185EA170F8CA9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 6289D911FAA50A06039049632929952F /* SWCellScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 554E202051959EEFB2E3973C86D930D0 /* SWCellScrollView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 62BD6EE7D89F757A4CD5B159B4711144 /* PHFComposeBarView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6D84D37E96B0463387F75CCEAF7146 /* PHFComposeBarView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 62EB0E48910ADF1512ADD511A44C2EFF /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DA5545B8CF42C26A1FDD12668E9B45 /* UICKeyChainStore.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 62F1DD1D478C94F00B90B32882D440C3 /* CYRLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 709BAAFD3E917331F0287D67BC5F5204 /* CYRLayoutManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 63F0A4F368637ABB48D6BFF3B87CCD33 /* SBJson4StreamParserState.h in Headers */ = {isa = PBXBuildFile; fileRef = A66ADEF14976B895DE158CC7DD17364D /* SBJson4StreamParserState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63F910434700E4ED72D54AB05EB49EC7 /* FLEXArgumentInputFontsPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5933DC083FA7DA265179CEA5D8FF1571 /* FLEXArgumentInputFontsPickerView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 64CC249A7D8D3BFC82B06626F1B1A9A2 /* JDStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = FB9FF78DB770E31BA12B5BE704980671 /* JDStatusBarStyle.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 64D945CFECC93ACA0239D46D70DC0ED7 /* UIImage+DHImageAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 81014B78ECCAEA1A7DA25F40DAE5CFF5 /* UIImage+DHImageAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 64E04865893CAD09A2DF0139A47968B6 /* FLEXCookiesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 834483709EBBBD88AA299AE2C6ECE38E /* FLEXCookiesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 64F66F7D552828A5CC10D6FDD804919E /* SWFrameButton-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 472467EDD07BF0A73AA57F202CD729E4 /* SWFrameButton-dummy.m */; }; - 655DEFAFC303A2BB6CA1C05B02B6D3CA /* UIImage+DHImageAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A85132B4F4ECA411A9AC7305665CC35 /* UIImage+DHImageAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6573AF9ABA59AC8D1F52B07088197F71 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB75F3F7FB496FF22E1A5646F2B1F18 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 65A4058957FA591EA60E362A3FB99B2C /* FLEXExplorerToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = AA61602D56C97AA1F1A3BF3E2380B6E6 /* FLEXExplorerToolbar.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 65AC442DC87E313BD08EFCF7586552F5 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC562FBC608AFC6E9E8CFEAA9376C5A /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 667836381B77C09019A5F1B44EE9F744 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F375EB45AE6A0ABED338DBF85E73E44B /* UIButton+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 667AC57C0C8B6D88FCEE54A5F5A9BB01 /* SCSiriWaveformView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F6924A6AC5F0E81B1678CFC98E6CC4 /* SCSiriWaveformView-dummy.m */; }; - 6689918059FE7B793A07FCA9EBC9D1C3 /* NSString+Paragraphs.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD6EBFA093B627EE05DD27A668D7F6F /* NSString+Paragraphs.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 668AB90CA3ED9B7E888927D532C4056D /* RMDateSelectionViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D48D744C9695D6285AC75A5CAC72417 /* RMDateSelectionViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 66C5BA3F744034A20D4366E7CA05BC13 /* NSString+DTPaths.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A74A39195A15CEE207AE524F434DED /* NSString+DTPaths.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 66E1D227A75AF6F809CC947D3D55C4C9 /* input_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FE2B0FC3BDF80A65BAC018520C6BA5 /* input_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F53044FDA74E65FA524AB566A0F9A0 /* BBBadgeBarButtonItem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 076729FF1E116C658D7E8A5D4FA4E203 /* BBBadgeBarButtonItem-dummy.m */; }; - 67217EE922AE092080ABDEFE59051E30 /* stop_playing.png in Resources */ = {isa = PBXBuildFile; fileRef = 58FD328AB69605257D88B5C6850CF2D4 /* stop_playing.png */; }; - 672CB919ACA5D1721952E7F533C81305 /* NSAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F1BD6C9C3A8C55975F130D3D930076 /* NSAttributedString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 674A9E7A7685CC4533ECCC3F44B71159 /* NSURL+DTComparing.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BBB9C81A8B67101B39547FD4F7E216 /* NSURL+DTComparing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6769B6DD692D6F78E039A8DBD5624891 /* DTTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F90D6FD8EC78BE5C62F1553F6BC4DB8 /* DTTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 62BD6EE7D89F757A4CD5B159B4711144 /* PHFComposeBarView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B9374ED36DC0284C46266DAD35C07C /* PHFComposeBarView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62F1DD1D478C94F00B90B32882D440C3 /* CYRLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CCE7B3D9E5E83D11AA75D81D93ACF675 /* CYRLayoutManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6329F1D371133E1CF406F2BF0A2E4921 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */; }; + 63F910434700E4ED72D54AB05EB49EC7 /* FLEXArgumentInputFontsPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = ED271B28633960B441ECFF85DA5A4BDF /* FLEXArgumentInputFontsPickerView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6476A27BCB9E01BFB360714BF9A276C8 /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9763D8BB7F39DFBE29FEC33E126EBE17 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 64CC249A7D8D3BFC82B06626F1B1A9A2 /* JDStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DBD627B01C1693A98E5FE1CC66C6FC6 /* JDStatusBarStyle.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 64D945CFECC93ACA0239D46D70DC0ED7 /* UIImage+DHImageAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 953F2EF961D9C10FBBF42A68600E4650 /* UIImage+DHImageAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 64E04865893CAD09A2DF0139A47968B6 /* FLEXCookiesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 332D0DCFA816445289CF8C7E446CB78B /* FLEXCookiesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6554DA670C741EA9617D9DAADF415A0E /* RMActionController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BA79654855CD0B7DB14A8FDEC6742D1 /* RMActionController.framework */; }; + 655DEFAFC303A2BB6CA1C05B02B6D3CA /* UIImage+DHImageAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 726EC31E8621559660F62343917EE379 /* UIImage+DHImageAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6573AF9ABA59AC8D1F52B07088197F71 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = E04E8E75D637AE2466038AF173BE5F4A /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 65A4058957FA591EA60E362A3FB99B2C /* FLEXExplorerToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AB57A124A97868CCA3EEC4B50E74691 /* FLEXExplorerToolbar.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 667AC57C0C8B6D88FCEE54A5F5A9BB01 /* SCSiriWaveformView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C795792E837F6042927651627A512666 /* SCSiriWaveformView-dummy.m */; }; + 6689918059FE7B793A07FCA9EBC9D1C3 /* NSString+Paragraphs.h in Headers */ = {isa = PBXBuildFile; fileRef = 090AD8191C338EC210B300BBD100044A /* NSString+Paragraphs.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 66AC29275CE58D6F858C085B72504859 /* RMDateSelectionViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6573E32250A1E1BBB80E30AA4ED0FAB0 /* RMDateSelectionViewController-dummy.m */; }; + 66C5BA3F744034A20D4366E7CA05BC13 /* NSString+DTPaths.h in Headers */ = {isa = PBXBuildFile; fileRef = 4296E0816EC2A57209B7166DEB2BA9CD /* NSString+DTPaths.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 66E1D227A75AF6F809CC947D3D55C4C9 /* input_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = C68A8D4A83A675EDFF007143E0AB6B09 /* input_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F53044FDA74E65FA524AB566A0F9A0 /* BBBadgeBarButtonItem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D40E25E8104F34C39129DC8B86524175 /* BBBadgeBarButtonItem-dummy.m */; }; + 67217EE922AE092080ABDEFE59051E30 /* stop_playing.png in Resources */ = {isa = PBXBuildFile; fileRef = 246217D71F2D60547E00155028A97DDF /* stop_playing.png */; }; + 672CB919ACA5D1721952E7F533C81305 /* NSAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 9463435FB4536536510483B4E3A30F55 /* NSAttributedString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 674A9E7A7685CC4533ECCC3F44B71159 /* NSURL+DTComparing.h in Headers */ = {isa = PBXBuildFile; fileRef = E677C4C4661DCCF69DEC5274E3928AFC /* NSURL+DTComparing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6769B6DD692D6F78E039A8DBD5624891 /* DTTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E85831B2DF52A0C5B84A1D78E7107B /* DTTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 680A1E799DD1333300C3FFF6B39D9787 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 6830267CC48C623A0417D712CCAB01BD /* DTObjectTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 8165A5B9124BB8241DD1740F819503BF /* DTObjectTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6843ACF470E15A10BA914C11C71E0635 /* DTHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 38C02AD7756BBFF96A791ECF6D5B43E6 /* DTHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6868C85400F4A2DDD3A1E124AA4848CD /* NBMetadataCoreTestMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C43733D9091A0448B2BCE6CDCDE150 /* NBMetadataCoreTestMapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 68A27F61D9EB28693028027360AB9267 /* SWTableViewCell-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4506ED74CD60F44DD3914DFF187A5F /* SWTableViewCell-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6935FDCA3AE592C8CF11FFD4BAF1A45E /* FLEXManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E20FEAAED4BEC28A1DB4452F6D9D10 /* FLEXManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6969D8894A0202D8C2A85ACEC0D13FB6 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B67F1173934F8B0F611F20E40CDD00E /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 696B175EFD8FFD7EB444F9B0C2EB5068 /* SZTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E228D834530598B4322EADA552024F /* SZTextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 696B7077CDE684EC5C08AB1A1B4264F3 /* NSDictionary+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = FEB80AEF44D04D99D42714632D292AA5 /* NSDictionary+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 69746ADD1D1D4D5AA529AA9374C26C19 /* NSString+DTFormatNumbers.m in Sources */ = {isa = PBXBuildFile; fileRef = 1084A29B0AFE32DF75516BECCB56623E /* NSString+DTFormatNumbers.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 69982C65B2B41868F5C7FF151DAEBBDF /* OMGHTTPURLRQ-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3AE3866EB64927E22F28064B4C2E6AD /* OMGHTTPURLRQ-dummy.m */; }; - 69ACC077AD917E7E0FA9F874C3139121 /* FLEXHierarchyTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FBEBA81009FC82998DE228D8C015564 /* FLEXHierarchyTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6AE7EA503598F4C7AB8433F5B7370CD4 /* DTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A04DF0248DF140F451357C8B7DCBC465 /* DTVersion.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6B2271EC562049B541405478403304C7 /* DTObjectTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8161CAFCF67C4B2D360D35C572B84A /* DTObjectTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B3F2BFA02492FC287C3ECD0B79D3206 /* UIWindow+AHKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 62129851FDC81D7C3A56EE96A8B471F0 /* UIWindow+AHKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B42125D7F33395D3F89B738DC807AC2 /* SocketRocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B316970E474EA377575953D5899B249B /* SocketRocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BEA750665BEA488B678E137FBDC9501 /* PHFDelegateChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4995C56241F18B27E7F3B7872F97DC /* PHFDelegateChain.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6D859E0E7A4961EDA554D214B605B900 /* SBJson4StreamTokeniser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED9F9D880CBDF43B4A25BBA65E0B2A0 /* SBJson4StreamTokeniser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6DEAC7ED9F2200CBB0A1134FFC2CD826 /* TTTAttributedLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C31B96CAFD0B45F0F04DE811660C61A4 /* TTTAttributedLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E37E43BDE9810949FF537962E76B798 /* REMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D816DCDFF35B12EB1DADB8ADB543E76 /* REMenuItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 6E74DC74D6FEC1E1C077D16EE726E663 /* APSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F07E473ECE5DF9C387E96349095021 /* APSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E826BB4935E10730AE91C1A5A7135DE /* DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 67430B51A7293173BC199C0E349D394A /* DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E8B1F5D27B1C4CF13ABA77A776A1AA1 /* SBJson4StreamParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 704EEC7FBA274F537A1B0E3C305E5C17 /* SBJson4StreamParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 700077B1FF8C2C62513163CBB298FB2C /* icon-info.png in Resources */ = {isa = PBXBuildFile; fileRef = 7C26784ECA688E60D7AD91B17C992582 /* icon-info.png */; }; - 707B4104CB77E21C59A5AC13C3AA85D2 /* CTLineUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8FF107C6CA4171C7CB4B5C92BCCFD5 /* CTLineUtils.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7091AC87F226AEB8BB7BC7F13799C4C0 /* AFHTTPRequestSerializer+OAuth2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7129E23F534DF026A9B1E84A95154478 /* AFHTTPRequestSerializer+OAuth2.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 709CAC5A02953F04BB4E0BE982EAD414 /* FLEXNetworkSettingsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BED625BAD02B9853AA5FB9C081E45934 /* FLEXNetworkSettingsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 70C4DCE8DD7F54E02BE0F023C00358CA /* OMGUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F1BCFB8B7EF6B3C8CF4601733B1C3A7 /* OMGUserAgent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 70DBD0C9DF6ADEC45B84DC0525A628AE /* SBJson4StreamWriterState.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9E80964F6946FAB689136FAB915E42 /* SBJson4StreamWriterState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 70E4E9426AC3067A4606F936B05DAFC1 /* UIImage+AHKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E1639F29E79EC064ABDC66F03C8EBB /* UIImage+AHKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71BEDD20751B466BE7DDB02DC867B399 /* FLEXDefaultEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A2FFEA3AD16635C56790FAF39B1B0C61 /* FLEXDefaultEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 722A8428E6F7A77BCA12E241D8A5E250 /* FLEXExplorerToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 12CB3BB53450A1BB7EE3C11C0C980F43 /* FLEXExplorerToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7272D7507DA9BA30A3F7A451CC7AF4CB /* FLEXLiveObjectsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FF6D03E41417FBE1FD87B8CCE77A93B /* FLEXLiveObjectsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 72917FB2185FA1AACA0598A217EFDA46 /* CYRTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FB8CFA35F9B22346E4CBD77B71B55E /* CYRTextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 72C207AF1910B6F171D5C4EFF8F7E9A0 /* FLEXArgumentInputFontsPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB202715DA2D960A8010216C1580CAD /* FLEXArgumentInputFontsPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72DB8BC966540C5453566A93ADD7CC32 /* SBJson4StreamWriterState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8A700A314F421755581AC645CF78C2 /* SBJson4StreamWriterState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 735A1897653085747336E3BAA269BAC8 /* file_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23D37A3E043B6F7D27FF0AF1D062D0BA /* file_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 737DFC4DBD0BA3EC5501C5F7679CF063 /* SBJson4.h in Headers */ = {isa = PBXBuildFile; fileRef = DF8063FC00D3DB3442CC23570D673640 /* SBJson4.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 73A6229C601EC998907B87508A0923D5 /* JDStatusBarNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = F289BFD2091C990A337DF56C6878AEF4 /* JDStatusBarNotification.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 73BAE6780D95CD0DD904C5D535E7AD76 /* UITableView+DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8F0894C4EDA6BEE359D10E3178699D /* UITableView+DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 73D546839751E1891B6885B5C5FA430E /* DTTextHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 241FA73D8783FA06F773D0B3CAB920AE /* DTTextHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 73E308EA13B334DED069329C0B14E8CB /* DTPieProgressIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 690BE8C777CDE705C4A5D47FB9E1EA8A /* DTPieProgressIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 743A913FA03EB4E9FD08BC58D548AE28 /* NSFileWrapper+DTCopying.m in Sources */ = {isa = PBXBuildFile; fileRef = 14CD351389B2999174E87C8FCB08E70A /* NSFileWrapper+DTCopying.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 745F6BFEF258A62631ACD8225F6898D5 /* FLEXMethodCallingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2D6E5D3C95863939837A17606F49D0 /* FLEXMethodCallingViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 746FA58CA7FDB81375696D1510598E29 /* DTAnimatedGIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 2381F03E9A497517BFA043F6B632CB6B /* DTAnimatedGIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 746FAA0410A86087DFD7BF1786F23595 /* NSData+NSHash.m in Sources */ = {isa = PBXBuildFile; fileRef = 78FD0A2A3B50A34AAEE429D69C2DA98E /* NSData+NSHash.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 74F89545BC2B26773233A42A4E451B5B /* DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = A01DA3859513A81F73EB963BC47F1B51 /* DTCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 75438EDB74A9610A2EBD948818C000F6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 75653D268B6E513F144B3AA28CC3216E /* PHFComposeBarView_Button.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C6050D05882AAFB317DEF59F504E2C /* PHFComposeBarView_Button.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7620B81CB541BD3AC7C1A46447D2AE41 /* DTCoreTextLayouter.h in Headers */ = {isa = PBXBuildFile; fileRef = A60EDBA871E31DC8716F78AB5FD62DE7 /* DTCoreTextLayouter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 763AFBEBBB39418011471D630ECC4924 /* DTLazyImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = E692C734D0B5E96957183BA90E14D7B9 /* DTLazyImageView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 766D24202864E0B94013A95C80DF1DB5 /* FLEXLayerExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D752C10DF605CA2B72F2DD954E91045C /* FLEXLayerExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6830267CC48C623A0417D712CCAB01BD /* DTObjectTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 53565D4F8B8DC8995B788CA5AD568F47 /* DTObjectTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6843ACF470E15A10BA914C11C71E0635 /* DTHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = A7B462D434CE0514E9D3C3B27B7C0114 /* DTHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6868C85400F4A2DDD3A1E124AA4848CD /* NBMetadataCoreTestMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 755F349E2504D991FBDCD3837903D3F0 /* NBMetadataCoreTestMapper.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6935FDCA3AE592C8CF11FFD4BAF1A45E /* FLEXManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C5C76A35972C73B3E9598292DED579 /* FLEXManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6969D8894A0202D8C2A85ACEC0D13FB6 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C945E5C99F2973094DD4F2FF5610BD /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 696B7077CDE684EC5C08AB1A1B4264F3 /* NSDictionary+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF0EDF35CC5FA518DF211EC9C49D330 /* NSDictionary+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 69746ADD1D1D4D5AA529AA9374C26C19 /* NSString+DTFormatNumbers.m in Sources */ = {isa = PBXBuildFile; fileRef = F7202715B80704054230DD0D2E9CA608 /* NSString+DTFormatNumbers.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 69982C65B2B41868F5C7FF151DAEBBDF /* OMGHTTPURLRQ-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A7C04DC4A039F581DDD97E8A87CE98 /* OMGHTTPURLRQ-dummy.m */; }; + 69ACC077AD917E7E0FA9F874C3139121 /* FLEXHierarchyTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 73729E85264F2C5DBDF7627E6389E9E7 /* FLEXHierarchyTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6A6A5CE2100F69116C93E8DBF9496964 /* TWMessageBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BB1539A6FB302C1E72E972FDF08FFDC /* TWMessageBarManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6AE7EA503598F4C7AB8433F5B7370CD4 /* DTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = E164EA220B21FC01642A157C4339A5F6 /* DTVersion.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 6B2271EC562049B541405478403304C7 /* DTObjectTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 160F4330B53A80491CD4DFE1F77F0FDB /* DTObjectTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B3F2BFA02492FC287C3ECD0B79D3206 /* UIWindow+AHKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C41285E55435527CBEA10EA402059864 /* UIWindow+AHKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B8C732C94D0CB6A0AA0D8A3C2805432 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + 6BEA750665BEA488B678E137FBDC9501 /* PHFDelegateChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 063FEA40204B085789BB6EBF7ED7E193 /* PHFDelegateChain.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6C282AF5B9E9A8E823C8E96B84CC4CD3 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F2ACB79333B3B611C1F2FD4169BC88 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E74DC74D6FEC1E1C077D16EE726E663 /* APSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E71B0ACA2B30E4123D4661089B00114F /* APSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E826BB4935E10730AE91C1A5A7135DE /* DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACA9A5A7132A51B48CE4A7AB31CAC7D /* DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6F7A6287BBDB5268338A71B32AF41555 /* LTHPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A7E2EB8CFBA2A9668C0A996537E15A /* LTHPasscodeViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 707B4104CB77E21C59A5AC13C3AA85D2 /* CTLineUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BECEFED58A9CF585E21571EDD5525482 /* CTLineUtils.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7091AC87F226AEB8BB7BC7F13799C4C0 /* AFHTTPRequestSerializer+OAuth2.h in Headers */ = {isa = PBXBuildFile; fileRef = 8894CC95DC567B22858CF7F456DE636D /* AFHTTPRequestSerializer+OAuth2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 709CAC5A02953F04BB4E0BE982EAD414 /* FLEXNetworkSettingsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BF71925FC7FA40A1AA13BA14020AA27 /* FLEXNetworkSettingsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 70C4DCE8DD7F54E02BE0F023C00358CA /* OMGUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = F7417F40EF0DD36D675E18488C540CA3 /* OMGUserAgent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 70E4E9426AC3067A4606F936B05DAFC1 /* UIImage+AHKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6363F68A57135BA2AF6273BCF054B87F /* UIImage+AHKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 718BCCF8676E31D4D0D3210521BA3ECD /* SWFrameButton-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 87304C8EF2A0BA37B04757A16FBB91C7 /* SWFrameButton-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71BEDD20751B466BE7DDB02DC867B399 /* FLEXDefaultEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C538A95BB762AB96240E4AEB3936DE /* FLEXDefaultEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 722A8428E6F7A77BCA12E241D8A5E250 /* FLEXExplorerToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 215783875A48D538B6E5A5789F790C7E /* FLEXExplorerToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7272D7507DA9BA30A3F7A451CC7AF4CB /* FLEXLiveObjectsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 654B1A98E7531D9BFD46C42E80BEC004 /* FLEXLiveObjectsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 72917FB2185FA1AACA0598A217EFDA46 /* CYRTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9005B7BFAB969BA3A856FB55DE22E582 /* CYRTextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 72C207AF1910B6F171D5C4EFF8F7E9A0 /* FLEXArgumentInputFontsPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = A3295A4A04B814470ACE82F998D9CF8D /* FLEXArgumentInputFontsPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 735A1897653085747336E3BAA269BAC8 /* file_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FF809D7C8A771B6B5E95255540E0A4E /* file_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 73A6229C601EC998907B87508A0923D5 /* JDStatusBarNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 499D9021A3181138DDDCC270C55CC475 /* JDStatusBarNotification.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 73BAE6780D95CD0DD904C5D535E7AD76 /* UITableView+DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = A029C758AF440367546ED84D42693715 /* UITableView+DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 73D546839751E1891B6885B5C5FA430E /* DTTextHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = C3BF7488E1EC2E1A663086C19735244C /* DTTextHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 73E308EA13B334DED069329C0B14E8CB /* DTPieProgressIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D2B74A207250F2C5F3C7027061DF22 /* DTPieProgressIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 743A913FA03EB4E9FD08BC58D548AE28 /* NSFileWrapper+DTCopying.m in Sources */ = {isa = PBXBuildFile; fileRef = 133F6757D510EF372EA3961988FDFC55 /* NSFileWrapper+DTCopying.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 745F6BFEF258A62631ACD8225F6898D5 /* FLEXMethodCallingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6EC0D7F13377F4510C369F273A05D40 /* FLEXMethodCallingViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 746FA58CA7FDB81375696D1510598E29 /* DTAnimatedGIF.h in Headers */ = {isa = PBXBuildFile; fileRef = FC16B784236156D246DC5BC09E716CBE /* DTAnimatedGIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 746FAA0410A86087DFD7BF1786F23595 /* NSData+NSHash.m in Sources */ = {isa = PBXBuildFile; fileRef = D6B5B6BB32C01184E17017454318A05F /* NSData+NSHash.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 74F89545BC2B26773233A42A4E451B5B /* DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0ED090BAB77CA998EBE90D9D630B27 /* DTCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74FF66FC547FEEFAB7815FD69B42D75D /* REMenu-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A00647112E8652A54C2E4F70E2E973 /* REMenu-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 75653D268B6E513F144B3AA28CC3216E /* PHFComposeBarView_Button.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EBA09EEECA89B358424CB47C3DDE359 /* PHFComposeBarView_Button.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7575FE4C68157965D335D4FE8FE7AA40 /* REMenuContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD56517E0783443CBE1C01627085520 /* REMenuContainerView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7620B81CB541BD3AC7C1A46447D2AE41 /* DTCoreTextLayouter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B13271F8F29575381B785849FE4B125 /* DTCoreTextLayouter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 763AFBEBBB39418011471D630ECC4924 /* DTLazyImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 19E3E5E5C1A179B8DF88D9FBE1DA7AD9 /* DTLazyImageView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 766D24202864E0B94013A95C80DF1DB5 /* FLEXLayerExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 302BE759240BFBAE97CB89A1F3895724 /* FLEXLayerExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 7677256385EF6CE6DA0728F340A8BE50 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 775D4CD5CA8B4797D94537E555A72BEB /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FFB6970057D1DECB543BE1227FBE931 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7788B83B3B5AABD855C4BA6375D9B8BE /* DTAttributedTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D0490C4BC92E693341332AD7EE961C /* DTAttributedTextCell.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 77E3A80EE5CA3A90D80F0F01CA22B14C /* BBBadgeBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7663C5C47B1C72766B651AEAB5E281 /* BBBadgeBarButtonItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7853B8240AC7D8F1BA4861CA98136590 /* FLEXArgumentInputStringView.h in Headers */ = {isa = PBXBuildFile; fileRef = 283ED54E0D4F086AA2DE16665981244C /* FLEXArgumentInputStringView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7788B83B3B5AABD855C4BA6375D9B8BE /* DTAttributedTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 014C2620DD4AC153C3D4ED69A32B30B2 /* DTAttributedTextCell.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 77E3A80EE5CA3A90D80F0F01CA22B14C /* BBBadgeBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 8363A7722ACD5C3467B49CEC45582ABE /* BBBadgeBarButtonItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7820997609E74588DE0FB0518DA4CC6E /* RMDateSelectionViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F68603B8A3B9E15A40A10B7DB9F9B79 /* RMDateSelectionViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7853B8240AC7D8F1BA4861CA98136590 /* FLEXArgumentInputStringView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B8C93FDE429E06F8B79FDD60355A77 /* FLEXArgumentInputStringView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7892E8EB8A93E46E46F5878A55B31E07 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; 789D749690B308852115FF20CD982A69 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; - 78CD1C5EA9EF734652A5E691FFE291FB /* FLEXHierarchyTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C49F81674DBEC0B6BE50694C48F31F8D /* FLEXHierarchyTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 795DC196B2D9CE4B55224F4E5EAE42ED /* DTExtendedFileAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AADB332BAF7AC2F10DEA096D6251DA5 /* DTExtendedFileAttributes.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7962B64FA8021866C718FDC0C833EC68 /* SocketRocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A2A66B886BF38C867405EE7722AE4B8 /* SocketRocket-dummy.m */; }; + 78CD1C5EA9EF734652A5E691FFE291FB /* FLEXHierarchyTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 56A91F21E0A8CEBD9642772294CD7969 /* FLEXHierarchyTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 795DC196B2D9CE4B55224F4E5EAE42ED /* DTExtendedFileAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC6DE8AF72CC88A5BCDD49C884129B4 /* DTExtendedFileAttributes.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; 79FD23B311B66EEDC135D36E7E06E8C5 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9EA038990895B29F1838AFBB359B6A14 /* MediaPlayer.framework */; }; - 7A112C0F21A62CB6F1AA8D917A6EEA6C /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 95A5EBF9C1DD299D32F09548DD361688 /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A6E45F9807A1AB4CB9062924A90FF2D /* SWCellScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CAC8D90E86D922AD68177B7F76619F /* SWCellScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A7BD3332466C063D75C527E249BC8CD /* FLEXRuntimeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E46F02BF49FE8D3DE26659F8B033DFB /* FLEXRuntimeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A919D0465B3821D5B967D13CA429B2C /* SWTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CFC10C0538EDA36516FD16343D8E24 /* SWTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7AC589756BA9BA62FECA4E490CC91ED1 /* DTAttributedTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 60907D72F03DD35F791A69FFAB18EB61 /* DTAttributedTextView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7AF813591BA8D19239EEC641C83C06AD /* IQCropSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = EFB46F44B27F8D89924EA23C45496DA1 /* IQCropSelectionView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7B2BA029E813A2C76FC087B806BADBC6 /* DTSmartPagingScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D27A88907CB696B0D6E56C40287459 /* DTSmartPagingScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C1801C836D425C7ED44CDA094E22723 /* IQAudioRecorderConstraints.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9C824683AA33003E4DCE90B4BCCB64 /* IQAudioRecorderConstraints.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C9E3C7BEDE10554CD62E8F60A056625 /* RECommonFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F823D88AFD385AE9090336197E129BD /* RECommonFunctions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7CA2EF2E460EF5B3A65DFF2FF76953E5 /* NSHash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E467E322017745119BAB96E14950744A /* NSHash-dummy.m */; }; - 7CA6EE738007BCC5DE759ED7C9028FBF /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0755AE89CD035E9EF4ED421F9AC74E5C /* SDWebImage-dummy.m */; }; - 7CBBE3D4F5E69EDB5513259BEF846668 /* IQAudioRecorderController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC30500E5721C75CE3B9DEA57A9D0A44 /* IQAudioRecorderController-dummy.m */; }; - 7D017C4766A8A6B24A80A356575F707A /* SCSiriWaveformView.h in Headers */ = {isa = PBXBuildFile; fileRef = C663DB6AC96042F184E96971199D94B0 /* SCSiriWaveformView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7D5C6105169627F7B924E4900174B929 /* FLEXArgumentInputFontView.m in Sources */ = {isa = PBXBuildFile; fileRef = A982AB3D0CD15A5285DE77C49BC3B2A8 /* FLEXArgumentInputFontView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7D78519A67484DAEA430BC3363C2F959 /* FLEXNetworkCurlLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9861AD380947ABD6F5F9296A5D7A3BF6 /* FLEXNetworkCurlLogger.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7DD8012DF7B5FA58DB58D53B336516EC /* INTURequestIDGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EB40527C12C88DFB4F53D099ABF4115 /* INTURequestIDGenerator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7E894DBA479E6B6C83B98D94B1D8DBF1 /* icon-error.png in Resources */ = {isa = PBXBuildFile; fileRef = F702AF0973CB2C1DAC792B14807153CE /* icon-error.png */; }; - 7EAF42389D0E71B1D1C7C316A96584AB /* NSFileWrapper+DTCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = F68347EE7279AA839ADA00FA7EAC8F82 /* NSFileWrapper+DTCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7EE694385B6E4B37334BDFC416F5DB1B /* DTCoreTextFontCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CA18D0B3413173A93E1B55F7AE9ED0C /* DTCoreTextFontCollection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 7FB47A5F23A86AB5B46B79F3CE4198DA /* DTLinkButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4536B36BA69FB7F8C32354B67E1F04 /* DTLinkButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 806C21A7C6E61CFF69D639CAD77E714F /* IQCropSelectionEndView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D822239D5B6D4441933AE04179006E /* IQCropSelectionEndView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A112C0F21A62CB6F1AA8D917A6EEA6C /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 234BE53C208CB3AC989731AAFCA7CD5F /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A7BD3332466C063D75C527E249BC8CD /* FLEXRuntimeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = F897AFD78684456027218D3854C15F18 /* FLEXRuntimeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AC589756BA9BA62FECA4E490CC91ED1 /* DTAttributedTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = BEB30D0DB358DA419B2D880A9E5BE81A /* DTAttributedTextView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7AF813591BA8D19239EEC641C83C06AD /* IQCropSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 570F6313A29B7889ACE2DC9BC076C546 /* IQCropSelectionView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7B2BA029E813A2C76FC087B806BADBC6 /* DTSmartPagingScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0817826FCACA52B28DD9612AC33D511C /* DTSmartPagingScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7BD65DD1461AE3D1965A4155BCF37EA6 /* SBJson4StreamWriterState.h in Headers */ = {isa = PBXBuildFile; fileRef = 6140F4E1C03D176938B896ACE66D6106 /* SBJson4StreamWriterState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C1801C836D425C7ED44CDA094E22723 /* IQAudioRecorderConstraints.h in Headers */ = {isa = PBXBuildFile; fileRef = 200CD411BF1E3958D4D64985F2540496 /* IQAudioRecorderConstraints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C4973CE1E0E45E680FCC30BBE9703D0 /* NSMutableArray+SWUtilityButtons.m in Sources */ = {isa = PBXBuildFile; fileRef = B3D34AA82B8A05E495821D7983DA906A /* NSMutableArray+SWUtilityButtons.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7CA2EF2E460EF5B3A65DFF2FF76953E5 /* NSHash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B93CA6C64630D1F1163C1342CDFAED8E /* NSHash-dummy.m */; }; + 7CBBE3D4F5E69EDB5513259BEF846668 /* IQAudioRecorderController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F82ACB03D312133103ADC240BCCA2BB /* IQAudioRecorderController-dummy.m */; }; + 7D017C4766A8A6B24A80A356575F707A /* SCSiriWaveformView.h in Headers */ = {isa = PBXBuildFile; fileRef = 83EDEC70CACBF50BF7CF7F368572C91C /* SCSiriWaveformView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7D5C6105169627F7B924E4900174B929 /* FLEXArgumentInputFontView.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD6891B1E4091C19B6C3B9435A6B420 /* FLEXArgumentInputFontView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7D74C1E76C060BE257D3FB59C0D1FB5D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 7D78519A67484DAEA430BC3363C2F959 /* FLEXNetworkCurlLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 653285F40C9C7E00DACCF5DC45AC0CCB /* FLEXNetworkCurlLogger.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7DD8012DF7B5FA58DB58D53B336516EC /* INTURequestIDGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 85C9466CE1AFC8FA88435FBD037844EB /* INTURequestIDGenerator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7DDDA3442D4330EBF7E7E3135F22C200 /* SBJson-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C34848C8DC5AB25B2E7DED0A0AF77E2 /* SBJson-dummy.m */; }; + 7EAF42389D0E71B1D1C7C316A96584AB /* NSFileWrapper+DTCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A8E9E813332D1E79D947F3122D5BE7 /* NSFileWrapper+DTCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7EE694385B6E4B37334BDFC416F5DB1B /* DTCoreTextFontCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = C7989389EF17A69905AA6ED38B1D60E2 /* DTCoreTextFontCollection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 7F2C28F659D3D8182EC02B3AA71257BA /* icon-info.png in Resources */ = {isa = PBXBuildFile; fileRef = D99070D6BC5AE08CE279ECD4F9825C2B /* icon-info.png */; }; + 7FB47A5F23A86AB5B46B79F3CE4198DA /* DTLinkButton.h in Headers */ = {isa = PBXBuildFile; fileRef = E54E46808BEE045D6570D56A1646728A /* DTLinkButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 806C21A7C6E61CFF69D639CAD77E714F /* IQCropSelectionEndView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC277DD0E1231F39F5D544C7A2B6A66E /* IQCropSelectionEndView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 80740B178754705B8DA52FCCC75330F6 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */; }; - 8075F2E2C46F4E28D747B7DB15A241A2 /* FLEXExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2443805EDF880CD16C8528CDAE0945BA /* FLEXExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 808977A8D5B1992FB19B6DE04FA831DE /* NSGIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6C7C96AECE08DBC3E2FE796A23B322 /* NSGIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 80B3EB3F2F78A7E4E5E13CBBAC256C28 /* FSAudioController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BED521576A0C8901D9BEB5DF5A753F0 /* FSAudioController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 80B510B62387AC9C83D193D2BB11655A /* FLEXRealmDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCF648B809F47D95DCA03CD3926E604 /* FLEXRealmDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80DB7EF96DEB378A215943DAC18496B5 /* FLEXSetExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B070DC87062CA61D73E56C9549E2F5E /* FLEXSetExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8136A80EA060125CBF119D6E44776086 /* DTHTMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 790BA790E4F44ACBDB0A88CE8668B587 /* DTHTMLParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 818DDA72ADA19210FF6689903AF5B885 /* FLEXArgumentInputColorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9908C2883AF7DCC2AC6E02405487FECD /* FLEXArgumentInputColorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81ABD534C6FBC1DF1294E3EF27FC70E4 /* NSString+DTUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D5592C9DCA8994EF739DEEE09669FC /* NSString+DTUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81DCB43BDF0DC0762DA10CA0A03C14BF /* NSDictionary+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 602C8A4FC0223BC6B50FC6D7EDD3032A /* NSDictionary+DTError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8075F2E2C46F4E28D747B7DB15A241A2 /* FLEXExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 887914737DA60A492BFA1EF6810853EB /* FLEXExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 808977A8D5B1992FB19B6DE04FA831DE /* NSGIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ECDC95EE4984C846F621D8F3288207 /* NSGIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80A4F4635885467FA896267AD5878461 /* SWCellScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = D57504275027323EC3ECD7BC2F4127F0 /* SWCellScrollView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 80B3EB3F2F78A7E4E5E13CBBAC256C28 /* FSAudioController.m in Sources */ = {isa = PBXBuildFile; fileRef = C32A32AD9DBF6D224A7F32549DD6141F /* FSAudioController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 80B510B62387AC9C83D193D2BB11655A /* FLEXRealmDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CCE8039F770F6070CA7EC0A3D6BE35 /* FLEXRealmDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D80E301887362254945ABB4A0DCA2E /* SBJson4StreamTokeniser.h in Headers */ = {isa = PBXBuildFile; fileRef = 774B8E8D3CD7AFD6AFCEBF41C10143E0 /* SBJson4StreamTokeniser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 80DB7EF96DEB378A215943DAC18496B5 /* FLEXSetExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DAB39AA1AF92144D3AE21A7F1DC2C50F /* FLEXSetExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8136A80EA060125CBF119D6E44776086 /* DTHTMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 946058C9292996D038C7D1186ADC96B1 /* DTHTMLParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 818DDA72ADA19210FF6689903AF5B885 /* FLEXArgumentInputColorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19322A89ED64434609B19ADB519A5D3C /* FLEXArgumentInputColorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81ABD534C6FBC1DF1294E3EF27FC70E4 /* NSString+DTUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AECEF65C6FE2CB7305D1CBF10116180 /* NSString+DTUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81DCB43BDF0DC0762DA10CA0A03C14BF /* NSDictionary+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0AC8B6B1DBAADEB0A1034798262DFD /* NSDictionary+DTError.h */; settings = {ATTRIBUTES = (Public, ); }; }; 81DED129747D290827713D3082817924 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA4037C6688497E1D9D900A30B9A9CFA /* CoreTelephony.framework */; }; - 823F4099209E259912B3ECD7671DD897 /* SWUtilityButtonTapGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FBBB622177929BCEB8DE6AD01F4FA5 /* SWUtilityButtonTapGestureRecognizer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 82B6E3BB000BCCB4672B18DE8FFA8D0D /* INTULocationRequestDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B2F3E108A6144615BB2FE0A1973243 /* INTULocationRequestDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8288AC666680EEF9A7BA448371D68A9B /* SBJson4StreamWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 40538D7A6C75856324C4D75AF6CF2F01 /* SBJson4StreamWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82B6E3BB000BCCB4672B18DE8FFA8D0D /* INTULocationRequestDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 78170FEADEDC8142342FA15AB3ECEE1B /* INTULocationRequestDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82CADD92D00B2824248BE05EC4FEF59F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; 82D554EC9FB9A62D935B6555325F5898 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */; }; - 85A96AFBBE8845453CEEDDB52DAE43FC /* NBMetadataCore.m in Sources */ = {isa = PBXBuildFile; fileRef = 07EC5431E7247BDD4BB15FE4A96D8AA2 /* NBMetadataCore.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 830DA1C4476EF7D046E4876AF3926EC9 /* Pods-Jasonette-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6575BDE2379F6A422495C23290149CD4 /* Pods-Jasonette-dummy.m */; }; + 849D51AFA2515521729B642546B4B5D5 /* SZTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B6CF89B88860049A7E466C497683A2E0 /* SZTextView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 85A96AFBBE8845453CEEDDB52DAE43FC /* NBMetadataCore.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E67A83BFA89BCD7CDEDD41A12CE9801 /* NBMetadataCore.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 869E0677E1844783785DD4D6FC03080C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; 86C11EDC710D9D5EE0584833105B9E53 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E70F4BD02D647CEE820CC65A4916D3E /* UIKit.framework */; }; - 87FDB917C99F0439DDC1D85ABB412081 /* FSParseRssPodcastFeedRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DFDDA8CC0E525F28BB94226673C5EF29 /* FSParseRssPodcastFeedRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 888B83D63E849AD0741E464EE91163DB /* DTAttributedTextContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B011FEBF6AA11BFB7319447EAB044BC /* DTAttributedTextContentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8893F121C984BABDEE75B064E0AA807E /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = E252D91E905FE8C0D7C180945B7DF4AA /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 88B9FE0552923ACEA335BB181D3C4A6F /* SWTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7C6704DA73D2DDBD920E4A4672AB08 /* SWTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 88F97157EC878D140F5D8AA6F5818736 /* http_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0C57A215863A760B22670AD1F09C3B /* http_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 891120B1D366E612E4E4652D85E01C75 /* file_output.h in Headers */ = {isa = PBXBuildFile; fileRef = 3735FBC4E804E40917EA59896D4F78CF /* file_output.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8921B962F49EADA7C697F9048FACC839 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; - 893E7753AF852DA3230132C3CCDA0EB1 /* FLEXInstancesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D63F115DB0CC73C61C2286AAEDA20C /* FLEXInstancesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 899992B5A6781C575D05CD230C70DCD9 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D9F5D5ED642958F3F18F0250A7B496F /* UIImageView+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 89E841CA80A543F6119B1BC8E8BC7019 /* SWUtilityButtonView.m in Sources */ = {isa = PBXBuildFile; fileRef = 62790314D504AA77213ABA7FDFCCD80F /* SWUtilityButtonView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8A09F4E2489820177E2791968CEDB7A7 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = FAF8F06C0A661799B747053260C6C36A /* SDWebImageDownloader.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8A4A98839FBA1A0EFDB6F2C666EAFCF6 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E51E2B41499156289712F0F5CB1FE4 /* AHKActionSheet.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8A4C0C03397E178078A9172937A87E15 /* DTTiledLayerWithoutFade.h in Headers */ = {isa = PBXBuildFile; fileRef = 32696122130095A973DCD39EEEB28226 /* DTTiledLayerWithoutFade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B29C9610A0596B4A1187D43CEC797B5 /* FLEXTableListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FC40571C470C456326DE286BB3D61C49 /* FLEXTableListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8DFA48EACF863055A4960030349C9C /* TWMessageBarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 761151C232859083642EACDDC74A9ACB /* TWMessageBarManager-dummy.m */; }; - 8BA97CA98A2066AA41B121BFF72A4A7C /* DTAnchorHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = FD939EDE1F0367DE02BF9CE5253E40BD /* DTAnchorHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8BD025D22693732DDDC2017EB6986561 /* AFOAuth2Manager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1516D56D294867909E2B2A56F41BC3DC /* AFOAuth2Manager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C556D94B0D5D3FC659C0C429D17B716 /* AHKActionSheet-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E86741A5D440F0D0B46888ACACC1C46 /* AHKActionSheet-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8CD7394B036E3CFD8C20D5B1DA9A4516 /* DTColor+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = BF39BC4989B54B773D3B2399670D27CA /* DTColor+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D177B33EF3C881412A597016990B133 /* ModuleXMLHttpRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DFEABE80C723ED025321FFB73A9A146D /* ModuleXMLHttpRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8D6AA1AC2CB4A9476910AA2BA344E445 /* APAddressBookContactsRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA5C80FE65A5CAD734774FC98CBC2F8 /* APAddressBookContactsRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8DADF7D1A1BDF1DF6325D538D644BCA0 /* FLEXKeyboardHelpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8C4857D613CDF3166E2557E5F35A72 /* FLEXKeyboardHelpViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 8EA0BB6AF0BCC93A7EA28541BAD9855E /* FLEXSystemLogTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E3D36E2483C3F1448A65E6E4EFF7DD /* FLEXSystemLogTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87FDB917C99F0439DDC1D85ABB412081 /* FSParseRssPodcastFeedRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5355AAAA4748D75B92930524796774 /* FSParseRssPodcastFeedRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 888B83D63E849AD0741E464EE91163DB /* DTAttributedTextContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F387A2409441008AA9F753581CB6F9 /* DTAttributedTextContentView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 88F97157EC878D140F5D8AA6F5818736 /* http_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = A58D196720F5DBAF68384456C8CC8545 /* http_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 891120B1D366E612E4E4652D85E01C75 /* file_output.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA0B1D9025BA909439CBCCBD49F7959 /* file_output.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 893E7753AF852DA3230132C3CCDA0EB1 /* FLEXInstancesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDEE2C96E5C4F6EAA360C363D5CAC5C /* FLEXInstancesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A4A98839FBA1A0EFDB6F2C666EAFCF6 /* AHKActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = F5271B6CED74CCFB9FCF54DC2C447BA3 /* AHKActionSheet.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8A4C0C03397E178078A9172937A87E15 /* DTTiledLayerWithoutFade.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD45870B056D89F67544C66E6EA8FCF /* DTTiledLayerWithoutFade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8AECA01A5ED01585243E84FD4B55DA02 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 8AEE0A247BBDF9D36C19529A0F592B89 /* TWMessageBarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4EA1F513266F2809CB2476652EBAC2 /* TWMessageBarManager-dummy.m */; }; + 8B29C9610A0596B4A1187D43CEC797B5 /* FLEXTableListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB83BB3A719175A8DCD8484371760F2 /* FLEXTableListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BA97CA98A2066AA41B121BFF72A4A7C /* DTAnchorHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = EF784C8380A2530002D939DF373AA72F /* DTAnchorHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8BD025D22693732DDDC2017EB6986561 /* AFOAuth2Manager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D42C560F8D879AC83E4CFC77B6EA387 /* AFOAuth2Manager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C46D8934EB9DDD78857BC6E6ED59D24 /* RECommonFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5AC0EBA89145E834FDD462E1E371946 /* RECommonFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C556D94B0D5D3FC659C0C429D17B716 /* AHKActionSheet-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 017F628317263E52AABBD26A3B49351B /* AHKActionSheet-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8CD7394B036E3CFD8C20D5B1DA9A4516 /* DTColor+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7803938136B6DC685CAD4311B52F8F /* DTColor+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D177B33EF3C881412A597016990B133 /* ModuleXMLHttpRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 2816EF34DFAAD096EFDD337040AB4DE2 /* ModuleXMLHttpRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8D6AA1AC2CB4A9476910AA2BA344E445 /* APAddressBookContactsRoutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 73038E606132697A47EE5EE7A5F165C4 /* APAddressBookContactsRoutine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8DADF7D1A1BDF1DF6325D538D644BCA0 /* FLEXKeyboardHelpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F4F1E521CF75EB733E9FEB43BE31C64 /* FLEXKeyboardHelpViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 8EA0BB6AF0BCC93A7EA28541BAD9855E /* FLEXSystemLogTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC68BDE25A50808775AFF04841A0881 /* FLEXSystemLogTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F98271A51657E5E5B1C00E72509C865 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 901209223BBC90DD84EBCFEB19A296BF /* NSAttributedString+SmallCaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 5821002FEE7E586AFC2C8B275701E2B8 /* NSAttributedString+SmallCaps.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 90105A2B9B527B12E66388C5CBEA5DCA /* TTTAttributedLabel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 83AAFE6A312701AD7746B5E0662C1D44 /* TTTAttributedLabel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 901209223BBC90DD84EBCFEB19A296BF /* NSAttributedString+SmallCaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE788C5004CDC426B5D3B407B9420C4 /* NSAttributedString+SmallCaps.h */; settings = {ATTRIBUTES = (Public, ); }; }; 90258CCA1F17AEEA1BB84E4CC205C616 /* DTFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DB2133ADBF385E5E0339A9ED19CB8B00 /* DTFoundation.framework */; }; - 904058C14D6B6C6A0CC4E99C62FF28AA /* DTAnimatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 80261FA1A228BFB45CCA5B911EF21E50 /* DTAnimatedGIF.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 905715B6AA3470E4DDADF025E9ACA78B /* FLEXClassExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A3645F04D3222A0E5FDD8F99718A1CB5 /* FLEXClassExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 906E8845ADCAA4FE366822AF24702A05 /* DTAttributedTextCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 98AB2AD162F93E42D476BD54B2595967 /* DTAttributedTextCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9125C4B46A541F4C814F3FF824F9F199 /* APContactListBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BFFE44F82EE76ADBE63BC430488E022 /* APContactListBuilder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 918F1678F16678E3DD6EE39F1F712613 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 904058C14D6B6C6A0CC4E99C62FF28AA /* DTAnimatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 85CD240D44B5586DB879C8E5AE2A218F /* DTAnimatedGIF.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 905715B6AA3470E4DDADF025E9ACA78B /* FLEXClassExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F973611268CF1E7B22E5C38A33B87B /* FLEXClassExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 906E8845ADCAA4FE366822AF24702A05 /* DTAttributedTextCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7930A212ECF1B513839B4A653787BF83 /* DTAttributedTextCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 90878E3F82D2F47845779CD26E4B3BD3 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + 90B2B25EB434729F9364E92DDC5B5C62 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7249FFC6D8551192D7D771C80C2158D1 /* ImageIO.framework */; }; + 9125C4B46A541F4C814F3FF824F9F199 /* APContactListBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E4FE1C7CF095483DBCE1A75448879DD /* APContactListBuilder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9190C4316EB6220D920C02B2E81B7028 /* SRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1056257729341D8053BB57A257C477CD /* SRWebSocket.h */; settings = {ATTRIBUTES = (Public, ); }; }; 91EA9D0D718470B4C3E5BDD39E2E9150 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E70F4BD02D647CEE820CC65A4916D3E /* UIKit.framework */; }; - 9220826427093086248150191A003F9D /* FLEXNetworkTransactionTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BCCCA3D6C578B3EF9CAC70727EBDBCA /* FLEXNetworkTransactionTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 922F6846D60C122510826FAE3FB7EE12 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B737DF2327EA9517E4809C357227AF9 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 925E01BB23A17E13B9A1BA76C02A8335 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA2AECF983D5FFC3CA773311BF56DF6 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9264BD69AFA8EE74F0D7F0EBD74F762F /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 447ED538E85A38EE946A55C5321B2BAC /* UIImage+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 929C6FF07EFEC013778866C4F76B0562 /* NSGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 5158D8F86C491A7F2899C1FCC59F23AD /* NSGIF.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 930DDF416B5AAA29152942CC7340D0B5 /* CYRTextStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D9957D73F530963C27878915A6C6363 /* CYRTextStorage.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9220826427093086248150191A003F9D /* FLEXNetworkTransactionTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F247FC3E3BC89DCBED105E31B570D9B7 /* FLEXNetworkTransactionTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9264BD69AFA8EE74F0D7F0EBD74F762F /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2971F57AE11B7EC3A05ED39C79AE811E /* UIImage+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 929C6FF07EFEC013778866C4F76B0562 /* NSGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 614E532273AE81EA05F95ABE1D5D5C5F /* NSGIF.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 930DDF416B5AAA29152942CC7340D0B5 /* CYRTextStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E7B0B7983F236ECA5E3E0C59E61097D /* CYRTextStorage.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; 9396A049E3CDB24CE8208655AC29824F /* SCSiriWaveformView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80011EC7C92D496AAA17BD49C6056DC2 /* SCSiriWaveformView.framework */; }; - 93DFC0CC12E763AE770017349EE009D1 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539B2AD1B7A2981A63164068A69D371 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 941075F8962D541141A7C1E14C7D8E36 /* libPhoneNumber-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57ADDD9E9288B4121285062A40F73485 /* libPhoneNumber-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 94202A4DCD07A470ECE0CA1EF1950849 /* NSMutableAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A65A55ED3E4DDB8B88E7221CA07C6FF /* NSMutableAttributedString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 948458DC0A9308A2D8C018C37FB7BBDD /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C12D2DB546FE642EDF610F81CEAE486 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 93DFC0CC12E763AE770017349EE009D1 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37329B40B95F972CA8023C5D3791C204 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 941075F8962D541141A7C1E14C7D8E36 /* libPhoneNumber-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F383B19C72795CE40C19266C6F243EF /* libPhoneNumber-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 94202A4DCD07A470ECE0CA1EF1950849 /* NSMutableAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0450C90F44CEC5ABF55E73D9F11780 /* NSMutableAttributedString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 948458DC0A9308A2D8C018C37FB7BBDD /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BE312C37C1F4805AA9F8C913502663 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; 94A37CBF1C348EED0E56D712B8B33E87 /* PHFDelegateChain.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 90DC89C62CF1601ADE854D29D947BE57 /* PHFDelegateChain.framework */; }; - 94AF51C3CA8891C70080332182BBB5D2 /* SZTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = ED16A76D3BFA8B13D40A88B9CCFF4234 /* SZTextView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9540D3F38ECC72481B5260FD844905C7 /* DTFoundationConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A166AB3AB553B1A9A763E0B34942641D /* DTFoundationConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 95448BE78C9165CA92280146D44C4CFC /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BB8978F6FAD7AA07B82DF26583562551 /* SDWebImagePrefetcher.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 95FC0FEF5ADF047CB051976738B67239 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F724259E2332AC82106B9FC1C00DE05 /* AFURLResponseSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9615FB95DC573FFC82298CD5E9DEA28A /* DTDictationPlaceholderTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = A113F09C004CF7677C6E4E197443D325 /* DTDictationPlaceholderTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9540D3F38ECC72481B5260FD844905C7 /* DTFoundationConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2342469369B33A0E418CFF3BAB58AB /* DTFoundationConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 95FC0FEF5ADF047CB051976738B67239 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1BC4738EF32F1448B2EC0E72D30DF5 /* AFURLResponseSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9615FB95DC573FFC82298CD5E9DEA28A /* DTDictationPlaceholderTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 8748E06B3E0F95B7ECF0D20ABCE1FFE7 /* DTDictationPlaceholderTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; 96176F8DF28106E08CFE507FCC0E75F5 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E660D0FC762BC034DB84AD775305493 /* AVFoundation.framework */; }; - 967078E113F1E051E7BA8F6E47BAD256 /* microphone_access@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 93D5A3B53B8A0AB694B41A89E063189C /* microphone_access@3x.png */; }; - 96C73A7EA2A3C06E2C51DE1491271929 /* UICKeyChainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B25C0CD0E371D63BB7ABB437B01F618D /* UICKeyChainStore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 976608C59E68F154710DC88B056E5AFD /* FLEXNetworkTransactionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E993EB7E00A1892216ABC551DDAAB85 /* FLEXNetworkTransactionTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 97D36B66681871743081A949E7545D88 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 986B417FF4B94DBF2D059BC7986F6B10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - 99762194FDE835E1B93B7A7B50622C64 /* FLEXResources.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9F3C82D03331B4C192DA746E7A2742 /* FLEXResources.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9991A7D72582B6C80C062D1F350FBF1F /* SZTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 22BBABF4BA9E865B7E484B6E5A02BAEB /* SZTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 99DBE14AE2AFB7BBA510106137953F52 /* FLEXGlobalsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 46202626F5BDBCDC3FBBC7C8887CF65D /* FLEXGlobalsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 99F1B0FF15AE380CB88B87ABE74C83BB /* DHSmartScreenshot-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DEB3EC1A514A50F3A3170E32CFA587E /* DHSmartScreenshot-dummy.m */; }; - 9A36D3E8ECE2100A5BEC37E6DFEE6AD9 /* DTActivityTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB2EBB75476B791A0FB3BE34111B8CD /* DTActivityTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9AA23906978E0AD36164F55788789307 /* APSocialProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = AE2A51A3015859B77CBD673405D87A80 /* APSocialProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9BD036E835F62427EB361C20AC91D19D /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 33F4EB50E96AB2F8DC4CD05CF183CE31 /* UIView+WebCacheOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9C3FDF92F4F5B8B870E7BB0EBE367678 /* AFOAuth2Manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BCCECF810CA5117F18A62479460DA37 /* AFOAuth2Manager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9C6024AE9669369D7BE5A6BDF6D424AF /* FLEXNetworkHistoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E20C30B10ADE4C0D69C1419A16C6F0FC /* FLEXNetworkHistoryTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9C640710F98A537C95D11B1F38878881 /* FLEXTableLeftCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A533E4359D276C4C49321014528217 /* FLEXTableLeftCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C9BBB59635D9127D4E75BB2ADC3B198 /* REMenuContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3EA78277FB608C3B23DD125741673D /* REMenuContainerView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9CADA94AAC77FB1DB6C15B7D839BD083 /* DTCoreTextParagraphStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219654C0241A06534B3F96160D1D385 /* DTCoreTextParagraphStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9CE3D6D9FAA6848A9D8E8893E1EE4E52 /* DTDictationPlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 949FCF4810A5441478133475CFB1A517 /* DTDictationPlaceholderView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9CFA1A7612C8061C5939C6A94F8C3A02 /* libPhoneNumber-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD0DBDBCF2306C67A80BCA834E26BF60 /* libPhoneNumber-iOS-dummy.m */; }; - 9D1CAC997625F35DD21368448151A8E5 /* NSURL+DTUnshorten.m in Sources */ = {isa = PBXBuildFile; fileRef = 40793C347206023D01ED731815ED809B /* NSURL+DTUnshorten.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9D2E7A9B318E5637E0D2E68495A6CC2F /* UIWebView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA9E42A57EB6354F419BA5EFB8F2CC2 /* UIWebView+DTFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9DBD6B1C60F8F12C96BB8AB8C01670C1 /* FSPlaylistItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C6D986F663250767FAA1395B17DECF9 /* FSPlaylistItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9DE365167517CD9817BD3D18F1077F99 /* NSAttributedString+DTDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B61BCA965C8112291518550A425E53 /* NSAttributedString+DTDebug.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9DE7E79D8E5F3F8DFEE56E60754F493C /* DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 7549A74B8B08B27B68A034AEDAA4BF35 /* DTCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E087A5B325769F8BB0C6D71FA3480A8 /* FLEXArrayExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C5CD375E3DF45C2762A403F0FA2B76 /* FLEXArrayExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E66CE327EBDAE1AC4A5451F1CEFDA8E /* NSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 04D7FCA56D9DBBFCA31D8B8876ADDB75 /* NSString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9F25FD5A0237A5AC802C9A1B6A8643D2 /* scissor@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 860C9A20BC4538FDC56921F22E23764F /* scissor@3x.png */; }; - 9F3C53892F8DEFDE0A8D7E5F9F8A66EC /* DTFolderMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C920F926A3E5B948F3303C2FDE2631F /* DTFolderMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F7AF96C9E86AE680FA9D29CC0D1C2D6 /* PHFComposeBarView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82DDADAFC8FF296BB4404E78C0C2176B /* PHFComposeBarView-dummy.m */; }; - 9F92A19CB2F84E01364786D785293C18 /* APContact.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2C4A62DFAE43089712370F411B26AF /* APContact.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9FB63C79C8E6BE91DD3317C0E23A2767 /* NSMutableArray+DTMoving.m in Sources */ = {isa = PBXBuildFile; fileRef = DAEF91E938ADAAF9846D30476713EF80 /* NSMutableArray+DTMoving.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 9FEB92FB8E9DE39B43F4DB466A33B658 /* REMenuItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = F5C87263FE74B0C2FB6E9753E965C680 /* REMenuItemView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A07B16CDBE6D4AD147BE56990218DFAC /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 080E2B037A44BC16B4F78781D1BA4A09 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1030718F051B0A57061725085A3BD36 /* audio_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C17576B80AFB56F5205F58DF83591155 /* audio_queue.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 967078E113F1E051E7BA8F6E47BAD256 /* microphone_access@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F60AF1CB36F20C08FA23C1E8CEFB7830 /* microphone_access@3x.png */; }; + 976608C59E68F154710DC88B056E5AFD /* FLEXNetworkTransactionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F91D4BF82608B4FAA444A52314BE47C8 /* FLEXNetworkTransactionTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 976EE5EDE4D7FEC4C1ABEAA4CB0C04C1 /* LTHPasscodeViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 779195A58E69B6ED4A0C9DADC30EA7FD /* LTHPasscodeViewController-dummy.m */; }; + 97CA809BF014ED935D8C26B16B52C445 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + 99762194FDE835E1B93B7A7B50622C64 /* FLEXResources.h in Headers */ = {isa = PBXBuildFile; fileRef = 2412B5809F25CF3B3CB590666E1B579B /* FLEXResources.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99DBE14AE2AFB7BBA510106137953F52 /* FLEXGlobalsTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F1B15F0B3C2C70E94DD9B2080CF9BD /* FLEXGlobalsTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 99F1B0FF15AE380CB88B87ABE74C83BB /* DHSmartScreenshot-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE10D61E5F491F48E2316DC3E3DE6250 /* DHSmartScreenshot-dummy.m */; }; + 9A36D3E8ECE2100A5BEC37E6DFEE6AD9 /* DTActivityTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9D9CFC3B3A6FDC6209D798B16F3807 /* DTActivityTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9AA23906978E0AD36164F55788789307 /* APSocialProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6CC0895E4CCE79698FCD4BB3BA70DF /* APSocialProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C3FDF92F4F5B8B870E7BB0EBE367678 /* AFOAuth2Manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2332B1A108E631336028CCF4F04484 /* AFOAuth2Manager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C6024AE9669369D7BE5A6BDF6D424AF /* FLEXNetworkHistoryTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FFB23751BF316320B574D1556D3E7385 /* FLEXNetworkHistoryTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9C640710F98A537C95D11B1F38878881 /* FLEXTableLeftCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9581EE899DBBE94740919AEEB6BD5341 /* FLEXTableLeftCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CADA94AAC77FB1DB6C15B7D839BD083 /* DTCoreTextParagraphStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = D5D71247BB72FD7A6DAEF443ED651FA5 /* DTCoreTextParagraphStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9CE3D6D9FAA6848A9D8E8893E1EE4E52 /* DTDictationPlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = BFEA87D40F82C0D96032B1D5D3D5FB60 /* DTDictationPlaceholderView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9CFA1A7612C8061C5939C6A94F8C3A02 /* libPhoneNumber-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 685BCAADB43947AE22DD9F31C42F9C24 /* libPhoneNumber-iOS-dummy.m */; }; + 9D1CAC997625F35DD21368448151A8E5 /* NSURL+DTUnshorten.m in Sources */ = {isa = PBXBuildFile; fileRef = 6220458DB827C9E4FD6BBD74C2B424D0 /* NSURL+DTUnshorten.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9D2E7A9B318E5637E0D2E68495A6CC2F /* UIWebView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = F32C527988899CB267DA1EFED016A6DA /* UIWebView+DTFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9DBD6B1C60F8F12C96BB8AB8C01670C1 /* FSPlaylistItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A12BFE1595EC99B04A036CF63C57757 /* FSPlaylistItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9DE365167517CD9817BD3D18F1077F99 /* NSAttributedString+DTDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 91F015A443603C8BD96BF6847A8D1DB6 /* NSAttributedString+DTDebug.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9DE7E79D8E5F3F8DFEE56E60754F493C /* DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5196D76F66EAA1348488180E0BE0D355 /* DTCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E087A5B325769F8BB0C6D71FA3480A8 /* FLEXArrayExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8C785533292F63211C1D52D42F36D3 /* FLEXArrayExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E66CE327EBDAE1AC4A5451F1CEFDA8E /* NSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 69ED8497AFF3ECFCCEAE4DA08F7E47B2 /* NSString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 9F25FD5A0237A5AC802C9A1B6A8643D2 /* scissor@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = E84301DE95218891F103B59C0D7BC095 /* scissor@3x.png */; }; + 9F3C53892F8DEFDE0A8D7E5F9F8A66EC /* DTFolderMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 49F6B1094D831985642788CD743EB123 /* DTFolderMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F7AF96C9E86AE680FA9D29CC0D1C2D6 /* PHFComposeBarView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA016541B294EBBAC0E00265B46FD94C /* PHFComposeBarView-dummy.m */; }; + 9F92A19CB2F84E01364786D785293C18 /* APContact.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBCDC6CB3508A350B3A6136CC530D1D /* APContact.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9FB63C79C8E6BE91DD3317C0E23A2767 /* NSMutableArray+DTMoving.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1006944B9811BFE73CDD8019C59AD0 /* NSMutableArray+DTMoving.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A09C426E046C9B684E85012C1C7A5D0F /* SWFrameButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C0BAAF100AE61EF2CA5BB366FE577ABB /* SWFrameButton.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A1030718F051B0A57061725085A3BD36 /* audio_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB86532860DE763E8109799DDB361133 /* audio_queue.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A135185D5057848FE7E6DF9253C3702D /* SWUtilityButtonView.m in Sources */ = {isa = PBXBuildFile; fileRef = B73D44FE9039C758BD80FA8925FCDC3D /* SWUtilityButtonView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A16DA5AB80010779E7B4FAAD7C2C5E6C /* AddressBook.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DE2598C6185BC3CA3370A88D23EF122A /* AddressBook.framework */; }; - A250CBA9909B1EDEE032DC20C3D19556 /* microphone_access@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D11FA20BFA8610CCF8A537429554CC86 /* microphone_access@2x.png */; }; - A2B597DB631F3DF5518301523090AA9A /* FLEXArgumentInputNotSupportedView.m in Sources */ = {isa = PBXBuildFile; fileRef = EC2E29A9B88B9164411BC9F3311DDD98 /* FLEXArgumentInputNotSupportedView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A30DBA1A6125D13AF1D1876736FDF184 /* scissor.png in Resources */ = {isa = PBXBuildFile; fileRef = FC0FD956DE6EA3F6C4DE1857C27E5342 /* scissor.png */; }; - A311C4CBC6C713D382338D8726AF20E9 /* DTHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = F9502D6A65C237C3304C64BCFAA141F4 /* DTHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3512AF07A06D3A26E75FE4546028C4D /* CYRToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 752C64C337DBBD830798C607B92F0B50 /* CYRToken.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A401C3D070EF32BA359C8CC2A6271202 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF013AD7640EB2FF5D1FDBED5564A57 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A44108376779749C096B2C17B53F2EE1 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 28CC6A8E28E2D09E4300719432A4A3A3 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A448AD2E7B7F771F9B4302511437E535 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 34747BC19DBFD60C90B347005AB40E37 /* AFNetworking-dummy.m */; }; - A4A2869D496104B5B09771F232675098 /* DTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B81BE510630E83E475AD13A6143D6C /* DTVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4FA4D70E8D495839ABFEEA3C70C475C /* FSXMLHttpRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3062D16346CDAE15D35B8012329D67CB /* FSXMLHttpRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A5BA97B6663E0DEC4BC319D5006103D9 /* APContact.m in Sources */ = {isa = PBXBuildFile; fileRef = BDECB11C73953FB549645DDED31B9F80 /* APContact.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A5BF8DBDD8660DBCFE712657F3D82BDA /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 006F5DF90D73F11F20B7C011D013B0FF /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A5EFF4B19019591BBB0706757D907846 /* APContactDataExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B15EEDF65C3D355BEA47A992A486FE3 /* APContactDataExtractor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A5FA59E343B243E33993A1E85FE2F9CB /* audio_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F16E57C4E1C94A93877457E946A650 /* audio_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A61E800FDBE44BB8FFE7F39364D6C629 /* SBJson4StreamWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = C3B1AE78637D96133F130F3A87E71AEC /* SBJson4StreamWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A6427EE65085A6CF89C2D863DDD6B1B6 /* scissor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 48544A42A4857102CA2541266B0A7C4F /* scissor@2x.png */; }; - A6F0933514ABDC14883029B5BCD6A67F /* NBPhoneMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 31F3B9FF5424017C8218AA10CAF07A4E /* NBPhoneMetaData.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A72CD2F95161365F57AB9E2E472E271A /* FLEXArgumentInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0801ADB89B345B644083E3F5DA27F0E /* FLEXArgumentInputView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A737BA6394A41F05669EB1C17E99B94E /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E80D88F50972E97CB6E2A8F5DA924AE /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A7C8143BB360735FF7EEEC8CB79F69BD /* DTHTMLParserNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DD25DC2EEF262DCA8E74A80B7F5FBC3E /* DTHTMLParserNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A7CEDE2469902E34184EF21A61FCE1F2 /* FLEXDefaultEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 038C048AEC1AC881BD6542FDA576CCD6 /* FLEXDefaultEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8233D6F611F72F1C15660C568EE60CB /* NSString+DTURLEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = D4F68511D11A65C87E86D6CD4F19FFC5 /* NSString+DTURLEncoding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A85350B0BA76D0BABD5D906659408B4E /* FLEXDefaultsExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88781EB58D181337E5CEDDF001A85903 /* FLEXDefaultsExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A21E2CD42E2045908C65C560C921AB52 /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFD87795E62A3C63B63548D1C19ABDD /* SDWebImageDecoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A250CBA9909B1EDEE032DC20C3D19556 /* microphone_access@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0C6218A4CDA1B7FBFE4E1507FD1BF471 /* microphone_access@2x.png */; }; + A2B597DB631F3DF5518301523090AA9A /* FLEXArgumentInputNotSupportedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 593DC7FCD1632C8F7B3D7CBC367DC5DE /* FLEXArgumentInputNotSupportedView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A30DBA1A6125D13AF1D1876736FDF184 /* scissor.png in Resources */ = {isa = PBXBuildFile; fileRef = EF1663BDEE873A9D59EDA97E20EC3858 /* scissor.png */; }; + A311C4CBC6C713D382338D8726AF20E9 /* DTHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA1AF59165F92A9EB2A768ED90BC11C /* DTHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3512AF07A06D3A26E75FE4546028C4D /* CYRToken.m in Sources */ = {isa = PBXBuildFile; fileRef = E229D947F90783F93B55BE665D4E939D /* CYRToken.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A41CF4B9B7815AF912E280A8E4623F24 /* REMenuItemView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2A8055F721F91735290112D1A4918A /* REMenuItemView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A448AD2E7B7F771F9B4302511437E535 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFAAE2270285D5E03C9B0CFB801978A6 /* AFNetworking-dummy.m */; }; + A4A2869D496104B5B09771F232675098 /* DTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9C02A41A97CF56338A18248AEC04DC /* DTVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A4FA4D70E8D495839ABFEEA3C70C475C /* FSXMLHttpRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E7F5A31FB209E5663F183CE9327C389 /* FSXMLHttpRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A5BA97B6663E0DEC4BC319D5006103D9 /* APContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DA4876D4B7F207A38AC762A2DBF526F /* APContact.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A5BF8DBDD8660DBCFE712657F3D82BDA /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = A50E6DF25B2F8E041D83086B3F9F8EEA /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A5EFF4B19019591BBB0706757D907846 /* APContactDataExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = 55DC1E074695630DFE328A922DFEFF65 /* APContactDataExtractor.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A5FA59E343B243E33993A1E85FE2F9CB /* audio_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E4A93F4F0AA6B85A3937E9ECEB5A69 /* audio_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A617597EDF40F39DABDB74F005677308 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E411588639259E7495BF1D18800ACC9 /* SDWebImageCompat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A6427EE65085A6CF89C2D863DDD6B1B6 /* scissor@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0DE792381F1478293331396A5487E1FD /* scissor@2x.png */; }; + A6B8908C4AAE85FEFE0B9A96F97BE339 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FAEBB2DF09EDB2D825312977565370D /* SDWebImage-dummy.m */; }; + A6F0933514ABDC14883029B5BCD6A67F /* NBPhoneMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = B02815F7F6CF3FA1C35A346B1DD2161D /* NBPhoneMetaData.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A72CD2F95161365F57AB9E2E472E271A /* FLEXArgumentInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8395C75BE17899A8AF1DD1CDC2033D66 /* FLEXArgumentInputView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A737BA6394A41F05669EB1C17E99B94E /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ABBEC10375556DB8696C376DD6915FD /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A7C8143BB360735FF7EEEC8CB79F69BD /* DTHTMLParserNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 146C205745CA0ABD5D476BF3250E9A5D /* DTHTMLParserNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A7CEDE2469902E34184EF21A61FCE1F2 /* FLEXDefaultEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D895A820291F395F944E322D490311E7 /* FLEXDefaultEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8233D6F611F72F1C15660C568EE60CB /* NSString+DTURLEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = C85B58040FF1A3C299D45633E045B867 /* NSString+DTURLEncoding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A85350B0BA76D0BABD5D906659408B4E /* FLEXDefaultsExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AF9FE01ACA5A093039231DCE8B0325E2 /* FLEXDefaultsExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; A8C297643282E0CF5E7DF9CB6E23A0D4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - A8E3988526CA2542FAA7779FE3937A5E /* IQMessageDisplayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 287CD09B15EFB5F954E425912E5CF073 /* IQMessageDisplayView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - A9A41F5F9583DBD284B30C29F06F4339 /* NSGIF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 291990B570B209965538F3530C8A9241 /* NSGIF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9BBA058D9732AC59A7377152E719112 /* IQCropSelectionBeginView.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC70A5FF767A0C4CAFE37F7667BF684 /* IQCropSelectionBeginView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA04EFEFC62E28F4750FFAD882067526 /* UIView+DHSmartScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 58E8D05FA902E7375941CBB53982E09E /* UIView+DHSmartScreenshot.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - AA189D54C7ABA6CFEB23BA7C66453A6F /* FLEXFileBrowserSearchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 54017649935CDCA84B98680821423DF0 /* FLEXFileBrowserSearchOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - AA368AA5CCADA8595BA6633FA73461AB /* SBJson4Parser.m in Sources */ = {isa = PBXBuildFile; fileRef = A36C1B435B31C47A8F7343B0C44D8790 /* SBJson4Parser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - AB5B7AFFECB8E63F2F4789836285C5A5 /* APImageExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C1A4BA29BFAA2788C9B3CD07E8DACD /* APImageExtractor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ABF588D189D600B29C4D382503498258 /* UIFont+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8BDD174D97C75E751A93105DB96A98 /* UIFont+DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AD12A083845A20CFFF0F3B51FF054E64 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C3B508E8776DD92B702C42B11FCCDAA /* UIImage+GIF.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - ADCE38A21676A52A126F18A1DB656678 /* PHFDelegateChain-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8AF818756769A4486EDB190FC315E3D /* PHFDelegateChain-dummy.m */; }; - ADE3A37F6C56EBC552E7CF6B5AF81A5D /* DTCoreTextFontCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1641FD8BEFD082B0968380956D839205 /* DTCoreTextFontCollection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AE976B0E8E3DD81E4F49DBEF19D3C0AD /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC48019E000E5DD480ADCD47F8A9033 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AEB69BBDDDA09981D715289AC0C5E7BA /* FLEXNetworkHistoryTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 655F02821609FC8C218546881BD8DF71 /* FLEXNetworkHistoryTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB9B9BA3A7D9349967DDD27B1AB5955 /* APAddressBookRefWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C371E3BF8CF202640B1FAA7FAFE95E /* APAddressBookRefWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A8E3988526CA2542FAA7779FE3937A5E /* IQMessageDisplayView.m in Sources */ = {isa = PBXBuildFile; fileRef = C924AA1E3318EE8179F3548ADA891EB1 /* IQMessageDisplayView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + A9A41F5F9583DBD284B30C29F06F4339 /* NSGIF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 695E80B1F8540EB5CA8C8C9429B3D62C /* NSGIF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9BBA058D9732AC59A7377152E719112 /* IQCropSelectionBeginView.h in Headers */ = {isa = PBXBuildFile; fileRef = F0ADA995936E9372F536C0626C973B1A /* IQCropSelectionBeginView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9EE6534D0419921E4C64FC841097415 /* LTHKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 407D69B8F0ADF34158F3680F80F76428 /* LTHKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA04EFEFC62E28F4750FFAD882067526 /* UIView+DHSmartScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 03767F1B5F097DAC8A2F5AC395E71857 /* UIView+DHSmartScreenshot.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AA189D54C7ABA6CFEB23BA7C66453A6F /* FLEXFileBrowserSearchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 25CC555EEB5CC998F5E85498B017F9F1 /* FLEXFileBrowserSearchOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AB5B7AFFECB8E63F2F4789836285C5A5 /* APImageExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9870EF3654C1FC1D5B117FAE0EE223F6 /* APImageExtractor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AB8EA441097323BD16A1D7FC46BCB963 /* RMActionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6271826907CD8597A4FDB9CA56887C4C /* RMActionController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ABF588D189D600B29C4D382503498258 /* UIFont+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = FF35FD574461FBEB569EB1DA54C2616B /* UIFont+DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC074D06A417910C66E52A491B1AB2F3 /* SWFrameButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B45281E3C47C5608A016CE831931C6C /* SWFrameButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ADCE38A21676A52A126F18A1DB656678 /* PHFDelegateChain-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A83526F10D8CE6C3016D8FCB1BC6D618 /* PHFDelegateChain-dummy.m */; }; + ADE3A37F6C56EBC552E7CF6B5AF81A5D /* DTCoreTextFontCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDA00C2B3F5938061F0DF4AAAC3233E /* DTCoreTextFontCollection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ADE7624F752646F9C3A069D92DCA357F /* TDOAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F10C9D2B7AE2B13FD1823A4357B03E /* TDOAuth.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + AE0573EA62615219866D4B11631C03A4 /* SBJson-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD6B3E6404FB83FD02B77D944AB0F1F /* SBJson-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AE976B0E8E3DD81E4F49DBEF19D3C0AD /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED3A91A60864A8FBC865360BA4D036AC /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AEB69BBDDDA09981D715289AC0C5E7BA /* FLEXNetworkHistoryTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A25808084A6644EC16E9824F43531450 /* FLEXNetworkHistoryTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB9B9BA3A7D9349967DDD27B1AB5955 /* APAddressBookRefWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C51BD85D38D34971F30C792EAC79B4B /* APAddressBookRefWrapper.h */; settings = {ATTRIBUTES = (Public, ); }; }; AFBA4A5EBE2519265805AF7AFF0357E9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - B0C93F4B90F9602EB60E6B7D2D6A029F /* FLEXArgumentInputTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CB3A507418738284E3A12E18AFCF8D /* FLEXArgumentInputTextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B199B092C62C636584720EB8DF1FD14E /* DTCoreTextLayoutLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B39054E39C64AA60D4B973796F732FB /* DTCoreTextLayoutLine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B1A31E8C15FFF3F6DB32C814BBF8E128 /* NSURL+DTAppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = EE03B2CE21F2452A7DCF2A7871C57946 /* NSURL+DTAppLinks.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B2690F06A5310E996A29B34F9E49E5C4 /* FLEX.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5632286EF0DF48ECD3EEEF2DC2B136 /* FLEX.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B290052D86D823B8F42E979D37952286 /* IQCropSelectionEndView.m in Sources */ = {isa = PBXBuildFile; fileRef = A25B0F17B3E27C10356E64026A3CC271 /* IQCropSelectionEndView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B32F3F8131ACFDA19AC00ABB0026FAB9 /* REMenu-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE853E2E2BECEA6223E91987D0233B0 /* REMenu-dummy.m */; }; - B336C4AE1FF8AFBD8AE0125B3A97A4F2 /* NSAttributedStringRunDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C75C23F252BB51915F65B3ECF70673 /* NSAttributedStringRunDelegates.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B3453214BCD691A143BD876A0F92D4D5 /* FLEXHeapEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 07E887CCADBD65BDE9E6F3376E81E059 /* FLEXHeapEnumerator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B346148E4D7CD0AB447185D0B2082427 /* UICKeyChainStore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B176ED3E240D0EF491F6BB2BCE9FB83 /* UICKeyChainStore-dummy.m */; }; - B368BF8DBE9CBAF219211F6C5DD430A7 /* FLEXObjectExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B0C0364CFC950480692EA8C206E5B5 /* FLEXObjectExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38386E32527BC54F0F1910B08451130 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - B3DEB634D7C007A59E05E7EC2F54D25F /* DTHTMLAttributedStringBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = B274C31A7B2573DB7031CD38514336CE /* DTHTMLAttributedStringBuilder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B4B366D66910D32027B6539E46AC4CD2 /* NBPhoneNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = D737E023EF64263717C5A50BF1340BB4 /* NBPhoneNumber.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B5CC5E03872FB7DA558F7F955226A28B /* FLEXIvarEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2E5F0948E406A01AAB2D55A4074808 /* FLEXIvarEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B5E8E6EE27FDB91A391CF38BC9F027E0 /* stream_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 12156D6239503B7873705ADBF2CC3E76 /* stream_configuration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5FE131F321940182C7DD70CB28BA9C3 /* NBAsYouTypeFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5ABD14A5414F115624EF5A59DD7797 /* NBAsYouTypeFormatter.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B69FEE6B6EF4C27FAEC2F5146DE271D1 /* OMGHTTPURLRQ.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3581C5E67C77A561CB90131ED590FDDE /* OMGHTTPURLRQ.framework */; }; - B6C190F940BF9B8BBD259A2E1D8B74A7 /* CYRTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E301D6FA8206483FBE37A60EB3DD322 /* CYRTextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B6F4E976A408C35922AFF587EDA668B3 /* DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = B1FED6BB32FCF22B7581089F2F79F96F /* DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B70F5D6FB2D91148F24B9444A75FA03F /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 513F8204794C408B71A330CC932C42A6 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7779EA5B6752543CDEBC3C529020765 /* DTWebVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC3DC8142C82EC1902F80935457E8606 /* DTWebVideoView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B82E5F92C6C2C65F88EB02617FB7F66C /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AA7C43FA138C28D6378B41B95B04F1 /* AFSecurityPolicy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B8E616C1F51B7175C7F6CE6A476C94EB /* DTHorizontalRuleHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E45EF6468A60DE19611B6C058E7006 /* DTHorizontalRuleHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - B8EDDD3A894C1A9E1B2D492B77EC75A3 /* DTHTMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B696F41FB9785CAAAD89F2F9CD37ECC1 /* DTHTMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B8FCF87620600A7A6CE45858E0FA8B67 /* SCSiriWaveformView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4719FAA71CC6413C284B31F9255DCB4D /* SCSiriWaveformView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BA040AFE00D4326C792ABACD02DF09B3 /* FLEXImageExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA172E19DB62263A44ACE13AFA3A5E7 /* FLEXImageExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAE6605D58B299BCB52987D06BC20A77 /* NSCoder+DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A076248B1B018C677DF241DBE2E362A /* NSCoder+DTCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BAF13783D3245B8C6589DF2528A2B814 /* FLEXNetworkCurlLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 51AD72C9A8E248687FC0C8A4594E0D63 /* FLEXNetworkCurlLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB183DAA3D89AB9B8625D6E0B33650D5 /* audio_record@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D176B9354BBD8E31B2615D8CAF24DE74 /* audio_record@2x.png */; }; - BB9F81836E9CA3AD1AABF5C2C0B92730 /* ModuleConsole.m in Sources */ = {isa = PBXBuildFile; fileRef = 5583539C417F6E02604380624B1BEA32 /* ModuleConsole.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - BBF87C58D5418DFF2E6D4617A9C649AD /* DTCoreTextFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3783E61F3D435370A7D4BDA41C068FD6 /* DTCoreTextFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - BC28FB8DD8A4789951A10FE09BBD6100 /* DTBlockFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A34E81852250302A3D95AB0F21A921 /* DTBlockFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BCFD6C8B36141E04955DE7981F7002E6 /* NSMutableAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D43754D9C3D62AA088AD266E9F399A4 /* NSMutableAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - BD05EAF4B5549828E8269943F44C9EC8 /* FLEXFileBrowserFileOperationController.h in Headers */ = {isa = PBXBuildFile; fileRef = A04ADC4767E3537C02787EB2A3B24646 /* FLEXFileBrowserFileOperationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD376D4ED0C8C444CB2E37F1E7211032 /* FLEXKeyboardHelpViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FB38B98E0E47111227A8C1AA9AE811E5 /* FLEXKeyboardHelpViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD38E4BFB747A6ED1EDF8BC9D870A73F /* FLEXRuntimeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 00CD0096163303089090DBCEBA18B2EB /* FLEXRuntimeUtility.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - BE0D6FE1AE27D1EEDD95E45F95DF6C79 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C29FCFB3EE19158EBE4F401178AC6F /* MBProgressHUD-dummy.m */; }; - BE2F810CBBEDE7A8D147D4E003C6D79A /* FLEXClassesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AA3AC5A375E2B7A50D09AA46CD8F6606 /* FLEXClassesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - BE5F6238062316F9C5B4F7AD0064E473 /* DTCoreGraphicsUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C710805DB94E421BDC317F8F9CD074 /* DTCoreGraphicsUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BE98EA7E3012D9F4F859CC68D5E822FE /* FLEXArgumentInputViewFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D138290D079884AC1321047B95FB2134 /* FLEXArgumentInputViewFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEDC24FE35DAFC844418C626E9118C21 /* APContactListBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B873B0F8D8D52937679CE9604C49F7F /* APContactListBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF9F1A550620CE89194B39CD775102C2 /* FLEXMultilineTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9427F100A5F5ED2DD047E0FEB98B1628 /* FLEXMultilineTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFAF112E18E79A032EAB55130295A352 /* DTListItemHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = FF881926730C6DD9D8F4948FDB6D33FF /* DTListItemHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B04666DB90316E2E0634ADB3749B1425 /* RMActionController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8C7313F87C5C66F2F6B617ADB45A99 /* RMActionController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B0C93F4B90F9602EB60E6B7D2D6A029F /* FLEXArgumentInputTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 05BA6862886699895DF0966C744DDF6A /* FLEXArgumentInputTextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B139168B7F195BFF73C329D9599E5A56 /* SWLongPressGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB0D13D52566E1F13D5D9BE60E81396 /* SWLongPressGestureRecognizer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B199B092C62C636584720EB8DF1FD14E /* DTCoreTextLayoutLine.h in Headers */ = {isa = PBXBuildFile; fileRef = A04749A01AC511C442A1769FC21933BA /* DTCoreTextLayoutLine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B1A31E8C15FFF3F6DB32C814BBF8E128 /* NSURL+DTAppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DE67AAE6CA02C21501C110C207929E0 /* NSURL+DTAppLinks.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B22EA24DC1DB2B7354A70C90D93E995B /* REMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D6ECB224FE365BD811DF49436D9FC30 /* REMenu.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B2690F06A5310E996A29B34F9E49E5C4 /* FLEX.h in Headers */ = {isa = PBXBuildFile; fileRef = 0261F142359AF289F8D0B1CC57E85295 /* FLEX.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B290052D86D823B8F42E979D37952286 /* IQCropSelectionEndView.m in Sources */ = {isa = PBXBuildFile; fileRef = 378DFD4B9D7DA2F44BC1E8DC74D52B9F /* IQCropSelectionEndView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B336C4AE1FF8AFBD8AE0125B3A97A4F2 /* NSAttributedStringRunDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = AFEFCACBAAFFCDB3AE6FFCD94D090DEE /* NSAttributedStringRunDelegates.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B3453214BCD691A143BD876A0F92D4D5 /* FLEXHeapEnumerator.m in Sources */ = {isa = PBXBuildFile; fileRef = F9B03EBC7B36FF31130876471B531990 /* FLEXHeapEnumerator.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B368BF8DBE9CBAF219211F6C5DD430A7 /* FLEXObjectExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8D316585560DC5BF78ABE05F947720 /* FLEXObjectExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3DEB634D7C007A59E05E7EC2F54D25F /* DTHTMLAttributedStringBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = C465D2D044E842C8A8CFE39C7D362341 /* DTHTMLAttributedStringBuilder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B4B366D66910D32027B6539E46AC4CD2 /* NBPhoneNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = B09FD1C44FD802E4FD7617353516B993 /* NBPhoneNumber.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B5CC5E03872FB7DA558F7F955226A28B /* FLEXIvarEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F79736AAD733083A330A63AF2AB3ACD2 /* FLEXIvarEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B5E8E6EE27FDB91A391CF38BC9F027E0 /* stream_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 95FA2208AC56495688FCFE1CA4732A55 /* stream_configuration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5FE131F321940182C7DD70CB28BA9C3 /* NBAsYouTypeFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1B9F1C95313C9A6FC1C2DAE3905768 /* NBAsYouTypeFormatter.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B6245C420FE220D6A515C69E1386F439 /* REMenuContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D696F13E4BDEBD206521DF6A96FB22 /* REMenuContainerView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B6C190F940BF9B8BBD259A2E1D8B74A7 /* CYRTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A31B3338004710E27213878EF23B1C /* CYRTextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B6F4E976A408C35922AFF587EDA668B3 /* DHSmartScreenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = FE8D90DE6B2B11B29511B3D835D1C7D8 /* DHSmartScreenshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B70F5D6FB2D91148F24B9444A75FA03F /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = C5529B74BC127EA6F50D55556020316A /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7779EA5B6752543CDEBC3C529020765 /* DTWebVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 285E0A867D0CC302190087C677BEB63D /* DTWebVideoView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B82738CD3D164AA95CEB43AEE0316893 /* SocketRocket-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7104E8643B1DADA3F2FBCCD250EF3DAF /* SocketRocket-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B82E5F92C6C2C65F88EB02617FB7F66C /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = F65C240F7969553E416486C1BA83B32D /* AFSecurityPolicy.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B8E616C1F51B7175C7F6CE6A476C94EB /* DTHorizontalRuleHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 76FC889AE35CC79391EEAE006EE28766 /* DTHorizontalRuleHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B8EDDD3A894C1A9E1B2D492B77EC75A3 /* DTHTMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 751D7A4C5DBBF42238A7169412A9C4BE /* DTHTMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B8FCF87620600A7A6CE45858E0FA8B67 /* SCSiriWaveformView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8581CFC7D5E9532318A1D6167348A3C1 /* SCSiriWaveformView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B980B75AD84977E6F285631EFD8BF393 /* TWMessageBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 979EF9C89DAEDD5BFC6569D2A516C5FF /* TWMessageBarManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B986D4D364898EB0DE483B9A1B8B3498 /* RECommonFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = A54728737D3A3FC64508F01A44AFCC6B /* RECommonFunctions.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + B9F04B89952E95D21A9B4F2D8119DD77 /* SBJson4StreamParserState.h in Headers */ = {isa = PBXBuildFile; fileRef = EB21730A715179C9142B59EF21BBB80D /* SBJson4StreamParserState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA040AFE00D4326C792ABACD02DF09B3 /* FLEXImageExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9095576B6A896DEFCAB89EE8A393E947 /* FLEXImageExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAD9216DA0E811C3C6AFF0B7D123AABE /* SWTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC0A1D1D65AEFB1CBA76458D8F180D9 /* SWTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BAE6605D58B299BCB52987D06BC20A77 /* NSCoder+DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF3706313C9F7B04AB33987689C6563 /* NSCoder+DTCompatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BAF13783D3245B8C6589DF2528A2B814 /* FLEXNetworkCurlLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2167A9843206C5B4AA3E411E690293C2 /* FLEXNetworkCurlLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB183DAA3D89AB9B8625D6E0B33650D5 /* audio_record@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E2783A5AE6822735BA77E5C1E937C691 /* audio_record@2x.png */; }; + BB403DCDB5FE0E651CFFD89B3A9E3528 /* SWCellScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A218A487C09296FD7C4E83D305DA7BE /* SWCellScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BB9F81836E9CA3AD1AABF5C2C0B92730 /* ModuleConsole.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E6AEB325029526A1F166DB71339CB5A /* ModuleConsole.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BBF87C58D5418DFF2E6D4617A9C649AD /* DTCoreTextFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 85EFEBFF67EE9580614111D45D61834E /* DTCoreTextFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BC28FB8DD8A4789951A10FE09BBD6100 /* DTBlockFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D86EB526105F4F0E76B9B466C3EDDA /* DTBlockFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC8468380DC283810D6EC991C640F419 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D24CFD0681F4BDB2D76EC9E1BBC40B13 /* SDWebImagePrefetcher.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BCFD6C8B36141E04955DE7981F7002E6 /* NSMutableAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC346A072B569BDC778ABD171896037 /* NSMutableAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BD05EAF4B5549828E8269943F44C9EC8 /* FLEXFileBrowserFileOperationController.h in Headers */ = {isa = PBXBuildFile; fileRef = A5878868847C4F77C95376071010D002 /* FLEXFileBrowserFileOperationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD376D4ED0C8C444CB2E37F1E7211032 /* FLEXKeyboardHelpViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 422F3F85F4DFB3ACA5316C82340E1920 /* FLEXKeyboardHelpViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD38E4BFB747A6ED1EDF8BC9D870A73F /* FLEXRuntimeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 798C415359D2F7554216AB3CB5ED3D3C /* FLEXRuntimeUtility.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BD782AAE430B44CDB6BC289E604311DD /* LTHPasscodeViewController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 694FB132360329F037F4390CFA29D957 /* LTHPasscodeViewController.bundle */; }; + BD9B1F791B60C09167FE0AAD32F58A95 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + BE0D6FE1AE27D1EEDD95E45F95DF6C79 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BA5142C71BB5BEDE7E2BC94DD0DB81D /* MBProgressHUD-dummy.m */; }; + BE2F810CBBEDE7A8D147D4E003C6D79A /* FLEXClassesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A31896B63E2CD8BFA5EBEEC79AA5363E /* FLEXClassesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + BE5F6238062316F9C5B4F7AD0064E473 /* DTCoreGraphicsUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D548F682E2F0288EA096802D12CBD53B /* DTCoreGraphicsUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BE6CA5E6CADC12E8FE8FEDC613A9377B /* RMDateSelectionViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DB9F27C280BA0D6E584923AB59E0490E /* RMDateSelectionViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BE98EA7E3012D9F4F859CC68D5E822FE /* FLEXArgumentInputViewFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3912C0DD3968D90F1C569A9748CADACF /* FLEXArgumentInputViewFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEDC24FE35DAFC844418C626E9118C21 /* APContactListBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D49FF92C639962C7585F2A12CF31D5 /* APContactListBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF9F1A550620CE89194B39CD775102C2 /* FLEXMultilineTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D98BE99EE0CE91F51B366F27F825841 /* FLEXMultilineTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFAF112E18E79A032EAB55130295A352 /* DTListItemHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 710C3AC1AC85D7979FB4C796EED60613 /* DTListItemHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; BFC3AAFFCCFE94270FA4A3040449FA18 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; - BFC6257046AD8769D64E5947E7AB37B0 /* FLEXIvarEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C40E36BEFE11F09701DC99C30E037A1 /* FLEXIvarEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFC6257046AD8769D64E5947E7AB37B0 /* FLEXIvarEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F261F66683678F4DA7DF8AFF5733BDC /* FLEXIvarEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFCBB10E21E8E19D81051AD82B543B57 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - C04815EEEED3921522AF954A623EAFF5 /* FLEXSystemLogTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C9710D667BD9E120B164262E771381 /* FLEXSystemLogTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0787624B1E039C25F798536ABF38FED /* FLEXArgumentInputStringView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A35FB69C15AF0275435E3E7ECB63620 /* FLEXArgumentInputStringView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C08D122F5810DB83CB6A9A7762F84361 /* DTAnchorHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = D5310CD4F331E47BFA09A4576EFC40C8 /* DTAnchorHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C09959591704CC22392D39B68F2FB788 /* SWLongPressGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 448464D6F627D2F72EBB786FF6A72987 /* SWLongPressGestureRecognizer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C0ABF382BFF52D0FBE04D2F3078EE5B5 /* NSAttributedString+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B077DE6D6868BC938D09404A4C249BF /* NSAttributedString+DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C0C5FDA3AB8F048F1AF8F94E6D8EF5CE /* SWUtilityButtonTapGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E3E4AC1C3D019248474E68ABBE231D /* SWUtilityButtonTapGestureRecognizer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C0D61B73142589BD1C0D0AC215686110 /* SBJson4StreamParserState.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3A29D517A509432DECC20B35DF20EB /* SBJson4StreamParserState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C0D7304C96A10ECDDFB93D1605B5C704 /* APRelatedPerson.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F68DF1960B1CFC7F877E2FF04062E7 /* APRelatedPerson.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C12AA952AFA82B18BB24536B9FD35699 /* APAddressBook-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5052A06269C37B342C6F225A934E7AF6 /* APAddressBook-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C300C738C16B9BCACA15236DDD543FAC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - C361789FC4DC7980DA5631BCB72F5134 /* FLEXArgumentInputColorView.m in Sources */ = {isa = PBXBuildFile; fileRef = C3D27F3FB22C2404ED7F118DF9C1A6CD /* FLEXArgumentInputColorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C3BEAF593F582070812F218E42A64E04 /* FLEXViewControllerExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = ED79A272494E152E6F08482ADDA94961 /* FLEXViewControllerExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3DEBD9451F1D25E47DC4B3732A17EB5 /* UIFont+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A6BDF8D520B0F82F3D53A2D3B24E16A /* UIFont+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C3F20B4B88873A2035263FD2D0E6935B /* UIApplication+DTNetworkActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = F826EE4CBAA0AA591FF1541F320B0DE0 /* UIApplication+DTNetworkActivity.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4460005E6C2D093469B8C00D8F3E7E1 /* icon-success.png in Resources */ = {isa = PBXBuildFile; fileRef = C2342BC772DBEE8C263FA07ACE2E730E /* icon-success.png */; }; - C45E3ED047EECA0416C0580657AB4879 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8113E6E2996C83C0AFA53072670D5520 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4E262B00D5AB5B4E0F87DFB7A8C6CD3 /* APContactBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 63658ECF7F3AAA404A61E816FD267E8F /* APContactBuilder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C53F343D85CDF9ADB466736A832F6A27 /* DTHTMLParserTextNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C57EAE7B2B3C17C679A60CE421B5815E /* DTHTMLParserTextNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C59B2B4973B01A88049B644EABEDC12D /* JDStatusBarView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADB171941808C54FB2633916A17D08C /* JDStatusBarView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C5B1E12E0CA100B11E40C4406EBA29CD /* FLEXKeyboardShortcutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 96721CF43CFFAD91AA7D5607BF63A1A5 /* FLEXKeyboardShortcutManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C5E4F5C88163FAAC467E27D963FFCAA3 /* NSGIF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2AA973B11A59A0CC2605CE33C7F2475 /* NSGIF-dummy.m */; }; - C62CEBDFFE085D648853CC4DCF866DE7 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 34526A585D9357885A5529F16862BCF2 /* UIRefreshControl+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C668CAC4868A4622A09C60AF01C1E427 /* SBJson4Writer.h in Headers */ = {isa = PBXBuildFile; fileRef = C1141995EFFC299563004C77BBF9E951 /* SBJson4Writer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C671A606E6A608EEDD931FB7D348C62A /* NBPhoneNumberDesc.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A89A99F5021EB5D7CB66B1099441038 /* NBPhoneNumberDesc.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6F357D61C2EFE359232097BCC6CDA16 /* PHFComposeBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFD8EC039100E64D2114E8481C8538BE /* PHFComposeBarView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C7244B4B77431DFE2B325D32BA9163C9 /* FLEXToolbarItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 7997AD3C155253F3C365FE372B32C96F /* FLEXToolbarItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C006B3A4CE7185B2B1C154CA66BB5456 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E70F4BD02D647CEE820CC65A4916D3E /* UIKit.framework */; }; + C04815EEEED3921522AF954A623EAFF5 /* FLEXSystemLogTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 743E0492969E2A3F6145741BA2B9985F /* FLEXSystemLogTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0499ACB623D94CA4FB6D994E0AB5D64 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E6092B3E189C1E1AFF57F0696410090 /* UIImage+MultiFormat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C0787624B1E039C25F798536ABF38FED /* FLEXArgumentInputStringView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9392861CEADC3725C4AD993C5EBF5E5B /* FLEXArgumentInputStringView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C08D122F5810DB83CB6A9A7762F84361 /* DTAnchorHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = ACBC186AFEF40E8819E50064E6517FA7 /* DTAnchorHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C0ABF382BFF52D0FBE04D2F3078EE5B5 /* NSAttributedString+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 70057D8DD7907913BABEC3B5B4CFAC2B /* NSAttributedString+DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0D7304C96A10ECDDFB93D1605B5C704 /* APRelatedPerson.m in Sources */ = {isa = PBXBuildFile; fileRef = F77126AE85DF1A6E1549D9C7DB4461A9 /* APRelatedPerson.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C12AA952AFA82B18BB24536B9FD35699 /* APAddressBook-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D68F4FB0930B290609B4C9035A7CA6 /* APAddressBook-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C20FFBD6DE042033BF86C8F521898237 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F818E6397B87D47749C8181C0450F8A /* UICKeyChainStore.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C2113A51A3CA14906F10DF693B682088 /* SWTableViewCell-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A69EF5BD3D103526F96A3165A459EAC /* SWTableViewCell-dummy.m */; }; + C2599F73C78298B87083ED5A34C6E761 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + C2CA57D9F8C4BBB525332C537F11EC54 /* SBJson4StreamTokeniser.m in Sources */ = {isa = PBXBuildFile; fileRef = 227D5DD5A928518CA5266F2CEA3B1A00 /* SBJson4StreamTokeniser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C361789FC4DC7980DA5631BCB72F5134 /* FLEXArgumentInputColorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B23A2EBC56C08DC287AFBAAE1ADD8F1 /* FLEXArgumentInputColorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C3BEAF593F582070812F218E42A64E04 /* FLEXViewControllerExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B2B125EE0E97DD13DCF4D63552F278 /* FLEXViewControllerExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3DEBD9451F1D25E47DC4B3732A17EB5 /* UIFont+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 9046081948B7DC160E2768C37F0540DB /* UIFont+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C3F20B4B88873A2035263FD2D0E6935B /* UIApplication+DTNetworkActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CBA86A6C489D012C173116E8E1C9B45 /* UIApplication+DTNetworkActivity.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C3F6E31A14E140AB88F4E38F021F3E1E /* SZTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 106C5D3DE116D12C5BAE526145C74EFA /* SZTextView-dummy.m */; }; + C45E3ED047EECA0416C0580657AB4879 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = F5049A3905DCE7B8C44BE7F0909F00A8 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4E262B00D5AB5B4E0F87DFB7A8C6CD3 /* APContactBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 29349CA4C191898DEF42643D8B58CAD2 /* APContactBuilder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C53F343D85CDF9ADB466736A832F6A27 /* DTHTMLParserTextNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 068981582F1C670B8C42584C5A3CDEED /* DTHTMLParserTextNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C59B2B4973B01A88049B644EABEDC12D /* JDStatusBarView.h in Headers */ = {isa = PBXBuildFile; fileRef = C2653460C6784A6742200E0577E292D1 /* JDStatusBarView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C5B1E12E0CA100B11E40C4406EBA29CD /* FLEXKeyboardShortcutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 037E3CFE69F8B4B8DF03141564FF8440 /* FLEXKeyboardShortcutManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C5B2A0C62BDE65994C7E1BE8EDDD3C28 /* TTTAttributedLabel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D92A08E6ED04557509EB2373C8730A40 /* TTTAttributedLabel-dummy.m */; }; + C5E4F5C88163FAAC467E27D963FFCAA3 /* NSGIF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D56EAE05EB0AF4B07CA9E8CCB9400FC3 /* NSGIF-dummy.m */; }; + C62CEBDFFE085D648853CC4DCF866DE7 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 802D0611A080CEA882616AC6F682F508 /* UIRefreshControl+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C671A606E6A608EEDD931FB7D348C62A /* NBPhoneNumberDesc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D335958D5A0E717705F38218C04854 /* NBPhoneNumberDesc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C6F357D61C2EFE359232097BCC6CDA16 /* PHFComposeBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = D4B8363AC506E4A96EEADCBDCA4D448E /* PHFComposeBarView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C7244B4B77431DFE2B325D32BA9163C9 /* FLEXToolbarItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B41C5EE01396BE3FF9262468DAC7B1 /* FLEXToolbarItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; C76DEA79BA5F8852D7AB01B1C24F5D06 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - C79D73273B5C46EF10D5207143457F4A /* TDOAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E479CAB47AFFACC970AF170087DC9D /* TDOAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; C7B815160D738BC38416F1B2E6AB07DC /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9BD9207EFC7EE18120C17AA6DC24C840 /* CoreText.framework */; }; - C7E0A7EB3FB58D4AF56219372234C073 /* AFHTTPRequestSerializer+OAuth2.m in Sources */ = {isa = PBXBuildFile; fileRef = EEAA5344180DFB4E2307FFB4D452B78A /* AFHTTPRequestSerializer+OAuth2.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - C8488DF664D9CA3052498FB3F8860B65 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; - C911AC905521B603E9AFE1F017FB5D25 /* DAKeyboardControl-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC697AB745938E8954332D7AB856E2E2 /* DAKeyboardControl-dummy.m */; }; - C97416123576DF5A0DE73C52CEFE0E65 /* AFOAuth2Manager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59391E03D045F132284A62D2249F0975 /* AFOAuth2Manager-dummy.m */; }; - CA31C3A7CB38342FF296D7A01E1F6A9A /* PHFComposeBarView_TextView.m in Sources */ = {isa = PBXBuildFile; fileRef = D75FE1BD9329B7DB614FB7BA4D6B9536 /* PHFComposeBarView_TextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CA6A9D9BA2C3BFE91039F3C14C453C82 /* DTHTMLParserNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4A5AFF5147D4C1CD52645A96540193 /* DTHTMLParserNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA8101BD85900CCF6220B24E55E53CB7 /* NSURL+DTComparing.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F870847157AFFCBC5295EAFBD0E29F2 /* NSURL+DTComparing.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CB22CD96E330D5AEA7EA1A2C98C8D9ED /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1EAC35E4ECAF861BA70D40CFFDE4FB1 /* AHKActionSheetViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CB42F1216E6C84EBE82BE2A19EAE4BE0 /* DTStylesheetHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = B4FF69C4CBBA83DEDD6A5CA9B4DC48F4 /* DTStylesheetHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CB9D0A178F52E8B679DBCA0DA46439A3 /* audio_record@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 90372249797F0E16B52FE46C4814F890 /* audio_record@3x.png */; }; - CC1470E409DF1A0CDFD0AAF62F0DC057 /* FLEXSQLiteDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E2EE6706276D137546D678B9489E08B /* FLEXSQLiteDatabaseManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CC2D6B7E5C7BF89D64385020CA9AD9B4 /* FLEXImagePreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C72420EC8DC8ACED6D9D3FB973CDDE81 /* FLEXImagePreviewViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CC7F5E2FC7925CF5EEAFFC4D19991A6D /* DTCoreTextGlyphRun.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C2BCA7AA57DFB65489D711C0C0D954 /* DTCoreTextGlyphRun.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CCF38E1E76E1009E8F63A3FAC8D3B0C3 /* FLEXClassExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 773094A1F8B327B3AA41F5B2B198742B /* FLEXClassExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CCFA9A5153E9761117DF443F7D29A78B /* DTImage+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 40BC86F13120001C51F3AC419EC8EE44 /* DTImage+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD079D9FF6CF2278EA1F123035F7B377 /* NBMetadataCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 180ED4C1D861F17330C280402F22F8BE /* NBMetadataCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C7E0A7EB3FB58D4AF56219372234C073 /* AFHTTPRequestSerializer+OAuth2.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EA318FBCB10AE0CEAAD863E8B17AE68 /* AFHTTPRequestSerializer+OAuth2.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C8E123F3C7B70309FC5E08150BF79205 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 80FC2707D403314A29E76CACFCC7E556 /* UIImage+GIF.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + C911AC905521B603E9AFE1F017FB5D25 /* DAKeyboardControl-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9ABEFF734526840FF95C8D4A1A8CD2 /* DAKeyboardControl-dummy.m */; }; + C94BE3440C19241233B45A916920D07D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + C97416123576DF5A0DE73C52CEFE0E65 /* AFOAuth2Manager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 577BE5141CDF425661D1B2324A51AFF2 /* AFOAuth2Manager-dummy.m */; }; + CA31C3A7CB38342FF296D7A01E1F6A9A /* PHFComposeBarView_TextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09BB601B0BA8D6785F279BEF89D6AAC7 /* PHFComposeBarView_TextView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CA417C922883808E625B62643CB7DD12 /* NSMutableArray+SWUtilityButtons.h in Headers */ = {isa = PBXBuildFile; fileRef = 2147E07A49D43AC9D8BE9F2579E2AF5E /* NSMutableArray+SWUtilityButtons.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA6A9D9BA2C3BFE91039F3C14C453C82 /* DTHTMLParserNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F92EEB1282B11D949744F6BA21338AF /* DTHTMLParserNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA8101BD85900CCF6220B24E55E53CB7 /* NSURL+DTComparing.m in Sources */ = {isa = PBXBuildFile; fileRef = 841224006EB51A480B93DAD9C1CFCE68 /* NSURL+DTComparing.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CAEA0104E794F16418F4D8ED3E00CC74 /* TDOAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F0781CD14A7D62953AA8240BDC06B7C /* TDOAuth-dummy.m */; }; + CB02CF65E495ED94018DED0E9657457C /* REMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 678DFE0E2B1C7EC758239E2F4F269ACE /* REMenu.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB22CD96E330D5AEA7EA1A2C98C8D9ED /* AHKActionSheetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E870F372301A806C7C7606C47340757 /* AHKActionSheetViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CB42F1216E6C84EBE82BE2A19EAE4BE0 /* DTStylesheetHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = EA24AEC1E9D07B91245B3D0ADC3E562F /* DTStylesheetHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CB677153EE6AD0304F64EDD289E55CEA /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EBE38DCD4CA838704AABF1C711DD2C7 /* UIButton+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CB9D0A178F52E8B679DBCA0DA46439A3 /* audio_record@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = B8E2552BBBBB9BE2ECB9ECEB1C5788B5 /* audio_record@3x.png */; }; + CC1470E409DF1A0CDFD0AAF62F0DC057 /* FLEXSQLiteDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A0F2CC17F6FD007A525579ABF0AC0DB2 /* FLEXSQLiteDatabaseManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CC2D6B7E5C7BF89D64385020CA9AD9B4 /* FLEXImagePreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E4686A2C51D501851F1C8C8A1B11C53E /* FLEXImagePreviewViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CC7F5E2FC7925CF5EEAFFC4D19991A6D /* DTCoreTextGlyphRun.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BFFE24D4142EEF50560CD5F2070042F /* DTCoreTextGlyphRun.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CCF38E1E76E1009E8F63A3FAC8D3B0C3 /* FLEXClassExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F5181D1D065F2217D80D2D8B1E535AE /* FLEXClassExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CCFA9A5153E9761117DF443F7D29A78B /* DTImage+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = E72DE113094FEB300850B7464FECE35B /* DTImage+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CD079D9FF6CF2278EA1F123035F7B377 /* NBMetadataCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 376203E3DFDADFAF96F4032CF52B1CDA /* NBMetadataCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; CD3B6080D83FF03FDEA2BA262492C049 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - CDD4BCCB4654F89334C26C873C4687EF /* DTCoreTextFontDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = A3CEF9B4A30D29B183A9579C96C0E55A /* DTCoreTextFontDescriptor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CDD4BCCB4654F89334C26C873C4687EF /* DTCoreTextFontDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = DA95C157A73324B252B1C58330D0DD87 /* DTCoreTextFontDescriptor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; CDDCD9C9DF915A8D6EF3CECB39EF9531 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E660D0FC762BC034DB84AD775305493 /* AVFoundation.framework */; }; - CDE0A383446346D5DF8D6ACE1FC6DB49 /* DTAttributedTextContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 82BBF8D11EEE36288A6BF684021D8B05 /* DTAttributedTextContentView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CDE7FB6B08C65B41C042A43D83920255 /* FLEXFieldEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AC0A490324CB91E2E66C7A23FCFBD22 /* FLEXFieldEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CDF7ADA0CC70528AE871F709CA454A6C /* NBPhoneNumberDesc.m in Sources */ = {isa = PBXBuildFile; fileRef = 5091560B808CE2990EB65581AF604409 /* NBPhoneNumberDesc.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CE0E6B46AEA1BF8D982F492040C1AC25 /* FLEXLibrariesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FED95F67FCEF9014BE009E21F1B362 /* FLEXLibrariesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE0F1DF337FD9EBA16E2067FED8F0332 /* NSArray+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C23640D31030C7151EF8CAA8AADE6D2 /* NSArray+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CE15ED34E516492B692295B8152D14F0 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4814595F006BF65DB8C1B5F46A242220 /* AFNetworkActivityIndicatorManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CEF5144005A0A1D3FE44E123AB387F1B /* DTCoreTextConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AB6334E8E6AB1C20D7C79E57A906F2 /* DTCoreTextConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CF4F46322DB29E73E9B582B81A966081 /* FLEXArgumentInputJSONObjectView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D06EBA5A187145C3218D80A884D2F75 /* FLEXArgumentInputJSONObjectView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF9567712F43C6DB2122BDF3EDB0789C /* UIView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = DDCD54D9C568D408A69E93089B132B8E /* UIView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - CFF3935CFD68CC9A40BB963D4190FD75 /* DTBase64Coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2640047093368DBCEDE088159CD9FF43 /* DTBase64Coding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D03046CBBF9741EB951594F8E0D55C28 /* DHSmartScreenshot-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3B5DA79BC8E90D694D34FECEC5C9F7C /* DHSmartScreenshot-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D04642A184E3E2F08834929D0AF8CD7D /* NSMutableArray+SWUtilityButtons.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E512B182853505E7E126A70B9B4220A /* NSMutableArray+SWUtilityButtons.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D04E585D771EE5956477C7548D86AC74 /* ModuleXMLHttpRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA8422868CB7BC4E3C6A4A9DF12C144 /* ModuleXMLHttpRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0531565CC0C4A2A3CBA380450DB0AA6 /* DTCSSStylesheet.h in Headers */ = {isa = PBXBuildFile; fileRef = B46E446380DDE89B5233AEC147E0EF06 /* DTCSSStylesheet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D0A632E14D79123E050BE21FAF8C0312 /* HMSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BA56551F5FA28B82CA66A7DC4520361A /* HMSegmentedControl.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D0ABC575D15874D9426E8AD7B44AF8DF /* NSScanner+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AC0328B204DD6C7FCD8A5F994E3B38A /* NSScanner+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D13CEB598B29717222CD1243F28D7DCD /* DTCoreTextFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7947DDC82A70B40CCEEBBB07A23E5CA4 /* DTCoreTextFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDE0A383446346D5DF8D6ACE1FC6DB49 /* DTAttributedTextContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F5AAA165A4CD7B0826A03741773E06 /* DTAttributedTextContentView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CDE7FB6B08C65B41C042A43D83920255 /* FLEXFieldEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 04993E4F8B9B91BAF64212810C093704 /* FLEXFieldEditorViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CDF7ADA0CC70528AE871F709CA454A6C /* NBPhoneNumberDesc.m in Sources */ = {isa = PBXBuildFile; fileRef = D52F422281FF43B903A5B90A2F568844 /* NBPhoneNumberDesc.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CE0E6B46AEA1BF8D982F492040C1AC25 /* FLEXLibrariesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC8590E90B710885B6110381983F705 /* FLEXLibrariesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0F1DF337FD9EBA16E2067FED8F0332 /* NSArray+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F75B0941633011875EA450B8F43FFD3 /* NSArray+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CE15ED34E516492B692295B8152D14F0 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 316C1836E1E8EDBFCD417D231C738182 /* AFNetworkActivityIndicatorManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CEF5144005A0A1D3FE44E123AB387F1B /* DTCoreTextConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E599127B18318C230AE43EEE505203 /* DTCoreTextConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CF4F46322DB29E73E9B582B81A966081 /* FLEXArgumentInputJSONObjectView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC1C4338124149F44EF80460D79F917 /* FLEXArgumentInputJSONObjectView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF9567712F43C6DB2122BDF3EDB0789C /* UIView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = B8714591AAC9EF71E5F47045BD68A4E0 /* UIView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + CFF3935CFD68CC9A40BB963D4190FD75 /* DTBase64Coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B942DB0797810815FA4AFAD9116364 /* DTBase64Coding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D03046CBBF9741EB951594F8E0D55C28 /* DHSmartScreenshot-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 852B8B3801D70BF5A93BCEC0E7ABCA26 /* DHSmartScreenshot-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D04E585D771EE5956477C7548D86AC74 /* ModuleXMLHttpRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C033C0EE41ADEDE3D36C8F2EB2877C5 /* ModuleXMLHttpRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0531565CC0C4A2A3CBA380450DB0AA6 /* DTCSSStylesheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5489F29389A263D10F7CBCF2EFD7D60E /* DTCSSStylesheet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D0A632E14D79123E050BE21FAF8C0312 /* HMSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 01552A9BA705169CFDB6D9F4770184F7 /* HMSegmentedControl.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D0ABC575D15874D9426E8AD7B44AF8DF /* NSScanner+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F545C0FADE6E19CB0C6F9EBC50B576 /* NSScanner+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D0BB921AC66A5D4BCD4C94BEF513E879 /* icon-info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E89E585F590A18027F9E61D85A07A683 /* icon-info@2x.png */; }; + D13CEB598B29717222CD1243F28D7DCD /* DTCoreTextFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4093F01B01941844C46FBDF9D45218 /* DTCoreTextFunctions.h */; settings = {ATTRIBUTES = (Public, ); }; }; D1F5DDEB8531305E008FD4E495FF5047 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - D1F82B3DD752AB26CBC78F0CE45AE139 /* FLEXLibrariesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AA309B92715047BA2AAB8A6BDD13D56 /* FLEXLibrariesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D21170D1D392648BB90FDBAAA1AEA98D /* FSAudioStream.mm in Sources */ = {isa = PBXBuildFile; fileRef = 234DA41CC469CC71332648FB615BCB5E /* FSAudioStream.mm */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D2B303E24DD52E334365E2AE2202863B /* DTWeakSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 130DDCB98FF206F89F0DF05AAE88E924 /* DTWeakSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2D7AEA4B3DB080A4278FEC77AB21778 /* UIImage+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6016E2E117CC96E898E68113969A97 /* UIImage+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D3417FFE0DE976724A51A4A7F2B990CC /* APPhone.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C03D9EBD38C0DA44A7C497E64325269 /* APPhone.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D1F82B3DD752AB26CBC78F0CE45AE139 /* FLEXLibrariesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA21CEB025EACD75757CBAEFC5F3EC4 /* FLEXLibrariesTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D21170D1D392648BB90FDBAAA1AEA98D /* FSAudioStream.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6016E7C82D60BF4878DDCF1ABFBE291C /* FSAudioStream.mm */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D249EE9726F93D01A2721CF9F9ED815D /* SWLongPressGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = ECECFD0C9E200A437BE64395814BBE28 /* SWLongPressGestureRecognizer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D2B303E24DD52E334365E2AE2202863B /* DTWeakSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A726239378E2FF00F6CD6F992FCF16 /* DTWeakSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2D7AEA4B3DB080A4278FEC77AB21778 /* UIImage+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA83630C7A6FD3CAF16440315E04ACC /* UIImage+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D3417FFE0DE976724A51A4A7F2B990CC /* APPhone.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD72999DD51572F0D84637685DC7124 /* APPhone.h */; settings = {ATTRIBUTES = (Public, ); }; }; D3606AA95E4F6AAE573AD29819A387D7 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; D37DBFBF26669880FC3174295ECE84F3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - D395DA5F2E1E29487A156AEA83EECB0D /* NSString+CSS.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C5C9A1E685649D00865BE009078CF1 /* NSString+CSS.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3B77D5F3AF931CDB3E24F9EB30C86B8 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */; }; - D4397E5D3B028B3B7FD60D6F0BAB093A /* NSMutableString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = A08437EC839FA4A95324A757BCBDE309 /* NSMutableString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D4F63980AF81B4392E065B8A852E9BF9 /* APAddressBookExternalChangeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E8271D382171F339004BC8F9E86FD3C5 /* APAddressBookExternalChangeDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D57ED622E979CB4645FB6E12EA23627C /* FLEXTableContentViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B8C1451E189A4F4D32488A015C979B /* FLEXTableContentViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E2D2BA6D4EB88AFD229522E0864A4D /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 22582F6B0612BECAF4A7AE8B9BE4160C /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5E72F23861A5BF5A5191B31B7A0198F /* DTLazyImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99EA497FEC7B3CF2BEDD2C745818BC05 /* DTLazyImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D69C576C26D432618430198270E27A50 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - D70969F1C0571827671C760EB924FEAF /* TWMessageBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0139B1F8FC1DC26FCB3BC1524726E4C /* TWMessageBarManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D777D6C7142F14D96DA253AE2366B195 /* DTTextHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A6E71BF433A699710DD93E80F140334 /* DTTextHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7E587EB20BD9D32CF69D24F9CE3500D /* IQAudioRecorderViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 258E40080201A6A1610D4C2092E2B0CA /* IQAudioRecorderViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7F1C51D0071BF129C43440F1ADD695E /* http_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5047F39496DDF7609EDAFF9BFADA2C0 /* http_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - D814F855FCE4AEE578E77CCF924368FC /* FLEXArgumentInputNotSupportedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B34D066023DCA4803DAA393C26BBCC /* FLEXArgumentInputNotSupportedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C6C1C92A2882D3D98145B9CA82B91B /* icon-info@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 053918D19F6788BB4E459863CCC4FFA1 /* icon-info@2x.png */; }; - D9579838A279B4133240E537EC7C593D /* NSString+IQTimeIntervalFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = F2FFA400E31FFAA930CB1CA6F810DB4D /* NSString+IQTimeIntervalFormatter.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DA1176FF4331928B0D72303867C543C9 /* DTCustomColoredAccessory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DCF5B5BE947EA00E29AA88E04BBD2E9 /* DTCustomColoredAccessory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DA1F68FAA7BC02E5E38377F0F453C2AA /* IQCropSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7511B5F96F22674085EDB2EE767FCE /* IQCropSelectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DA63674F1F357ED08748E088E9019DE6 /* DTFoundation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A441A91BEAF123061F281AD3DD364EF /* DTFoundation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DAD8CC7953529051E355D2D6D4C612FB /* NSData+NSHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2474DAE9953ADD22699BD66EB632309C /* NSData+NSHash.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DAF270F20334D61D7F5DD9C164C207A6 /* DTVideoTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = F17F58F7223DE4D8CB8A3D9939972BDB /* DTVideoTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DAF2FFB167A1C203C25F088A5F98C606 /* DTTextAttachmentHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = BB8C1ED6F4129DAC09273F83BEBF4443 /* DTTextAttachmentHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D395DA5F2E1E29487A156AEA83EECB0D /* NSString+CSS.h in Headers */ = {isa = PBXBuildFile; fileRef = 642BC7C776669AED65D56835C4E4C158 /* NSString+CSS.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D399DF6A4B1DA64F1C112062CFBB42C1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + D39B619730E29B913A1D444193BFEA09 /* SBJson4Parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C6915EC5581399F6D8174CCB3C1F64E3 /* SBJson4Parser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4397E5D3B028B3B7FD60D6F0BAB093A /* NSMutableString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = AD983AC5FAE9B1709564960190A1A25F /* NSMutableString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D4F63980AF81B4392E065B8A852E9BF9 /* APAddressBookExternalChangeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BB4C261244B454AAB845275BDB84AD94 /* APAddressBookExternalChangeDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D51A959A140E6409E0A06CC4B7FEA6A4 /* SZTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 210FC2773A9B5EF5B349555495284239 /* SZTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D57ED622E979CB4645FB6E12EA23627C /* FLEXTableContentViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6722242396AF430E81006B5FC88222 /* FLEXTableContentViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5E72F23861A5BF5A5191B31B7A0198F /* DTLazyImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 705B09325DA2AF9192E0DD5FAE2547A8 /* DTLazyImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D74AA782CF98EAF1D26F585CED8952B6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + D777D6C7142F14D96DA253AE2366B195 /* DTTextHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1EBBBE5FAC33C33230E961D79F00B7 /* DTTextHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7E587EB20BD9D32CF69D24F9CE3500D /* IQAudioRecorderViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D7D45A0889F87D57FFB31B36BFAA34 /* IQAudioRecorderViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7F1C51D0071BF129C43440F1ADD695E /* http_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FF08E65E572CC0E9EC130082BD8D5D2 /* http_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D814F855FCE4AEE578E77CCF924368FC /* FLEXArgumentInputNotSupportedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 271E2BCCBBC6BEC8A00972599918C6E3 /* FLEXArgumentInputNotSupportedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9579838A279B4133240E537EC7C593D /* NSString+IQTimeIntervalFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8826972403B42878B05A692A96BB11E6 /* NSString+IQTimeIntervalFormatter.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + D99938E6F80DADE147590B3C2D8E2269 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9BD9207EFC7EE18120C17AA6DC24C840 /* CoreText.framework */; }; + DA1176FF4331928B0D72303867C543C9 /* DTCustomColoredAccessory.h in Headers */ = {isa = PBXBuildFile; fileRef = 520DDD7347559BF3F7375169C645A122 /* DTCustomColoredAccessory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DA1F68FAA7BC02E5E38377F0F453C2AA /* IQCropSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFBF095FAFB0C824AFA9365E9ABC67A /* IQCropSelectionView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DA63674F1F357ED08748E088E9019DE6 /* DTFoundation-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FABE11377C4759E13B720C89A83DA62 /* DTFoundation-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DAD8CC7953529051E355D2D6D4C612FB /* NSData+NSHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E56B5B2A00809D9FF7A2EB441DF2DB /* NSData+NSHash.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DAF270F20334D61D7F5DD9C164C207A6 /* DTVideoTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = EE170755AA3535A8539BA3D5BD59E9D7 /* DTVideoTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DAF2FFB167A1C203C25F088A5F98C606 /* DTTextAttachmentHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AD6ABDA84248120BC5F7C704A2B0AF /* DTTextAttachmentHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; DB988640E2281E039AFB8AA1ABD664E2 /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 777BC22360E0AFD103C7CAF2EF7E0ABF /* AFNetworking.framework */; }; - DBC1404A333D8319163BF228F98B0DF5 /* APTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = BD816D180F972CC2B40F3B7AA3AFCBDA /* APTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DBC7AFA197DE8C22B46CE0C380352F76 /* microphone_access.png in Resources */ = {isa = PBXBuildFile; fileRef = 122A931C5F2B9DCCA1BF7D53ED48C94C /* microphone_access.png */; }; - DBEE00C6FD2D8B3402A37F0DD6D9F732 /* FLEXToolbarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 972DA354DDFC8D3B3B86DA7F614CE63A /* FLEXToolbarItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DC2A2235BDD2A1ED7E38BFFC83AAF216 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + DBC1404A333D8319163BF228F98B0DF5 /* APTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FC7B5090402E1DA0EB7CF4E3C212012 /* APTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DBC7AFA197DE8C22B46CE0C380352F76 /* microphone_access.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC9554B161D682C70E994D30D718960 /* microphone_access.png */; }; + DBEE00C6FD2D8B3402A37F0DD6D9F732 /* FLEXToolbarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF39E6926F6C5991DFF342B698DCB9E /* FLEXToolbarItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; DC540EF7EAFBF8B49DADC89874DE63EB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - DCD2FF97C3D910CC92C365C384234232 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = D3E6894E91930FAB0EDC269C8152753A /* NSData+ImageContentType.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DD9736C2B85E86BB39BE51C2CBCE95CD /* CYRToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CBAEED838BD1DACB5BDC3A36BA024E24 /* CYRToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DDE157AFD21BC5CEE73FCE776D370636 /* DTTextBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CF455E565B73240EDA62E43F19734D /* DTTextBlock.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DDFB9DFC4DF9C00B344436C5549ADE4D /* APContactDate.h in Headers */ = {isa = PBXBuildFile; fileRef = AEFDC43BE6DF87A63C260092C289AD96 /* APContactDate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE18CCA0BD67934E70CF6F8ACFFB01B9 /* APAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFB318758D85D852735B04AB03F8BFD /* APAddress.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE22CF1F8BE42DE600312BCFE87DD4C2 /* DTExtendedFileAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F10CB1FFB48A32F54D388C3AE5F4DE /* DTExtendedFileAttributes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DEE87F76A2FDA1D9A94CDA5119A5B1AF /* JSCoreBom-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EFF8C81742212AEB6787CF24E077EB3 /* JSCoreBom-dummy.m */; }; - DF5B3553B71E610D5589097B680CAD98 /* FLEXWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = C4716712447611CA6B253226FBB154EB /* FLEXWindow.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DF81C77323AB30819DA80B2E5C8296A9 /* RMActionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FFBC11643DF2BFF23696BEF0F7BD794 /* RMActionController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DF914E25DAE16E3CE6A8D3573A66BCE9 /* default.css.c in Sources */ = {isa = PBXBuildFile; fileRef = C1082E205F13A7E5154BF5991CDA1635 /* default.css.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - DFBEC5007D39A5F8A38484D80C31AA05 /* DTVideoTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 497AB26AF52D76E9D1217050E3ABDC36 /* DTVideoTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0015C8ABC526C3F86D7EC2D6AEA2B55 /* JDStatusBarNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CF75719238F597094A0F5082F026B5 /* JDStatusBarNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E00D06017D01B2CB012D444C2056C30F /* BBBadgeBarButtonItem-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A32273B0CF52F47D61C1ED261D938C3 /* BBBadgeBarButtonItem-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E02BAE034E4EA8D6B444FCD45E77649D /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 0878523EEBFED18E36A91E503D2BA72F /* SDWebImageCompat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E03DF46EADEFB35A347B994C91394B1C /* NSString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1D518438B58E0824DD0135F01846CC /* NSString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0F3887B73ECADB5991E14AE91518653 /* FLEXManager+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6B166FE0F0352C2EC56E65DE12AE26 /* FLEXManager+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1AECA4D141E727520924C7FAE948F7E /* NSDictionary+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6C2C9535560AE320B53381413BFFA2 /* NSDictionary+DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1AFC7A341895681A8B2EF7DA98796A4 /* CYRTextStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = CC48EBE6D1023B7A318B639B0CA62F90 /* CYRTextStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1DB55D0F344736A52C8C328AE19C4D4 /* IQCropSelectionBeginView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7669C15CF12C14B966CBCA761B04279A /* IQCropSelectionBeginView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E23B9A6F533461CB33C0FA6FB59E3AB2 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = EBAAA2B7C4FA4462C09068943B73551E /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD6C900566550B0BF2F6E49BE12AB9E1 /* SBJson4StreamWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 53D01632E07765E0EA5A975EFA674F85 /* SBJson4StreamWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DD9736C2B85E86BB39BE51C2CBCE95CD /* CYRToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C47F68733CDC7A3371931DBBDA3FD724 /* CYRToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDBDA810C7A09C3B7DBFAB713DCB1C3A /* REMenuItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E5D5A3402AA2DBA32B47A02A8D0598 /* REMenuItemView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DDE157AFD21BC5CEE73FCE776D370636 /* DTTextBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7165479F925226D8F39C718E098DCAB9 /* DTTextBlock.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDF2BCA53C99EB1F7105C68960521D2D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; + DDFB9DFC4DF9C00B344436C5549ADE4D /* APContactDate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0E9859152CE536EBC95C4CC1F751B3 /* APContactDate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DE18CCA0BD67934E70CF6F8ACFFB01B9 /* APAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = D38BA3712161BF4A57D294236BC0EC5C /* APAddress.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DE22CF1F8BE42DE600312BCFE87DD4C2 /* DTExtendedFileAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B26115E7767C4804D1EDC76AB1F11F /* DTExtendedFileAttributes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DEB4028704BF37880AC1C512F2796134 /* icon-success.png in Resources */ = {isa = PBXBuildFile; fileRef = 8D2B58DE2D1CAABE41C4C289ACD8EDDA /* icon-success.png */; }; + DEE87F76A2FDA1D9A94CDA5119A5B1AF /* JSCoreBom-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADFA8E8A10AE28983E43456E577907C /* JSCoreBom-dummy.m */; }; + DF5B3553B71E610D5589097B680CAD98 /* FLEXWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 48C115C187D2955EFF1EB6D0FD09EB74 /* FLEXWindow.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DF914E25DAE16E3CE6A8D3573A66BCE9 /* default.css.c in Sources */ = {isa = PBXBuildFile; fileRef = 26E1FD96BFF2AF674209E073FBEF15E0 /* default.css.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + DFBEC5007D39A5F8A38484D80C31AA05 /* DTVideoTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF80A71043EF71E4A51A9856CA81EAB /* DTVideoTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0015C8ABC526C3F86D7EC2D6AEA2B55 /* JDStatusBarNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 668772894F7A72E86990959E6C66B99F /* JDStatusBarNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E00D06017D01B2CB012D444C2056C30F /* BBBadgeBarButtonItem-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7C10701364ABFBD5216CC27CFD4AFA /* BBBadgeBarButtonItem-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E03DF46EADEFB35A347B994C91394B1C /* NSString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB74696F35DFAD8EE375F19678DE650 /* NSString+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E076F795D2450A90BCAE84116BD41F6A /* SBJson4StreamParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 73055FEF723FE60F7B917343BDAF58CB /* SBJson4StreamParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E0DB01A74024898E2C9CDAFF5944D7BF /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B1CF4342199C64785EE0088C953764 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0F3887B73ECADB5991E14AE91518653 /* FLEXManager+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C675DC4D8E414DA5E8B75D6B2538C2 /* FLEXManager+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1AECA4D141E727520924C7FAE948F7E /* NSDictionary+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 66888B5CD2DC5881B95241E8C4E4394F /* NSDictionary+DTCoreText.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1AFC7A341895681A8B2EF7DA98796A4 /* CYRTextStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BC8BD91ACAC341D0B4F19B6DDA7F02 /* CYRTextStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1DB55D0F344736A52C8C328AE19C4D4 /* IQCropSelectionBeginView.m in Sources */ = {isa = PBXBuildFile; fileRef = 07F72CCAC5B024234CB3D9359D2ED3F0 /* IQCropSelectionBeginView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E23B9A6F533461CB33C0FA6FB59E3AB2 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E65E0C50C42F3D594159D4C226099B /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; E284B629D0FE9E8C88E1B294417B0674 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA2D1FD4C36B896FAD89B9DF0FE1755D /* SystemConfiguration.framework */; }; - E292949FADC21AE475CF628ADB2B3F09 /* TDOAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = AE5C3CE206EEC504AE29A7F095515111 /* TDOAuth.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; E29DB4225798C07F0213A1F14CB61C8D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - E3237517E5C3F99AAF772380EFC565F1 /* NSMutableArray+DTMoving.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DBAA4D161962DBB007C8DA49427A1F8 /* NSMutableArray+DTMoving.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E325C1DB4AFC67D55D4840AF11F1A54A /* FLEXFieldEditorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AF13900A4EB5916DC5137CBD5F10F89 /* FLEXFieldEditorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E3A0C3A0579F1405ACA7A2D0E57862F9 /* NSCharacterSet+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C07CD7CF71E88B2188BD21F06A2D14 /* NSCharacterSet+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3AC7770582EF5A32CED0651A08535E9 /* JSCoreBom.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA62D551560CCEF562DD72A66C8F810 /* JSCoreBom.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E3F155D2D24D95188552AA2B02124077 /* INTUHeadingRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = FC198B8BE79376D1BC8EF929BC01EC38 /* INTUHeadingRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E44DE3A91A79381775B645F5461AD86E /* FLEXRealmDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D619F3963E8D1AFDF235988B1A3E520E /* FLEXRealmDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4911490337414C47DD1395208B0A85A /* FLEXCookiesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE002CD67E24C8D09D90D9006312545 /* FLEXCookiesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4B15DEB1018D8A118BEAC8DF6EDAFFE /* DTCSSListStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 158DCCD09FF240D89E85FBD2D08761E1 /* DTCSSListStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E51088D805C637615F902E13ED03480B /* SBJson4Writer.m in Sources */ = {isa = PBXBuildFile; fileRef = E0CC91A25A4475B540128A157C993B23 /* SBJson4Writer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E524D6FE1036EE7492422F895E7DB1FB /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 10BF0E99CC1D54C413640ED25F21086E /* UIActivityIndicatorView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E5769A2CEBC479A8A46F8992BE2FCE24 /* FLEXArgumentInputDateView.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F85D5C97DE5ED582AF5864C9BB528B /* FLEXArgumentInputDateView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5BDC5D5A6505B57164F616B0AB24017 /* AHKActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBBDCB283EB4F1D4960863D0811EB898 /* AHKActionSheet-dummy.m */; }; - E6B1F9328490B3B4838312F2A0DA248F /* FLEXClassesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B992A85F1FF77DC238DB14EA4B58F9D /* FLEXClassesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E306228B5D516FD9F15666EF46518082 /* SZTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4410AB8E006E11288A8D93965E56A16A /* SZTextView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E30B7DF347D0B7CFC392A5740DA265F7 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 564FB8B1E2F32AF451C1A5CA67E435CA /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3237517E5C3F99AAF772380EFC565F1 /* NSMutableArray+DTMoving.h in Headers */ = {isa = PBXBuildFile; fileRef = E25182F03FEACE4E6E9E38A5243E98C1 /* NSMutableArray+DTMoving.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E325C1DB4AFC67D55D4840AF11F1A54A /* FLEXFieldEditorView.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BAB4EAA8FAC7DB5CE514C1F932EB96 /* FLEXFieldEditorView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E3A0C3A0579F1405ACA7A2D0E57862F9 /* NSCharacterSet+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DFCD1AE923868D5FD383CC0E636B6DE /* NSCharacterSet+HTML.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3AC7770582EF5A32CED0651A08535E9 /* JSCoreBom.m in Sources */ = {isa = PBXBuildFile; fileRef = 8438F32AB8EB13FBA3BABCA85DA37DF9 /* JSCoreBom.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E3F155D2D24D95188552AA2B02124077 /* INTUHeadingRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3725FE5A9F08FF6DA978D65A4E0147 /* INTUHeadingRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3F2D1E7CE56971D459E244681EFDB12 /* TTTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = A4DB07331834EE420810ACE5818BA66A /* TTTAttributedLabel.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E42E479CB782D8E974984483D50A296A /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE8663390B28BAAF90EEC564C343FC7 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E44DE3A91A79381775B645F5461AD86E /* FLEXRealmDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B39D356EA1720021B827DA504A189D /* FLEXRealmDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4911490337414C47DD1395208B0A85A /* FLEXCookiesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 339BE9ECAEE13B22E8C0E44D14D2E399 /* FLEXCookiesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4B15DEB1018D8A118BEAC8DF6EDAFFE /* DTCSSListStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4610A99A1E58884E3FC9EA3E49B39F56 /* DTCSSListStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E524D6FE1036EE7492422F895E7DB1FB /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 61B4064AFE929421A663141B27C07C93 /* UIActivityIndicatorView+AFNetworking.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E5769A2CEBC479A8A46F8992BE2FCE24 /* FLEXArgumentInputDateView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6187C18B94AA3B665B0393772AB84895 /* FLEXArgumentInputDateView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5BDC5D5A6505B57164F616B0AB24017 /* AHKActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4820F0BD63DF533050D468F50D0E5B86 /* AHKActionSheet-dummy.m */; }; + E6764C783986705E869A02A14C6576AD /* LTHKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 797CA4A651523BBD024A767BA07E96F1 /* LTHKeychainUtils.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E6B1F9328490B3B4838312F2A0DA248F /* FLEXClassesTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E0874A0497AD215544CE85B6ACF56C25 /* FLEXClassesTableViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7962EDA084614969D79AA8FEA627471 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7249FFC6D8551192D7D771C80C2158D1 /* ImageIO.framework */; }; - E7CDA542682F7A22DC2286B98868ABCC /* INTULocationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = E871DB040F10A91197C3DB6EA71147DE /* INTULocationRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E7DC3DA02DE01730AD04A6A2D5CE65F8 /* FLEXTableContentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B1819579DE793B2B022004E7E6BD41 /* FLEXTableContentViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E803B320362DED092C79ADB3CA8BCC3C /* NBPhoneMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DFE8ACA67E9C83828C888C2990C2EA /* NBPhoneMetaData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E839C726D91347B8AD5498B6329F145B /* RMDateSelectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA01886DA914A69FAD9559FF3CD4841 /* RMDateSelectionViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E844DC2FF7CB0B33343A2F9B7441E88C /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 95FB0B29582B6B316B7FDF115A309002 /* SDWebImageManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E87C8F05B09F00D7DCB037A3D687C047 /* UITableView+DHSmartScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = AF3C2E2D5D24E4976B4E92F5360C7DF9 /* UITableView+DHSmartScreenshot.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E7CDA542682F7A22DC2286B98868ABCC /* INTULocationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D64CF917BF56F6EBF552F05705C4D92B /* INTULocationRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E7DC3DA02DE01730AD04A6A2D5CE65F8 /* FLEXTableContentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C623CD6B126AB6F792A4774E384E67D /* FLEXTableContentViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E803B320362DED092C79ADB3CA8BCC3C /* NBPhoneMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = F795A93F453D6E0112FC448E7033D554 /* NBPhoneMetaData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E87C8F05B09F00D7DCB037A3D687C047 /* UITableView+DHSmartScreenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C3FB561A4BE5009FB37C03A4044E5B /* UITableView+DHSmartScreenshot.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; E88B403C358E8A6EA657078D73D10E69 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; - E8CA34CE2768ABDB0B968607ECEA0CDF /* SWTableViewCell-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6090165E4696F02B1C8BA332A928E3AD /* SWTableViewCell-dummy.m */; }; - E913A3776F358B2F844C2A4A4674E8E0 /* FSCheckContentTypeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1F652A8BA3D62026CE5788EA8EDB77 /* FSCheckContentTypeRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E91CAD491109AF2DBBE6A8C020C8A298 /* FLEXFieldEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FEEDA2A91600AD02BFE521FF7379DC38 /* FLEXFieldEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E94E71EAFADC61318B8D1CD03E082596 /* audio_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44753609F59E1F3234DEC6ACFFEDBFD9 /* audio_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - E960872F42FA64DC5C6AE090DDDD63E8 /* NBPhoneNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA2A003628F3506AFD1E19D76943A38 /* NBPhoneNumber.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA36A9EADD33C140AB29CE1FCC9E615A /* caching_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C02160274476B452178414C493D5A9 /* caching_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAC8013792FE278240CFB5B3F830A98E /* APName.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2978D003CD21979AEF86AD4461D3D1 /* APName.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EAD31520F6FAA371A1BC6BBBCF2228E2 /* FLEXSetExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE786E2A95E03DB45523D2E7D720A2E /* FLEXSetExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EB9B01BA272CB5F4C7F56D6B45170115 /* icon-error@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 43E82C46F9229BDE3F63497AFCB5B5E6 /* icon-error@2x.png */; }; - EBC89C673C5DD9CC48D4B9619523435E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - EBF35BB86DB0CE7C36442E3A64DC919E /* NBNumberFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = A0EDBBF7507CE6392F5774548599B0A1 /* NBNumberFormat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EC2D810ABC3BE27AEA28D176BB7EEE74 /* INTULocationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F1BB853CCC6D515A9CA95F777A87BF /* INTULocationRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC64711A8503D5F0D26E75CB31CC0AB6 /* NSAttributedStringRunDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = BC5C9D4724BD1F94C375191144D30727 /* NSAttributedStringRunDelegates.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E913A3776F358B2F844C2A4A4674E8E0 /* FSCheckContentTypeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 377E088C7AEA2B4DDEFD3CD36843822D /* FSCheckContentTypeRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E91CAD491109AF2DBBE6A8C020C8A298 /* FLEXFieldEditorViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA6CD8C5517DF5EBA497182B19DAEA7 /* FLEXFieldEditorViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E94E71EAFADC61318B8D1CD03E082596 /* audio_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA263A3DFFA51B47465209BDB1FD8FDB /* audio_stream.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + E960872F42FA64DC5C6AE090DDDD63E8 /* NBPhoneNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC1F00676390ADC6D64940A9564991B /* NBPhoneNumber.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EA36A9EADD33C140AB29CE1FCC9E615A /* caching_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = B13B97D9EFF27FF1A377ACCC52684DC6 /* caching_stream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAC8013792FE278240CFB5B3F830A98E /* APName.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAA126CDA90404DA3029703D7A79870 /* APName.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EAD31520F6FAA371A1BC6BBBCF2228E2 /* FLEXSetExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 92969477426475A50AB17D4FE4142B93 /* FLEXSetExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EBF35BB86DB0CE7C36442E3A64DC919E /* NBNumberFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 221173971C9314BAA95602EBCAE6A3C3 /* NBNumberFormat.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EC2D810ABC3BE27AEA28D176BB7EEE74 /* INTULocationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D774EA699233126AD4FD8FDAE3030F73 /* INTULocationRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC64711A8503D5F0D26E75CB31CC0AB6 /* NSAttributedStringRunDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = CBFDC1D6DE779010D4630BD835AB486E /* NSAttributedStringRunDelegates.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; EC7E789DA93764D061C5D7AE6A770FDD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9BD9207EFC7EE18120C17AA6DC24C840 /* CoreText.framework */; }; - ED376B287C1959AC26D7318DACCDFB66 /* DTTiledLayerWithoutFade.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2354726B6BED9646DD22C2ACA0A7DF /* DTTiledLayerWithoutFade.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - ED5F64A60B4F3C6309F16F6F544ADBD6 /* FLEXArgumentInputDateView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5DD7A9987F37BF04D3F5C1E6DE2DD3D /* FLEXArgumentInputDateView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EDA38BDB7DEA4B1356D3D633D6FE6BA6 /* INTURequestIDGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FBE7B77A052D705FE51A58137FB726 /* INTURequestIDGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDA6658885CE0C22F3CACBF2E444F695 /* APAddressBookExternalChangeRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = ED0D8A1E2C688A21D7CA39ABE0CB941D /* APAddressBookExternalChangeRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EE3E4EA44FA96A5930FCEF7044D3AB5E /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 15289FFA31CB8914A3AA50B2B298581C /* AFURLRequestSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EE527BDD8EEEB6E67359F99B594B2735 /* JDStatusBarNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 0549E8B30812A37F8080094C051355C2 /* JDStatusBarNotification.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ED376B287C1959AC26D7318DACCDFB66 /* DTTiledLayerWithoutFade.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EE56B0B6E7840E54588D6233CEADC55 /* DTTiledLayerWithoutFade.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + ED5F64A60B4F3C6309F16F6F544ADBD6 /* FLEXArgumentInputDateView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF091BE4BCACF4F040C1F2BFFBC1636 /* FLEXArgumentInputDateView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EDA38BDB7DEA4B1356D3D633D6FE6BA6 /* INTURequestIDGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B349C8FB2ACDCF06B237A4DA48D4DFB /* INTURequestIDGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDA6658885CE0C22F3CACBF2E444F695 /* APAddressBookExternalChangeRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = 52AD87B607C15FFB79D35B21337E7CF9 /* APAddressBookExternalChangeRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EE3E4EA44FA96A5930FCEF7044D3AB5E /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = FDC402C46DD8863A85404BE4ED4045CA /* AFURLRequestSerialization.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EE527BDD8EEEB6E67359F99B594B2735 /* JDStatusBarNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = D1EF18AC15930FA4B62972888B8BAC48 /* JDStatusBarNotification.h */; settings = {ATTRIBUTES = (Public, ); }; }; EE6D25C45AD728B7F2C4F8BA50F02679 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - EEBBB32E0FFFE3ADE3B78DBE62532E63 /* FLEXObjectExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF1B208CD652776DBF6E2BD03D94B86 /* FLEXObjectExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - EFC71AEFC205F5E9402E2E3F5F8028F5 /* APRecordDate.m in Sources */ = {isa = PBXBuildFile; fileRef = B51B448327AE977546591D1D86F2A579 /* APRecordDate.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F167EDE964C8936F2A17B9077259CC98 /* FLEXSystemLogTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE1A9D4160D68289E2863097E9CBC43 /* FLEXSystemLogTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F184BB0F06C02936258C76E1C93482FE /* AHKActionSheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 672606C10EFC966911E712E8D2B588DA /* AHKActionSheet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1856CC833CC5DF6AFDC68CF475C6330 /* FSParseRssPodcastFeedRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F4E51636078614B39192813EEA77055 /* FSParseRssPodcastFeedRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F1922259C7D944B8C57D1EE7E52CEE95 /* DTBreakHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = C9480C10A98DAA7CAE1A98D383A91696 /* DTBreakHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F1CAA2EBDDFF558DEF98684F2479A7AF /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 599CF8186B46CFCC72D20F589F789B17 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F21082BBCEF15A9FBCAB996129A36479 /* IQMessageDisplayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2631777D82F1E25DDBF32BEBF471BD43 /* IQMessageDisplayView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2403D184210BFCEEF9EF0884A741240 /* id3_parser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9724CFA63331F84730D457E59915E46D /* id3_parser.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F28CA5D89F2A30ED376BBDF2064E4485 /* APName.m in Sources */ = {isa = PBXBuildFile; fileRef = 0312FADF49B7C11C83B068BDFCC8A389 /* APName.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F29E20BC8DDB1681ACF38AE13C2678CD /* FLEXSystemLogTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1317F77FD15006BF5767B04589D3F26A /* FLEXSystemLogTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F2BA136FA55E7F350E208D2F6F61F4E7 /* DTHTMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CEA4D800C9B8B4335A802B56CD7BDC6 /* DTHTMLParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F2D84D45E93474C416A981FA7E8FBA14 /* SWLongPressGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 31531992BBC1AADCFF9B916DFDC5AED3 /* SWLongPressGestureRecognizer.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F2EE69EA2AF6A565CE8D8092CE1882F0 /* FLEXArgumentInputNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75EFBDEAEAAD197E5E9E2B071F48ED0F /* FLEXArgumentInputNumberView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F32071A66262F02008CAE809D3B00F13 /* FLEXTableColumnHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8BAAFB815D152B8C2209485E5D0D65 /* FLEXTableColumnHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F342D6FB8012EDC31E488BBF0E6D543E /* DTCoreTextMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BB5A3087ED9C81DD22C1770C2D6E8D /* DTCoreTextMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F44BFE1179C29A4071C94745E8983D1C /* CYRLayoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 119976D323FBDA68F9CD0BD32E77E66B /* CYRLayoutManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F45ADE421FE8446877ADD5A50C2C6DF1 /* NSString+Paragraphs.m in Sources */ = {isa = PBXBuildFile; fileRef = 493E26B10F2816C87308A8BC0A6261FD /* NSString+Paragraphs.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F4B2B1C7845FF4A470721B5FBCD55BBE /* NSMutableArray+SWUtilityButtons.m in Sources */ = {isa = PBXBuildFile; fileRef = E999A0C326C0F9466AAFF8BCF2986B8F /* NSMutableArray+SWUtilityButtons.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EEBBB32E0FFFE3ADE3B78DBE62532E63 /* FLEXObjectExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02CFE55FF8E3E7ED79143682DDC04B4C /* FLEXObjectExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EEE383A2450C703A510664C22155D672 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2611D7ED02B1F6B75E8FBB55F53505B1 /* UIView+WebCacheOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + EFC71AEFC205F5E9402E2E3F5F8028F5 /* APRecordDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DB6CC249710222131F70489B6162BEA /* APRecordDate.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F167EDE964C8936F2A17B9077259CC98 /* FLEXSystemLogTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 62F87E4615491AC90D3964AE96528175 /* FLEXSystemLogTableViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F184BB0F06C02936258C76E1C93482FE /* AHKActionSheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D17D20271A122B3A153040D1D89D46B /* AHKActionSheet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1856CC833CC5DF6AFDC68CF475C6330 /* FSParseRssPodcastFeedRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 646990BB288B2EAE42A5E57FDD4C05E7 /* FSParseRssPodcastFeedRequest.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F1922259C7D944B8C57D1EE7E52CEE95 /* DTBreakHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F052E918D6F0D585B6BCF83DC4A28DF /* DTBreakHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F1CAA2EBDDFF558DEF98684F2479A7AF /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 26EDAC2A2406A77CA7139D6A3B17C942 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1D82860492BDD33C35A651638326070 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DE035DFC4B3CFD9A79865683DADC428B /* UIImageView+WebCache.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F21082BBCEF15A9FBCAB996129A36479 /* IQMessageDisplayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 23679312AADD262F7CF07411A204017F /* IQMessageDisplayView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2403D184210BFCEEF9EF0884A741240 /* id3_parser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12165B6AE64ACFC0C5559CA572474308 /* id3_parser.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F28CA5D89F2A30ED376BBDF2064E4485 /* APName.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDCB3EEA7B22317525E4C943C6FC3EC /* APName.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F29E20BC8DDB1681ACF38AE13C2678CD /* FLEXSystemLogTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D566BF6B27D76CA069F74AE5557D3C5B /* FLEXSystemLogTableViewCell.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F2BA136FA55E7F350E208D2F6F61F4E7 /* DTHTMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0DE6039BDF5FDD55443EF0528FEA9A /* DTHTMLParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F2C7EB3C659171C849EF9D3A45ABF4AB /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D10A44DD09EA9FC9FB8A87129838D49A /* SDWebImageDownloaderOperation.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F2EE69EA2AF6A565CE8D8092CE1882F0 /* FLEXArgumentInputNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9CAA2C99418D090739C3E3A43BFBCB /* FLEXArgumentInputNumberView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F32071A66262F02008CAE809D3B00F13 /* FLEXTableColumnHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF6B5E42888E4602678565A63358141 /* FLEXTableColumnHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F342D6FB8012EDC31E488BBF0E6D543E /* DTCoreTextMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A42920D8678261E0DD0A28DD10B827A /* DTCoreTextMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F44BFE1179C29A4071C94745E8983D1C /* CYRLayoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 394066EA22FD88C45A5959D83F7D92F9 /* CYRLayoutManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F45ADE421FE8446877ADD5A50C2C6DF1 /* NSString+Paragraphs.m in Sources */ = {isa = PBXBuildFile; fileRef = 8637A118F783FCE9956EAB9AEAA1DA77 /* NSString+Paragraphs.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; F4D32A6143A0871BA89FDE2CF782287B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - F5B1C19A2A9A39351619278EC1123A34 /* DTBreakHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3900FC9045CE79AA8D92CF192EAFBE /* DTBreakHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F5EFC6E510D536B83AE865E5B40403DD /* UIImage+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 603619604F1CA9C9A3B790BCACA1498D /* UIImage+DTFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6277542AD83832EC3661B2FDB6C67C3 /* stream_configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0C05500DEDABD7F10978C7E52008134 /* stream_configuration.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F661E37B75C7EC4115D8F5FE67201FFE /* FLEXArgumentInputFontView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C76C4535C08639F299673C2C3BC033 /* FLEXArgumentInputFontView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69A588E61780EB4F2FDE50100241CBC /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 31DFF4C559C490B4B3C4A1E158F300DC /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6F49DEA00ABD5648AC3040EF7CD3C8E /* DTCoreTextLayoutFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBDC184EE47A24CE121FF68F122C835 /* DTCoreTextLayoutFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6FBA378CA3A9976EDE5F999860C7E48 /* FLEXArgumentInputNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD600B2CAF750077BE9ABB830D9473A /* FLEXArgumentInputNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F70FCAD824BC04D9295D742EEDA2A69F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E70F4BD02D647CEE820CC65A4916D3E /* UIKit.framework */; }; - F75719717BC5C4F36388A117652FE781 /* CYRTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 790418510CC343E0B8B2E88D154692C1 /* CYRTextView-dummy.m */; }; - F75C5014ACAE4242C3AC5F686BD777CD /* DAKeyboardControl-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B84434529E35E73A5E05CF53C99C999B /* DAKeyboardControl-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F75E0B4581A6DEEBCF3C32EF35648F38 /* INTULocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 21CFBF7711A9BF68C3E00EDBAE356D14 /* INTULocationManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F781EC4DB6983D1116BCA1D022FF5CD1 /* DTDictationPlaceholderTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD8AA828CF85FB9E76D090924F47B82 /* DTDictationPlaceholderTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F7A7A3B182B11ACD163D75397861F073 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D3C476ABC10FEF974878F734D22BCC /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F84DD74BB7F612DE372F8C051420DF72 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A185F4EE5E16981C6737DD4C0F9142 /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F85EB131DA5722676416C87C3BC94EA2 /* FLEXArgumentInputSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A5BF4556735174903F93E0A44BEB1C1 /* FLEXArgumentInputSwitchView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - F8CF82626573F3872E5C81D1C81EFFE3 /* CTLineUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F298E0AF4BB6545EF3BFE80AA17FB8B /* CTLineUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F934C8B2BF12BD89DDB7F3C5D9A55F51 /* NSString+NSHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 366B38CCEAD69FCF0636F6B8026B84B9 /* NSString+NSHash.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FA1722ED2E3DC6252138E3C0232C2C6D /* FLEXImageExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 89F78FF4BFF59CFBFCBD86C077269F86 /* FLEXImageExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FA53B291F4B4117BA680547EF43FE91E /* FLEXSQLiteDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED513D23E83420EAC6CE45893A15E20E /* FLEXSQLiteDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA5546077119F13317A39337EFE4A7BE /* SWUtilityButtonView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB39331406DF9EAE0E8F12097FAB181 /* SWUtilityButtonView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FA6616042902BB7EE89EE323E07FCF66 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E4CD72B905A6281C737FB05579D2AE2 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAD91D355902BAC59AB6A1822B848B6E /* NSData+DTCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 081A951F80BADFA3899D013497451EC9 /* NSData+DTCrypto.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FB42B0A16A90A5ABDBE6DB6F67CE7AE3 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */; }; + F5B1C19A2A9A39351619278EC1123A34 /* DTBreakHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 564E65A8928275F77EA5A5048D9EF45F /* DTBreakHTMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F5EFC6E510D536B83AE865E5B40403DD /* UIImage+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 770C36F20DBF7B06B21F80D87A20CA58 /* UIImage+DTFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6277542AD83832EC3661B2FDB6C67C3 /* stream_configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 679F4F5B6EFA2857F59EEE95F6A118D3 /* stream_configuration.cpp */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F661E37B75C7EC4115D8F5FE67201FFE /* FLEXArgumentInputFontView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A70BFDCBC87308B1EDB70CAAD30DA6F /* FLEXArgumentInputFontView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6F49DEA00ABD5648AC3040EF7CD3C8E /* DTCoreTextLayoutFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E23398080F3AF06D20AEF9C9D86232 /* DTCoreTextLayoutFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6FBA378CA3A9976EDE5F999860C7E48 /* FLEXArgumentInputNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C1F310A365377BC874C5C032FADE4D /* FLEXArgumentInputNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F75719717BC5C4F36388A117652FE781 /* CYRTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C00E9F6014FCC28B097D023841A7DA6D /* CYRTextView-dummy.m */; }; + F75C5014ACAE4242C3AC5F686BD777CD /* DAKeyboardControl-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2543F07CDF4DA07ACD25B22E8951717F /* DAKeyboardControl-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F75E0B4581A6DEEBCF3C32EF35648F38 /* INTULocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BE6E74959389FC6E039CAFEB17E283 /* INTULocationManager.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F781EC4DB6983D1116BCA1D022FF5CD1 /* DTDictationPlaceholderTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9360939C3514BDF46FD4827A9B9773 /* DTDictationPlaceholderTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F7DE2477FE58D6E309F8EC55A5310FF1 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */; }; + F84DD74BB7F612DE372F8C051420DF72 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCB03EAE0B05BECA8A052874F3D13BB /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F85B651A15CB379A59CDF08E2321EF7B /* SBJson4Parser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC92408710C4E25EF2925B2848A3FB3 /* SBJson4Parser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F85EB131DA5722676416C87C3BC94EA2 /* FLEXArgumentInputSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = F340A9D9204009059FCB7A010BD997FC /* FLEXArgumentInputSwitchView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + F8CF82626573F3872E5C81D1C81EFFE3 /* CTLineUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1D4C746E7113D94A93F9F8AB40DE44 /* CTLineUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F934C8B2BF12BD89DDB7F3C5D9A55F51 /* NSString+NSHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D2D87777778F5F517895B10EC15487 /* NSString+NSHash.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F9492DEB768314266F1AFDC97299D82E /* RMActionController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 605CC95266D6BFE9108CAF84AF9FAE43 /* RMActionController-dummy.m */; }; + FA1722ED2E3DC6252138E3C0232C2C6D /* FLEXImageExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F09B4DA8484D8609323F6BF01D0B2989 /* FLEXImageExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FA53B291F4B4117BA680547EF43FE91E /* FLEXSQLiteDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4120BC13CD68B0724A8C2B8A166B8344 /* FLEXSQLiteDatabaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6616042902BB7EE89EE323E07FCF66 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 46A7C7801EC3F3DDE6862867FEC95916 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAD91D355902BAC59AB6A1822B848B6E /* NSData+DTCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = D54E236ED13CE053E1CCE5F7EE33400F /* NSData+DTCrypto.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; FB661BD24CC2A7AE6442A2A589EA7B7D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - FBA3A15BDD556EDFD1CB0771689F1BDB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */; }; - FBC71D35056D5B3D5478151795E3CF5E /* APAddressBookContactsRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = DADFDAB5B5A515634B2B8F2202676A3D /* APAddressBookContactsRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FC284FF77848588443EDDEE9CCA3490F /* REMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C34EDA72492ABDF40B79D4E1B2CA8C /* REMenu.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FCF6CFEB42F3C8BA3FAF5545B1380912 /* APAddress.m in Sources */ = {isa = PBXBuildFile; fileRef = C29D1F0AB3044D3C5B2BA6072D565539 /* APAddress.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FE37D7338560592816B14D0A1BD0704B /* FLEXLayerExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A2E9F08ACEA9622FAD9BA829442F742 /* FLEXLayerExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE61AD44354B104B45411B8FA0D1B928 /* FLEXMethodCallingViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFCCBF52871E3104F750989CE83666B /* FLEXMethodCallingViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE80E9DDA3E0DCF604511E8A1D6DD293 /* DTHTMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 62D0381A8642B882F4912C978248FBEE /* DTHTMLWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; - FEF6EACE962EAE70E2EAC5F3C83EF7C8 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D6C643D1BA7B3CDF19CAF531197537 /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FBC71D35056D5B3D5478151795E3CF5E /* APAddressBookContactsRoutine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4984916CAFB76DFB6EAE1F7A5FAF504C /* APAddressBookContactsRoutine.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FCF6CFEB42F3C8BA3FAF5545B1380912 /* APAddress.m in Sources */ = {isa = PBXBuildFile; fileRef = C0064A54275A8D636D1BFB900AF1F7EF /* APAddress.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FD665584B2B2E53133BE56BEB7806CB4 /* SRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = C07F86B0478ED1F02702414465541E52 /* SRWebSocket.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FDF30FEC52877A15890DAFB1B5FA443C /* SWTableViewCell-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1024CC01CA67B22B6C50F2231D39A0A4 /* SWTableViewCell-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE37D7338560592816B14D0A1BD0704B /* FLEXLayerExplorerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D202F98B4FB4530CAFF501A3460F1884 /* FLEXLayerExplorerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE61AD44354B104B45411B8FA0D1B928 /* FLEXMethodCallingViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 703F88EFDCD46F36650733828A10B9A5 /* FLEXMethodCallingViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE80E9DDA3E0DCF604511E8A1D6DD293 /* DTHTMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 03FFD43406C8ECAB2130F23067CE1EE6 /* DTHTMLWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0 -w -Xanalyzer -analyzer-disable-all-checks"; }; }; + FEF6EACE962EAE70E2EAC5F3C83EF7C8 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4837E4E7C180B33C4698F73969383EEC /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00FBFDA6327394340F3B8EE1468AAF7F /* PBXContainerItemProxy */ = { + 04CFDE71BDE462564F371E4B61CB297A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = CA7C7EB2323EE5121B010E294E19D76B; - remoteInfo = AFOAuth2Manager; + remoteGlobalIDString = AC4A322988F097B1E752EB3107D61DE9; + remoteInfo = Reachability; }; - 0315DB905C859003D79294908DD8E6D9 /* PBXContainerItemProxy */ = { + 1A33D27C41EDBC0C1393F41EDB83893A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = B9C0DFFAADC4AE839A71E4E02A5972A6; - remoteInfo = TDOAuth; + remoteGlobalIDString = 9C8E44ED4B2A3F5EA77697C7DAD3F36E; + remoteInfo = FreeStreamer; }; - 0A5CC8A55A17296C1CE03EBAD755B9F8 /* PBXContainerItemProxy */ = { + 1F398F35B347B48F5E8F2661DC57E775 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1001DB9CC14766D428A141CE5D4357B7; - remoteInfo = RMActionController; + remoteGlobalIDString = D0A703793FD19E5003FBBAF9BF625BE3; + remoteInfo = SBJson; }; - 13F6DA0D9360885353E20726EBED30EE /* PBXContainerItemProxy */ = { + 22E93DA0027E4A6AF046C4DE1658C232 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 63193F933F5AC35A56B72012D6B451D3; - remoteInfo = TTTAttributedLabel; + remoteGlobalIDString = 8B01F7E5D6B9A5E36CD00A9208EFF9A8; + remoteInfo = OMGHTTPURLRQ; }; - 14B0A0F14BDD5CF317C4F96A9405A516 /* PBXContainerItemProxy */ = { + 234960A41F04DB72405041F3EC921528 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0C4D6D21E61953B565EFACC9FEC3713A; - remoteInfo = DAKeyboardControl; + remoteGlobalIDString = CA7C7EB2323EE5121B010E294E19D76B; + remoteInfo = AFOAuth2Manager; }; - 20454659D56E2BB032B35A2490336D6F /* PBXContainerItemProxy */ = { + 27A86104BD55B0450546035ABC468ED6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C14FE3775F7AEABD189BA5D908EC746; - remoteInfo = REMenu; + remoteGlobalIDString = 54437C09B6ACE0D2F2F4EE82CCB6ED16; + remoteInfo = SWFrameButton; }; - 22EABA836AA268236CE8E7BBDB4F2F01 /* PBXContainerItemProxy */ = { + 2CC71615F02BE049F2A31DC06D4C962B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 8B01F7E5D6B9A5E36CD00A9208EFF9A8; remoteInfo = OMGHTTPURLRQ; }; - 24FC6AC85080DEA327545292922FD5E4 /* PBXContainerItemProxy */ = { + 33862F289AFDBE18FD74DA5E3BF8D061 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8B20CAEEA320DAD747BB08D1128BDD90; - remoteInfo = APAddressBook; + remoteGlobalIDString = DDE557F9D45590A946D6E2D509E0C159; + remoteInfo = TTTAttributedLabel; }; - 40336E9156441A5AA527830C3C62FBAF /* PBXContainerItemProxy */ = { + 35440F3DFE733EC2F26CE59212B6AB19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 41FA54D12162DAD51D02FC58A2CD5034; - remoteInfo = MBProgressHUD; + remoteGlobalIDString = C4862B96577F57D0819ECCBCA837BD96; + remoteInfo = PHFComposeBarView; }; - 425A86B556511163C6288915D7A2D8DE /* PBXContainerItemProxy */ = { + 364FCB8B3481B85F3835A8ECCB28AB61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 470AFA972C9E000FE52DF1ECE11A504D; - remoteInfo = TWMessageBarManager; + remoteGlobalIDString = A8FC440C47E8F886B32BE567E1954F6E; + remoteInfo = CYRTextView; }; - 5595C0A69613FA76122A13AF197132A2 /* PBXContainerItemProxy */ = { + 383B1448E0B076A2882A114D24A3979F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = C4862B96577F57D0819ECCBCA837BD96; - remoteInfo = PHFComposeBarView; + remoteGlobalIDString = 0C4D6D21E61953B565EFACC9FEC3713A; + remoteInfo = DAKeyboardControl; }; - 5607CA9A413BC8ED9688FF779C091ABD /* PBXContainerItemProxy */ = { + 3B4101A1299748AAC4696F57CC73886E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8B01F7E5D6B9A5E36CD00A9208EFF9A8; - remoteInfo = OMGHTTPURLRQ; + remoteGlobalIDString = B38419E3D7B8986645578293B1F181D1; + remoteInfo = DTFoundation; }; - 56CD25609D425A747C6B60006F96B382 /* PBXContainerItemProxy */ = { + 4D483E680C58FDF12F2E9CDA2DE00AED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 837D8A38BD0CFB4D5347E5BE0BEA1ACE; - remoteInfo = PHFDelegateChain; + remoteGlobalIDString = 7E683DB16DC4643221505F9973C9BC36; + remoteInfo = INTULocationManager; }; - 58B2582B8B382457CBEA19C5BA54C1C1 /* PBXContainerItemProxy */ = { + 525F901539573F385BB055D93536681C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7E683DB16DC4643221505F9973C9BC36; - remoteInfo = INTULocationManager; + remoteGlobalIDString = 33743CC3D62908CEA7612D6F62D9EED9; + remoteInfo = TWMessageBarManager; }; - 5AB0F8C3788D27CD355EF6CC21125C83 /* PBXContainerItemProxy */ = { + 5514FDFF8D5F8B34A607DD871BCEDE3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 923C199FC8844D48B6E4D0E9B013C7C4; - remoteInfo = SCSiriWaveformView; + remoteGlobalIDString = 41FA54D12162DAD51D02FC58A2CD5034; + remoteInfo = MBProgressHUD; + }; + 56CF21C69B50C7A87EEF72753EC5B693 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 837D8A38BD0CFB4D5347E5BE0BEA1ACE; + remoteInfo = PHFDelegateChain; }; - 5ADA1C77FAC6179B8DE86A87594BF116 /* PBXContainerItemProxy */ = { + 610C392EC29573D4DFB48679E18A0EC0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 95B642E7760975E1A3F812D8431F7FCA; remoteInfo = DTCoreText; }; - 5C0B5C1AA69CFE5E4D8C7AD9A77E63DB /* PBXContainerItemProxy */ = { + 6B8A17CEBA0454A22A8EC9F73F86D33A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7891E2B724C54EF58FB1692B34F1455C; - remoteInfo = HMSegmentedControl; + remoteGlobalIDString = 7FEAAD03CB8B6420CC4CB260C6562EFB; + remoteInfo = REMenu; }; - 66433FAC12E08D23070E320913E7CC0D /* PBXContainerItemProxy */ = { + 6BBF2CF064EF61D1CCDCB47B4676E475 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 84D1A4D5C022C5080A4F3C0EE6B9AFCC; - remoteInfo = SZTextView; + remoteGlobalIDString = D4F51B6443933144DB176451A7279DBD; + remoteInfo = JSCoreBom; }; - 6F062DCD8C367E4E14B14574416226A8 /* PBXContainerItemProxy */ = { + 6F99FDA2BBA1C61B5D032ABB4988F1A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D83E505BF1E81A4AAA9A3A5CAA45E9E; - remoteInfo = JDStatusBarNotification; + remoteGlobalIDString = 9DE25021442CB70151058A73AE973DB6; + remoteInfo = UICKeyChainStore; }; - 6F8C3AE23149F41ED14B47823143CB0B /* PBXContainerItemProxy */ = { + 71903873041D62DFF2AE805C6362163F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1001DB9CC14766D428A141CE5D4357B7; - remoteInfo = RMActionController; + remoteGlobalIDString = F70FE54FC6689BA0FFC5616D47F9FC4F; + remoteInfo = LTHPasscodeViewController; }; - 799F3B168EC353BE3BD7E90E77E80A35 /* PBXContainerItemProxy */ = { + 7AF31C2B526FDB6B112849F3FC6509FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C8E44ED4B2A3F5EA77697C7DAD3F36E; - remoteInfo = FreeStreamer; + remoteGlobalIDString = E468869C9F239CDEC39C115A4A20C6E6; + remoteInfo = DHSmartScreenshot; }; - 822DDFD8BE8872B6CA0B5627F53683A3 /* PBXContainerItemProxy */ = { + 7C9A60A940F1DA9D786FC1C31AD3347A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7D5D891676725492FDD435B2ACEBBB3B; - remoteInfo = "libPhoneNumber-iOS"; + remoteGlobalIDString = 1498BDA9EC86795A0C60B4876D9CF825; + remoteInfo = TDOAuth; }; - 8A60DE52CC27A51D5930C142F7D3613A /* PBXContainerItemProxy */ = { + 84EE331DA2D235B742C912C4A222A4BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6D3CC2E1481FD4B03969ECA2FF3F07A8; - remoteInfo = NSGIF; + remoteGlobalIDString = CF671F7E57B92905F1CC91D036D6B4A7; + remoteInfo = AFNetworking; }; - 9ECC6A6FDCC19C51195B50FA347103A6 /* PBXContainerItemProxy */ = { + 92BC25FFB70021785FEFF20A7AFA319C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0EE67372562BE196F0FEF01CC9F45486; - remoteInfo = UICKeyChainStore; + remoteGlobalIDString = 7D5D891676725492FDD435B2ACEBBB3B; + remoteInfo = "libPhoneNumber-iOS"; + }; + 941B2571BB8240422A8715CE1453538B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1D510000CA4286F8B156EA1072E272E2; + remoteInfo = RMActionController; }; 9FACA129FF011E4BF9A61CF895071FF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1055,26 +1078,26 @@ remoteGlobalIDString = AC4A322988F097B1E752EB3107D61DE9; remoteInfo = Reachability; }; - A58C203F3AFB061E54516373C48DF129 /* PBXContainerItemProxy */ = { + AABEA705E7E0619910BB4FD1D0DB8CCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = D4F51B6443933144DB176451A7279DBD; - remoteInfo = JSCoreBom; + remoteGlobalIDString = 169472FE98DC26FB6DE48670BCE95DAA; + remoteInfo = SDWebImage; }; - AC45ED00B9E874C4803B5CD0BAFA72EE /* PBXContainerItemProxy */ = { + AB61801753E31763544EEF9F4B2D0163 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = A8FC440C47E8F886B32BE567E1954F6E; - remoteInfo = CYRTextView; + remoteGlobalIDString = 68A07EF405FD9BCB32A62DB85FB63511; + remoteInfo = FLEX; }; - ADE2C4377A600E3E0635A481FEC989BD /* PBXContainerItemProxy */ = { + AF4598C036726B827C2BA9E1064F9D1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = CF671F7E57B92905F1CC91D036D6B4A7; - remoteInfo = AFNetworking; + remoteGlobalIDString = 7C04B114E32ADD957E35C4494C68D20C; + remoteInfo = NSHash; }; AF8B9C3605A3D697C550055074258E2C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1083,68 +1106,61 @@ remoteGlobalIDString = 837D8A38BD0CFB4D5347E5BE0BEA1ACE; remoteInfo = PHFDelegateChain; }; - AFFACDC925136334C6B22581CF175012 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 68A07EF405FD9BCB32A62DB85FB63511; - remoteInfo = FLEX; - }; - B0B0AE0180EC4128B2F0FB481C4221BD /* PBXContainerItemProxy */ = { + AFD0EFC7311065BC628EFD6D63D6145B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = B38419E3D7B8986645578293B1F181D1; - remoteInfo = DTFoundation; + remoteGlobalIDString = AA62908DC8078B767DFCD87B5953EBD0; + remoteInfo = SWTableViewCell; }; - B0C273591911DBC7C21BBA68AD5F3F32 /* PBXContainerItemProxy */ = { + B102A8E91BD02EF3C589A23BFBE571A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 737B292D75C310BEABC0A1E64C6F7BF9; - remoteInfo = SWTableViewCell; + remoteGlobalIDString = 6D3CC2E1481FD4B03969ECA2FF3F07A8; + remoteInfo = NSGIF; }; - B2984DB82BFDB68F6D1416CD536A5C78 /* PBXContainerItemProxy */ = { + B4A0FBA820D3CB1BCCA0B073A9A67380 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = E468869C9F239CDEC39C115A4A20C6E6; - remoteInfo = DHSmartScreenshot; + remoteGlobalIDString = 0D83E505BF1E81A4AAA9A3A5CAA45E9E; + remoteInfo = JDStatusBarNotification; }; - C2DD8828A7E974F53D61F11CAC94A714 /* PBXContainerItemProxy */ = { + B58B75AAC88D3471529CFD85188836A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = AC4A322988F097B1E752EB3107D61DE9; - remoteInfo = Reachability; + remoteGlobalIDString = BF5E8492AD833171E67A19F798CC6361; + remoteInfo = IQAudioRecorderController; }; - CE88933B2445896469287DFDE36EECB6 /* PBXContainerItemProxy */ = { + C3C621927DB26786A3538F819639686D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 873C7309AA18799758A65F0365980447; - remoteInfo = SWFrameButton; + remoteGlobalIDString = 7891E2B724C54EF58FB1692B34F1455C; + remoteInfo = HMSegmentedControl; }; - D5BEDE633A871FA42E5341B5CFEA6FAD /* PBXContainerItemProxy */ = { + C5580714289C2FA3CDC889265D9F91D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = BF5E8492AD833171E67A19F798CC6361; - remoteInfo = IQAudioRecorderController; + remoteGlobalIDString = 1D510000CA4286F8B156EA1072E272E2; + remoteInfo = RMActionController; }; - D64C104EDE800E9E0FF20E02995E9B7D /* PBXContainerItemProxy */ = { + CD6DDA6D377B711A3FC09CD38472B9A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = D489A576D192C4A3D7258B2B0D252687; + remoteGlobalIDString = 06ADBD054C6E5882D76A8551D8DD2137; remoteInfo = SocketRocket; }; - D73D7DE7A10D76B6B15EFD573C9E3BC3 /* PBXContainerItemProxy */ = { + DF414A362A322D22C3EB22C43B6C73D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C04B114E32ADD957E35C4494C68D20C; - remoteInfo = NSHash; + remoteGlobalIDString = A933F6535B61DFEAA2A004FCA147B24E; + remoteInfo = SZTextView; }; DFF9654EB4EE42317C4F79D7461CC365 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1160,1053 +1176,1057 @@ remoteGlobalIDString = CF671F7E57B92905F1CC91D036D6B4A7; remoteInfo = AFNetworking; }; - E4C33CAFAE2ED160B5AF24ABAED537E7 /* PBXContainerItemProxy */ = { + E66A56AE650056EB6BD58D191E8B3C7C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = EFF460C9BA4EC9CAC17FB22B45CF7087; - remoteInfo = RMDateSelectionViewController; + remoteGlobalIDString = 7621630BF9979CD340446B0404B671CD; + remoteInfo = AHKActionSheet; }; - E681FE08411A303E97BC9FDDFD71A7E8 /* PBXContainerItemProxy */ = { + ED541B15D802A61C517B073CD28DFA17 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = CD123DC977E692354FA6A7EA93F0B7FD; - remoteInfo = SDWebImage; + remoteGlobalIDString = FF0CDCF65A1A776251C0F82587A23D26; + remoteInfo = BBBadgeBarButtonItem; }; - F106BD52A84ED99F92CDF3D7A766AD74 /* PBXContainerItemProxy */ = { + F09A9F3BEC60FB4D5C40F9CE0CA98C9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3CEE63E62D7471CD5C9C5F050A44AF25; - remoteInfo = SBJson; + remoteGlobalIDString = 923C199FC8844D48B6E4D0E9B013C7C4; + remoteInfo = SCSiriWaveformView; }; - F784F86859E68BD449A1385AE0264B6A /* PBXContainerItemProxy */ = { + F0F68A14FC7939890FCD6BB61F2350B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7621630BF9979CD340446B0404B671CD; - remoteInfo = AHKActionSheet; + remoteGlobalIDString = AC5CB584FDF5D4603E4712F88F10EF70; + remoteInfo = RMDateSelectionViewController; }; - FDF3C877EE147F0DC406BDD0790D1FA3 /* PBXContainerItemProxy */ = { + F701681582EEDB4CFD977941701C5B5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = FF0CDCF65A1A776251C0F82587A23D26; - remoteInfo = BBBadgeBarButtonItem; + remoteGlobalIDString = 8B20CAEEA320DAD747BB08D1128BDD90; + remoteInfo = APAddressBook; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 006F5DF90D73F11F20B7C011D013B0FF /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; - 00CD0096163303089090DBCEBA18B2EB /* FLEXRuntimeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXRuntimeUtility.m; path = Classes/Utility/FLEXRuntimeUtility.m; sourceTree = ""; }; - 01BF7058E82E1B94ADA5D0DB5024284A /* NBPhoneNumberDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumberDefines.h; path = libPhoneNumber/NBPhoneNumberDefines.h; sourceTree = ""; }; - 020C7CC239DC1B51AE13D342D0A448E4 /* FLEXObjectExplorerFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerFactory.m; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.m; sourceTree = ""; }; - 024659C127EE084D75B055A52C405C18 /* MBProgressHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MBProgressHUD.framework; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 02686E0CF74BC021364E1FCFD9182253 /* TDOAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TDOAuth.h; sourceTree = ""; }; - 02FB53BD80F9E693CCEFE91A6913631E /* FLEXTableContentCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.m; sourceTree = ""; }; - 0312FADF49B7C11C83B068BDFCC8A389 /* APName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APName.m; path = Pod/Core/Public/Models/APName.m; sourceTree = ""; }; - 034FC560852D843D7EE74446572B1500 /* DTCSSListStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSListStyle.m; path = Core/Source/DTCSSListStyle.m; sourceTree = ""; }; - 038C048AEC1AC881BD6542FDA576CCD6 /* FLEXDefaultEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultEditorViewController.h; path = Classes/Editing/FLEXDefaultEditorViewController.h; sourceTree = ""; }; - 03B2F3E108A6144615BB2FE0A1973243 /* INTULocationRequestDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTULocationRequestDefines.h; path = LocationManager/INTULocationManager/INTULocationRequestDefines.h; sourceTree = ""; }; - 040E201D23C3272382C725C339A9E191 /* AFOAuth2Manager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFOAuth2Manager.m; path = AFOAuth2Manager/AFOAuth2Manager.m; sourceTree = ""; }; - 045B91A5BF5EEDBF372D283B73191454 /* SocketRocket.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SocketRocket.framework; path = SocketRocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0493C8D6F6FD24B70E545E1E3BD44251 /* JSCoreBom-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSCoreBom-prefix.pch"; sourceTree = ""; }; - 04C37143C60B15F7D3623A979BA03682 /* stop_recording@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_recording@3x.png"; path = "IQAudioRecorderController/Resources/stop_recording@3x.png"; sourceTree = ""; }; - 04D7FCA56D9DBBFCA31D8B8876ADDB75 /* NSString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+HTML.m"; path = "Core/Source/NSString+HTML.m"; sourceTree = ""; }; - 04DD86302A9328F626FDBC2E8D7D4B78 /* NBMetadataCoreTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCoreTest.h; path = libPhoneNumber/NBMetadataCoreTest.h; sourceTree = ""; }; - 053918D19F6788BB4E459863CCC4FFA1 /* icon-info@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-info@2x.png"; path = "Classes/Icons/icon-info@2x.png"; sourceTree = ""; }; - 0549E8B30812A37F8080094C051355C2 /* JDStatusBarNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarNotification.h; path = JDStatusBarNotification/JDStatusBarNotification.h; sourceTree = ""; }; - 05E51E2B41499156289712F0F5CB1FE4 /* AHKActionSheet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AHKActionSheet.m; path = Classes/AHKActionSheet.m; sourceTree = ""; }; - 06BDE56198FDC500D30CC7B9EDC5603F /* APAddressBook.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = APAddressBook.framework; path = APAddressBook.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 06C75C23F252BB51915F65B3ECF70673 /* NSAttributedStringRunDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NSAttributedStringRunDelegates.h; path = Core/Source/NSAttributedStringRunDelegates.h; sourceTree = ""; }; - 0755AE89CD035E9EF4ED421F9AC74E5C /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - 0757AA60C7AFE8F5B0E623F05C99D58A /* APAddressBook.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = APAddressBook.modulemap; sourceTree = ""; }; - 076729FF1E116C658D7E8A5D4FA4E203 /* BBBadgeBarButtonItem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BBBadgeBarButtonItem-dummy.m"; sourceTree = ""; }; - 07E887CCADBD65BDE9E6F3376E81E059 /* FLEXHeapEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHeapEnumerator.m; path = Classes/Utility/FLEXHeapEnumerator.m; sourceTree = ""; }; - 07EC5431E7247BDD4BB15FE4A96D8AA2 /* NBMetadataCore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCore.m; path = libPhoneNumber/NBMetadataCore.m; sourceTree = ""; }; - 080E2B037A44BC16B4F78781D1BA4A09 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/NSData+ImageContentType.h"; sourceTree = ""; }; - 081A951F80BADFA3899D013497451EC9 /* NSData+DTCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+DTCrypto.m"; path = "Core/Source/NSData+DTCrypto.m"; sourceTree = ""; }; - 0878523EEBFED18E36A91E503D2BA72F /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; }; - 08940494FC681FDF38E8AD6BF49997FB /* FLEXArgumentInputJSONObjectView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputJSONObjectView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.m; sourceTree = ""; }; - 0895CE05DDD499C7B964F366FE26BD30 /* SBJson4StreamWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriter.h; path = src/main/objc/SBJson4StreamWriter.h; sourceTree = ""; }; - 08E8C62C8C05873DC8732649A266DD92 /* NSString+CSS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+CSS.m"; path = "Core/Source/NSString+CSS.m"; sourceTree = ""; }; - 08F94363765D157922E0FDE17241FA47 /* RMDateSelectionViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RMDateSelectionViewController-dummy.m"; sourceTree = ""; }; - 08FD2A26F2B494DB7A793A9FA5699164 /* NBPhoneNumberUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumberUtil.m; path = libPhoneNumber/NBPhoneNumberUtil.m; sourceTree = ""; }; - 09DAD75D5B021553010649117A69BE65 /* DAKeyboardControl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DAKeyboardControl.framework; path = DAKeyboardControl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0A015FA5487709777444D151C8254BE4 /* DTCoreTextLayoutLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutLine.m; path = Core/Source/DTCoreTextLayoutLine.m; sourceTree = ""; }; - 0A1691C62AF6DD8C051D7AC505C7E17B /* APEmail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APEmail.h; path = Pod/Core/Public/Models/APEmail.h; sourceTree = ""; }; - 0A2A66B886BF38C867405EE7722AE4B8 /* SocketRocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SocketRocket-dummy.m"; sourceTree = ""; }; - 0A35FB69C15AF0275435E3E7ECB63620 /* FLEXArgumentInputStringView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStringView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.m; sourceTree = ""; }; - 0AA81BF722910FBA73BAE6061C231573 /* NBNumberFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBNumberFormat.h; path = libPhoneNumber/NBNumberFormat.h; sourceTree = ""; }; - 0AAE597B678E628668F66C5BB6873F1F /* FLEXDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h; sourceTree = ""; }; - 0ADB171941808C54FB2633916A17D08C /* JDStatusBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarView.h; path = JDStatusBarNotification/JDStatusBarView.h; sourceTree = ""; }; - 0B6EB2B5A346C307DFA2BD04E436D592 /* SBJson-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SBJson-umbrella.h"; sourceTree = ""; }; - 0BC48019E000E5DD480ADCD47F8A9033 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; - 0C03D9EBD38C0DA44A7C497E64325269 /* APPhone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APPhone.h; path = Pod/Core/Public/Models/APPhone.h; sourceTree = ""; }; - 0C2070FA75E79BD3EED3558F5EE498DA /* TTTAttributedLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TTTAttributedLabel.m; path = TTTAttributedLabel/TTTAttributedLabel.m; sourceTree = ""; }; - 0C90C4CAF67B763BB603C833E56D32AA /* SWFrameButton.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SWFrameButton.framework; path = SWFrameButton.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0CC8CA1A2411789038BE7CFB2B2AD87F /* NSString+DTUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTUtilities.m"; path = "Core/Source/NSString+DTUtilities.m"; sourceTree = ""; }; - 0CD600B2CAF750077BE9ABB830D9473A /* FLEXArgumentInputNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNumberView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.h; sourceTree = ""; }; - 0D8BDD174D97C75E751A93105DB96A98 /* UIFont+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DTCoreText.h"; path = "Core/Source/UIFont+DTCoreText.h"; sourceTree = ""; }; - 0E05AE7BBAB418ADA03DE7B6121E2B18 /* DTCoreText.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DTCoreText.framework; path = DTCoreText.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0E355C6423D3D40D0AEA2368BB53BC3F /* DTCoreTextLayoutFrame+Cursor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTCoreTextLayoutFrame+Cursor.m"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.m"; sourceTree = ""; }; - 0EEB8EA978E33681A9406C3C9B9BBBEA /* UIScrollView+DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+DHSmartScreenshot.h"; path = "Classes/UIScrollView+DHSmartScreenshot.h"; sourceTree = ""; }; - 0F39DC88F75372014C667F99DC67C63C /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = ""; }; - 0F616AFDD8846E1B508E4F9BF690E1DD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 0FA2AECF983D5FFC3CA773311BF56DF6 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; }; - 0FCBDF21DF6C15FF900AE4FE424D35B0 /* SBJson-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SBJson-prefix.pch"; sourceTree = ""; }; - 103498FC5695C98428B1A54FE6F0D0DE /* Pods_Jasonette.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Jasonette.framework; path = "Pods-Jasonette.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1084A29B0AFE32DF75516BECCB56623E /* NSString+DTFormatNumbers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTFormatNumbers.m"; path = "Core/Source/NSString+DTFormatNumbers.m"; sourceTree = ""; }; - 108A838DA8BB27D43022CDA8610A7B1A /* FLEXHeapEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHeapEnumerator.h; path = Classes/Utility/FLEXHeapEnumerator.h; sourceTree = ""; }; - 10BF0E99CC1D54C413640ED25F21086E /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; - 10DD8D8C669AD8B9CB35E643E28A51A3 /* DTSmartPagingScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTSmartPagingScrollView.m; path = Core/Source/iOS/DTSmartPagingScrollView.m; sourceTree = ""; }; - 115407352E7C9A00474354765D0ED9CC /* JDStatusBarNotification.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JDStatusBarNotification.xcconfig; sourceTree = ""; }; - 119976D323FBDA68F9CD0BD32E77E66B /* CYRLayoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRLayoutManager.h; path = CYRTextView/CYRLayoutManager.h; sourceTree = ""; }; - 11A7A22D734B142B99B50995F207F8FC /* SBJson.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SBJson.modulemap; sourceTree = ""; }; - 11C371E3BF8CF202640B1FAA7FAFE95E /* APAddressBookRefWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookRefWrapper.h; path = Pod/Core/Private/Wrapper/APAddressBookRefWrapper.h; sourceTree = ""; }; - 11D0EE7F78AF196294BD0F7B51774F5B /* DTWebVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWebVideoView.h; path = Core/Source/DTWebVideoView.h; sourceTree = ""; }; - 12084775717090174509AFC9E241F704 /* REMenuItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenuItem.h; path = REMenu/REMenuItem.h; sourceTree = ""; }; - 12156D6239503B7873705ADBF2CC3E76 /* stream_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_configuration.h; path = FreeStreamer/FreeStreamer/stream_configuration.h; sourceTree = ""; }; - 122A931C5F2B9DCCA1BF7D53ED48C94C /* microphone_access.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = microphone_access.png; path = IQAudioRecorderController/Resources/microphone_access.png; sourceTree = ""; }; - 122C554953A5F7E29573AE46483E12FA /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.h; sourceTree = ""; }; - 12692D9853407786F7ABCDF0D2A6BF9A /* SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRWebSocket.m; path = SocketRocket/SRWebSocket.m; sourceTree = ""; }; - 12CB3BB53450A1BB7EE3C11C0C980F43 /* FLEXExplorerToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXExplorerToolbar.h; path = Classes/Toolbar/FLEXExplorerToolbar.h; sourceTree = ""; }; - 130C8BE4F5ED4816CDE2258EA942FE81 /* REMenu.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = REMenu.modulemap; sourceTree = ""; }; - 130DDCB98FF206F89F0DF05AAE88E924 /* DTWeakSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWeakSupport.h; path = Core/Source/DTWeakSupport.h; sourceTree = ""; }; - 1317F77FD15006BF5767B04589D3F26A /* FLEXSystemLogTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewCell.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.m; sourceTree = ""; }; + 00635D15C733B60A45B76861727DFAB3 /* NBMetadataCoreTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCoreTest.h; path = libPhoneNumber/NBMetadataCoreTest.h; sourceTree = ""; }; + 0101CFD9A46B816F8AC07A639D46C7EB /* AFOAuth2Manager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFOAuth2Manager.m; path = AFOAuth2Manager/AFOAuth2Manager.m; sourceTree = ""; }; + 012EF796BD8A73567E1F91ECF8EA5CCD /* NSString+CSS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+CSS.m"; path = "Core/Source/NSString+CSS.m"; sourceTree = ""; }; + 014C2620DD4AC153C3D4ED69A32B30B2 /* DTAttributedTextCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextCell.m; path = Core/Source/DTAttributedTextCell.m; sourceTree = ""; }; + 014DF03FEFCDAFD9C5E325D32DC9BBA4 /* DTStylesheetHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTStylesheetHTMLElement.h; path = Core/Source/DTStylesheetHTMLElement.h; sourceTree = ""; }; + 01552A9BA705169CFDB6D9F4770184F7 /* HMSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HMSegmentedControl.m; path = HMSegmentedControl/HMSegmentedControl.m; sourceTree = ""; }; + 0162F9D4B37A3556A11153E4A686C39C /* NSAttributedString+DTDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTDebug.h"; path = "Core/Source/NSAttributedString+DTDebug.h"; sourceTree = ""; }; + 017F628317263E52AABBD26A3B49351B /* AHKActionSheet-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHKActionSheet-umbrella.h"; sourceTree = ""; }; + 01D95B644BA56122C1940D6EA857526D /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 0206CABCE3FA09F33271DAF492365437 /* PHFComposeBarView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PHFComposeBarView.modulemap; sourceTree = ""; }; + 0248E1832D8E07DFC0F5F428DE729CFE /* NBMetadataHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataHelper.m; path = libPhoneNumber/NBMetadataHelper.m; sourceTree = ""; }; + 0261F142359AF289F8D0B1CC57E85295 /* FLEX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEX.h; path = Classes/FLEX.h; sourceTree = ""; }; + 02CFE55FF8E3E7ED79143682DDC04B4C /* FLEXObjectExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerViewController.m; path = Classes/ObjectExplorers/FLEXObjectExplorerViewController.m; sourceTree = ""; }; + 02D3C62272F59EB3D2321D19076AECBC /* LTHPasscodeViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LTHPasscodeViewController.h; path = LTHPasscodeViewController/LTHPasscodeViewController.h; sourceTree = ""; }; + 0303C27468E021F1C12D559DE1756A05 /* HMSegmentedControl.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = HMSegmentedControl.modulemap; sourceTree = ""; }; + 030710C35A1C9C2BDE464FFDC0CFD8A3 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; + 0315FC88AD210D29280B9C332300F900 /* FLEXImagePreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImagePreviewViewController.h; path = Classes/ViewHierarchy/FLEXImagePreviewViewController.h; sourceTree = ""; }; + 03767F1B5F097DAC8A2F5AC395E71857 /* UIView+DHSmartScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DHSmartScreenshot.m"; path = "Classes/UIView+DHSmartScreenshot.m"; sourceTree = ""; }; + 037E3CFE69F8B4B8DF03141564FF8440 /* FLEXKeyboardShortcutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardShortcutManager.m; path = Classes/Utility/FLEXKeyboardShortcutManager.m; sourceTree = ""; }; + 03B39D356EA1720021B827DA504A189D /* FLEXRealmDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.h; sourceTree = ""; }; + 03D2B74A207250F2C5F3C7027061DF22 /* DTPieProgressIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTPieProgressIndicator.h; path = Core/Source/iOS/DTPieProgressIndicator.h; sourceTree = ""; }; + 03FFD43406C8ECAB2130F23067CE1EE6 /* DTHTMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLWriter.m; path = Core/Source/DTHTMLWriter.m; sourceTree = ""; }; + 0415BE9419BF1BAC84D0205EB738DFB0 /* FSParsePlaylistRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSParsePlaylistRequest.m; path = FreeStreamer/FreeStreamer/FSParsePlaylistRequest.m; sourceTree = ""; }; + 043229ADADDE01C8FBFE231777181B0F /* caching_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = caching_stream.cpp; path = FreeStreamer/FreeStreamer/caching_stream.cpp; sourceTree = ""; }; + 044F1AF47DE76EA6A7D490AA60887169 /* JSCoreBom.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JSCoreBom.framework; path = JSCoreBom.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 048E5131C8FC71A9F30BD933711391B1 /* REMenuItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenuItem.h; path = REMenu/REMenuItem.h; sourceTree = ""; }; + 04993E4F8B9B91BAF64212810C093704 /* FLEXFieldEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorViewController.m; path = Classes/Editing/FLEXFieldEditorViewController.m; sourceTree = ""; }; + 05B2B125EE0E97DD13DCF4D63552F278 /* FLEXViewControllerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewControllerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h; sourceTree = ""; }; + 05BA6862886699895DF0966C744DDF6A /* FLEXArgumentInputTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputTextView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.m; sourceTree = ""; }; + 05DCCE465F94E5C9893C80E38E7B8DC6 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 063A2EB52BA67037EEFEE3651CF4545F /* FLEXNetworkObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkObserver.m; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.m; sourceTree = ""; }; + 063FEA40204B085789BB6EBF7ED7E193 /* PHFDelegateChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PHFDelegateChain.h; sourceTree = ""; }; + 068981582F1C670B8C42584C5A3CDEED /* DTHTMLParserTextNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserTextNode.h; path = Core/Source/DTHTMLParserTextNode.h; sourceTree = ""; }; + 0690638056E11072CE1A38CE01F3DED5 /* FSCheckContentTypeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSCheckContentTypeRequest.m; path = FreeStreamer/FreeStreamer/FSCheckContentTypeRequest.m; sourceTree = ""; }; + 06B3A4DACC1099D885AB05799096E109 /* SCSiriWaveformView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SCSiriWaveformView.modulemap; sourceTree = ""; }; + 06FA7E2DC52A78D8518427E023ACA843 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 07949F7B287782EC782E9871C85CEC94 /* SWTableViewCell.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWTableViewCell.xcconfig; sourceTree = ""; }; + 07B1272DD6790F6324EE3D1928904137 /* DTTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachment.h; path = Core/Source/DTTextAttachment.h; sourceTree = ""; }; + 07D1330B53BC9692892AE7E7E2702790 /* FLEXArgumentInputViewFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputViewFactory.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.m; sourceTree = ""; }; + 07D8F0B43B5B32E5781B4A4539F13DD7 /* APRecordDate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APRecordDate.h; path = Pod/Core/Public/Models/APRecordDate.h; sourceTree = ""; }; + 07F72CCAC5B024234CB3D9359D2ED3F0 /* IQCropSelectionBeginView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQCropSelectionBeginView.m; path = IQAudioRecorderController/IQCropSelectionBeginView.m; sourceTree = ""; }; + 0817826FCACA52B28DD9612AC33D511C /* DTSmartPagingScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTSmartPagingScrollView.h; path = Core/Source/iOS/DTSmartPagingScrollView.h; sourceTree = ""; }; + 082427ECF6CCB82459A8091714C81274 /* JDStatusBarNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JDStatusBarNotification-dummy.m"; sourceTree = ""; }; + 087EA7C286CC34A7F91AC04CD4CBF5C0 /* DTAccessibilityViewProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityViewProxy.m; path = Core/Source/DTAccessibilityViewProxy.m; sourceTree = ""; }; + 08D06236C3B63EF5F56EE7B546F81A5F /* FLEXArgumentInputJSONObjectView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputJSONObjectView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.m; sourceTree = ""; }; + 08F973611268CF1E7B22E5C38A33B87B /* FLEXClassExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXClassExplorerViewController.h; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.h; sourceTree = ""; }; + 090AD8191C338EC210B300BBD100044A /* NSString+Paragraphs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Paragraphs.h"; path = "Core/Source/NSString+Paragraphs.h"; sourceTree = ""; }; + 09601A063C8FAF8E78B9CE3F57E326A6 /* APAddressBookAccessRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookAccessRoutine.h; path = Pod/Core/Private/Routine/APAddressBookAccessRoutine.h; sourceTree = ""; }; + 09B24B6B33A2686A74454B4C779F0263 /* NSURL+DTAppLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTAppLinks.h"; path = "Core/Source/iOS/NSURL+DTAppLinks.h"; sourceTree = ""; }; + 09BB601B0BA8D6785F279BEF89D6AAC7 /* PHFComposeBarView_TextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PHFComposeBarView_TextView.m; path = Classes/PHFComposeBarView_TextView.m; sourceTree = ""; }; + 09E65E0C50C42F3D594159D4C226099B /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; + 0A42920D8678261E0DD0A28DD10B827A /* DTCoreTextMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextMacros.h; path = Core/Source/DTCoreTextMacros.h; sourceTree = ""; }; + 0A5A0308174AF310E81EF277B06D095D /* APAddressBookBaseRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookBaseRoutine.m; path = Pod/Core/Private/Routine/Base/APAddressBookBaseRoutine.m; sourceTree = ""; }; + 0A9D4D1C84F647FF9C12D7E78C4B2C22 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; + 0AD72999DD51572F0D84637685DC7124 /* APPhone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APPhone.h; path = Pod/Core/Public/Models/APPhone.h; sourceTree = ""; }; + 0AE80EDFD79B622C8177FCA186601515 /* BBBadgeBarButtonItem.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = BBBadgeBarButtonItem.modulemap; sourceTree = ""; }; + 0C033C0EE41ADEDE3D36C8F2EB2877C5 /* ModuleXMLHttpRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ModuleXMLHttpRequest.h; path = JSCoreBom/Modules/ModuleXMLHttpRequest.h; sourceTree = ""; }; + 0C6218A4CDA1B7FBFE4E1507FD1BF471 /* microphone_access@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "microphone_access@2x.png"; path = "IQAudioRecorderController/Resources/microphone_access@2x.png"; sourceTree = ""; }; + 0C9313DB8F0D00C4A6808079D9893FEF /* DTFoundationConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFoundationConstants.h; path = Core/Source/DTFoundationConstants.h; sourceTree = ""; }; + 0CA0CBA57EF7D73AD6D4EC56947B8874 /* HMSegmentedControl-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HMSegmentedControl-umbrella.h"; sourceTree = ""; }; + 0CC7436C6FC16CFE94217D3CA14B25B3 /* NSAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+HTML.m"; path = "Core/Source/NSAttributedString+HTML.m"; sourceTree = ""; }; + 0D44E2A180C0B49A3125C97FFDA91B92 /* UIApplication+DTNetworkActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DTNetworkActivity.m"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.m"; sourceTree = ""; }; + 0D56F9BF3379327796677C4E9D8145D5 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + 0DE792381F1478293331396A5487E1FD /* scissor@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "scissor@2x.png"; path = "IQAudioRecorderController/Resources/scissor@2x.png"; sourceTree = ""; }; + 0DF8A3876241814FDB93899B1FB843B4 /* NBNumberFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBNumberFormat.h; path = libPhoneNumber/NBNumberFormat.h; sourceTree = ""; }; + 0E3725FE5A9F08FF6DA978D65A4E0147 /* INTUHeadingRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTUHeadingRequest.h; path = LocationManager/INTULocationManager/INTUHeadingRequest.h; sourceTree = ""; }; + 0E3885EA2F6F8EA79A02507145466453 /* RMDateSelectionViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RMDateSelectionViewController.framework; path = RMDateSelectionViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F276140F3A59CE005F1799A31CE5A5B /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/NSData+ImageContentType.h"; sourceTree = ""; }; + 0F86C9C4F05F2541956E658A05E32A4C /* TTTAttributedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TTTAttributedLabel.h; path = TTTAttributedLabel/TTTAttributedLabel.h; sourceTree = ""; }; + 0FA4142B1C3E1E90AB6F51F9551C82C1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 0FF809D7C8A771B6B5E95255540E0A4E /* file_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = file_stream.cpp; path = FreeStreamer/FreeStreamer/file_stream.cpp; sourceTree = ""; }; + 10021409A11D009223ECB1B5899563E1 /* FreeStreamer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FreeStreamer-dummy.m"; sourceTree = ""; }; + 1015A993C8DDA9E33B16E701E2C225E5 /* INTULocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTULocationManager.h; path = LocationManager/INTULocationManager/INTULocationManager.h; sourceTree = ""; }; + 1024CC01CA67B22B6C50F2231D39A0A4 /* SWTableViewCell-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWTableViewCell-umbrella.h"; sourceTree = ""; }; + 1041C908547991E1675333591F52D6A4 /* SZTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SZTextView.modulemap; sourceTree = ""; }; + 1056257729341D8053BB57A257C477CD /* SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRWebSocket.h; path = SocketRocket/SRWebSocket.h; sourceTree = ""; }; + 106C5D3DE116D12C5BAE526145C74EFA /* SZTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SZTextView-dummy.m"; sourceTree = ""; }; + 10B26115E7767C4804D1EDC76AB1F11F /* DTExtendedFileAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTExtendedFileAttributes.h; path = Core/Source/DTExtendedFileAttributes.h; sourceTree = ""; }; + 10E0F6026C083FAD1E5D616635326E13 /* FLEX-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-umbrella.h"; sourceTree = ""; }; + 110A659F0FD6F837104237CD578A5849 /* DTWeakSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWeakSupport.h; path = Core/Source/DTWeakSupport.h; sourceTree = ""; }; + 11E599127B18318C230AE43EEE505203 /* DTCoreTextConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextConstants.m; path = Core/Source/DTCoreTextConstants.m; sourceTree = ""; }; + 11F10C9D2B7AE2B13FD1823A4357B03E /* TDOAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TDOAuth.m; sourceTree = ""; }; + 12165B6AE64ACFC0C5559CA572474308 /* id3_parser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = id3_parser.cpp; path = FreeStreamer/FreeStreamer/id3_parser.cpp; sourceTree = ""; }; + 12351F6D22B6F911A34F3E8D380B83BE /* AFOAuth2Manager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFOAuth2Manager.xcconfig; sourceTree = ""; }; + 127F23ED467FC6FA7D2245540EB65EC8 /* FLEXHierarchyTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewCell.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.h; sourceTree = ""; }; + 12A37A05811BA7B0470FF6C03F050AFF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 12CFE418593A5798C672D683464B13AC /* TWMessageBarManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TWMessageBarManager.framework; path = TWMessageBarManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 132CBD8039AB22A1AB13B5561670BBE0 /* Pods-Jasonette.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Jasonette.debug.xcconfig"; sourceTree = ""; }; - 13A03E87547620D3250671D51406E42C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 141B483A7A2A3B10B4C0236A5FD3FCEE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 14CD351389B2999174E87C8FCB08E70A /* NSFileWrapper+DTCopying.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileWrapper+DTCopying.m"; path = "Core/Source/NSFileWrapper+DTCopying.m"; sourceTree = ""; }; - 1516D56D294867909E2B2A56F41BC3DC /* AFOAuth2Manager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFOAuth2Manager-umbrella.h"; sourceTree = ""; }; - 15289FFA31CB8914A3AA50B2B298581C /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; - 1536793F3F8EE667AEE062528C222BAD /* audio_record.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = audio_record.png; path = IQAudioRecorderController/Resources/audio_record.png; sourceTree = ""; }; - 1562E015955FD1934E4E64758BEBCF8B /* DTFoundationConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFoundationConstants.h; path = Core/Source/DTFoundationConstants.h; sourceTree = ""; }; - 156494AADBDCE611D5119B5898E1CB3B /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; - 158DCCD09FF240D89E85FBD2D08761E1 /* DTCSSListStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSListStyle.h; path = Core/Source/DTCSSListStyle.h; sourceTree = ""; }; - 15AD98A7601BF79DE9032118EE3C41BD /* TTTAttributedLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TTTAttributedLabel.xcconfig; sourceTree = ""; }; - 15B07FF1E06C53DCB8B217AA9478784B /* AFOAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFOAuthCredential.m; path = AFOAuth2Manager/AFOAuthCredential.m; sourceTree = ""; }; - 15C6050D05882AAFB317DEF59F504E2C /* PHFComposeBarView_Button.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PHFComposeBarView_Button.m; path = Classes/PHFComposeBarView_Button.m; sourceTree = ""; }; - 1641FD8BEFD082B0968380956D839205 /* DTCoreTextFontCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontCollection.h; path = Core/Source/DTCoreTextFontCollection.h; sourceTree = ""; }; - 16B396BF03C427E03EEFD37C3BC1D226 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 180A153A5ABC25A4499EA583C1F5DCFB /* DTIframeTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTIframeTextAttachment.m; path = Core/Source/DTIframeTextAttachment.m; sourceTree = ""; }; - 180ED4C1D861F17330C280402F22F8BE /* NBMetadataCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCore.h; path = libPhoneNumber/NBMetadataCore.h; sourceTree = ""; }; - 183D684EA39FFD04AE9CDCC63D54F89E /* AFOAuth2Manager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFOAuth2Manager.xcconfig; sourceTree = ""; }; - 1892499FF6ABB4BC6ECA5C278874732C /* SRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SRWebSocket.h; path = SocketRocket/SRWebSocket.h; sourceTree = ""; }; - 19BCF56C866E8F0E31FB2A393998DE88 /* AHKActionSheet.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHKActionSheet.modulemap; sourceTree = ""; }; - 19C5C9A1E685649D00865BE009078CF1 /* NSString+CSS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+CSS.h"; path = "Core/Source/NSString+CSS.h"; sourceTree = ""; }; - 19CC7EE299EB36BDEFA0676D6B5854C5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 1A25E4D2337CDEF01767C153CE059BF2 /* FSXMLHttpRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSXMLHttpRequest.h; path = FreeStreamer/FreeStreamer/FSXMLHttpRequest.h; sourceTree = ""; }; - 1A2C70A86A3A3133641EC1644269E85D /* REMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenu.h; path = REMenu/REMenu.h; sourceTree = ""; }; - 1AADB332BAF7AC2F10DEA096D6251DA5 /* DTExtendedFileAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTExtendedFileAttributes.m; path = Core/Source/DTExtendedFileAttributes.m; sourceTree = ""; }; - 1AF13900A4EB5916DC5137CBD5F10F89 /* FLEXFieldEditorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorView.m; path = Classes/Editing/FLEXFieldEditorView.m; sourceTree = ""; }; - 1B2DAB2EAECA5E58F09083AF2C3A8DE7 /* Reachability.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Reachability.modulemap; sourceTree = ""; }; - 1B890BDB0CF573A2D22AA397765D0DA9 /* AHKActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHKActionSheet.xcconfig; sourceTree = ""; }; - 1BE5DAA3DB03B6727463F8E26C96116A /* ModuleConsole.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ModuleConsole.h; path = JSCoreBom/Modules/ModuleConsole.h; sourceTree = ""; }; - 1BEE37C5508DD5FE4F1A8C06786DBFFA /* APContactDate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactDate.m; path = Pod/Core/Public/Models/APContactDate.m; sourceTree = ""; }; - 1C0BD8379E7A200C9C4BE1214D722148 /* AFOAuth2Manager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AFOAuth2Manager.modulemap; sourceTree = ""; }; - 1C12D2DB546FE642EDF610F81CEAE486 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; - 1C253CE3C4A37FA076B9CCEA3C53AF1F /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - 1C3B508E8776DD92B702C42B11FCCDAA /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; }; - 1C4536B36BA69FB7F8C32354B67E1F04 /* DTLinkButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLinkButton.h; path = Core/Source/DTLinkButton.h; sourceTree = ""; }; - 1C7511B5F96F22674085EDB2EE767FCE /* IQCropSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQCropSelectionView.h; path = IQAudioRecorderController/IQCropSelectionView.h; sourceTree = ""; }; - 1C7D7A5CB8757D7E775CBCD5252CB541 /* BBBadgeBarButtonItem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BBBadgeBarButtonItem.xcconfig; sourceTree = ""; }; - 1D43754D9C3D62AA088AD266E9F399A4 /* NSMutableAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+HTML.m"; path = "Core/Source/NSMutableAttributedString+HTML.m"; sourceTree = ""; }; - 1D62F72130DA5FB0010644C5E51B4E81 /* NSHash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSHash.xcconfig; sourceTree = ""; }; + 133F6757D510EF372EA3961988FDFC55 /* NSFileWrapper+DTCopying.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileWrapper+DTCopying.m"; path = "Core/Source/NSFileWrapper+DTCopying.m"; sourceTree = ""; }; + 134A5AEF25827855A883D162D3546180 /* icon-success@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-success@2x.png"; path = "Classes/Icons/icon-success@2x.png"; sourceTree = ""; }; + 138BB209C0934ED4E38AA814B0C3EF36 /* FLEXArgumentInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.h; sourceTree = ""; }; + 139A19CB7D0AF2B732A85C427EBCFE93 /* FLEXTableListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableListViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.m; sourceTree = ""; }; + 13D6C686C023236F9439EF6F410FB435 /* FLEXGlobalsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXGlobalsTableViewController.h; path = Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.h; sourceTree = ""; }; + 146C205745CA0ABD5D476BF3250E9A5D /* DTHTMLParserNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserNode.m; path = Core/Source/DTHTMLParserNode.m; sourceTree = ""; }; + 14B918A2132BD82082457A0A6DAF0571 /* DTActivityTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTActivityTitleView.m; path = Core/Source/iOS/DTActivityTitleView.m; sourceTree = ""; }; + 153B529F0D5C7F718F3731D16A95E512 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 15D45D910259C556D344D0D5700110A5 /* RMDateSelectionViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMDateSelectionViewController-prefix.pch"; sourceTree = ""; }; + 160F4330B53A80491CD4DFE1F77F0FDB /* DTObjectTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTObjectTextAttachment.h; path = Core/Source/DTObjectTextAttachment.h; sourceTree = ""; }; + 1648B28B38DC7C4DD21B6AF3381D8DD9 /* LTHPasscodeViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LTHPasscodeViewController-prefix.pch"; sourceTree = ""; }; + 168507772F60842626535B6D314E37BD /* audio_record.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = audio_record.png; path = IQAudioRecorderController/Resources/audio_record.png; sourceTree = ""; }; + 16DF0509DBA6FA52FD6A42F206E6217C /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = ""; }; + 17B1CF4342199C64785EE0088C953764 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; }; + 17DA5D3EE0388C64C8C7138166C1FC95 /* APJob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APJob.h; path = Pod/Core/Public/Models/APJob.h; sourceTree = ""; }; + 184565290E400D5F1669ED087A84498F /* AHKActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHKActionSheet-prefix.pch"; sourceTree = ""; }; + 188393816F1A6E8BBB18E975382CB3DC /* DTCoreTextLayoutFrame+Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTCoreTextLayoutFrame+Cursor.h"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.h"; sourceTree = ""; }; + 18C5C76A35972C73B3E9598292DED579 /* FLEXManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXManager.h; path = Classes/FLEXManager.h; sourceTree = ""; }; + 19322A89ED64434609B19ADB519A5D3C /* FLEXArgumentInputColorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputColorView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.h; sourceTree = ""; }; + 194BB7F7B7F9D8652A18027DC837A9A2 /* OMGHTTPURLRQ-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OMGHTTPURLRQ-prefix.pch"; sourceTree = ""; }; + 19E3E5E5C1A179B8DF88D9FBE1DA7AD9 /* DTLazyImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLazyImageView.m; path = Core/Source/DTLazyImageView.m; sourceTree = ""; }; + 1A29FCD1F6E9D037888CEF089C038AA5 /* FLEXNetworkTransactionDetailTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionDetailTableViewController.h; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.h; sourceTree = ""; }; + 1AD3EBA32868169EA6246263F27F5DD1 /* REMenu.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = REMenu.modulemap; sourceTree = ""; }; + 1ADFA8E8A10AE28983E43456E577907C /* JSCoreBom-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JSCoreBom-dummy.m"; sourceTree = ""; }; + 1B23A2EBC56C08DC287AFBAAE1ADD8F1 /* FLEXArgumentInputColorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputColorView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.m; sourceTree = ""; }; + 1B8D24FD31809BD7CC80669F0A5EBC98 /* LTHPasscodeViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = LTHPasscodeViewController.modulemap; sourceTree = ""; }; + 1C1006944B9811BFE73CDD8019C59AD0 /* NSMutableArray+DTMoving.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableArray+DTMoving.m"; path = "Core/Source/NSMutableArray+DTMoving.m"; sourceTree = ""; }; + 1C1BC4738EF32F1448B2EC0E72D30DF5 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + 1C51BD85D38D34971F30C792EAC79B4B /* APAddressBookRefWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookRefWrapper.h; path = Pod/Core/Private/Wrapper/APAddressBookRefWrapper.h; sourceTree = ""; }; + 1C65AFC62CA31D4715CCB2040BD43198 /* DTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLog.h; path = Core/Source/DTLog.h; sourceTree = ""; }; + 1CDB95DA868100191585DA899E92326B /* HMSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMSegmentedControl.h; path = HMSegmentedControl/HMSegmentedControl.h; sourceTree = ""; }; + 1D3432B961B88D0CD5A745EA7400F354 /* UIScrollView+DHSmartScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+DHSmartScreenshot.m"; path = "Classes/UIScrollView+DHSmartScreenshot.m"; sourceTree = ""; }; + 1D580EDB55DF5456D24128C5034AD356 /* DTBase64Coding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBase64Coding.m; path = Core/Source/DTBase64Coding.m; sourceTree = ""; }; 1D6BC835E02EEA69C59A9013B89F47A1 /* Pods-Jasonette-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Jasonette-frameworks.sh"; sourceTree = ""; }; - 1D8A700A314F421755581AC645CF78C2 /* SBJson4StreamWriterState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriterState.h; path = src/main/objc/SBJson4StreamWriterState.h; sourceTree = ""; }; - 1DA4A73EB8718A06D9A4AC73EBC93614 /* Reachability.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Reachability.framework; path = Reachability.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1E555704CECF6684684EFE7F1ECA2858 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 1EAD34DFC67E1B8795F900627C74E1F8 /* DTAttributedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedLabel.h; path = Core/Source/DTAttributedLabel.h; sourceTree = ""; }; - 1ED70B0D12F67CBCFF4E17F833FEFB4D /* FLEXWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXWindow.h; path = Classes/ExplorerInterface/FLEXWindow.h; sourceTree = ""; }; - 1ED9F9D880CBDF43B4A25BBA65E0B2A0 /* SBJson4StreamTokeniser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamTokeniser.h; path = src/main/objc/SBJson4StreamTokeniser.h; sourceTree = ""; }; - 1F37F30A7564A654146F3BF2A838B31F /* OMGUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OMGUserAgent.m; path = Sources/OMGUserAgent.m; sourceTree = ""; }; - 1F90A2AB9DE6A83A61E66BBEA92BA0B8 /* NBMetadataCoreMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCoreMapper.m; path = libPhoneNumber/NBMetadataCoreMapper.m; sourceTree = ""; }; - 20B61BCA965C8112291518550A425E53 /* NSAttributedString+DTDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTDebug.m"; path = "Core/Source/NSAttributedString+DTDebug.m"; sourceTree = ""; }; - 213EF8ACBC5AB1931A6D5E7861832E9D /* FLEXSystemLogMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogMessage.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.h; sourceTree = ""; }; - 21B9F97FFBB51D2E82A965156858DBF2 /* BBBadgeBarButtonItem.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = BBBadgeBarButtonItem.modulemap; sourceTree = ""; }; - 21C923CEEAAE9923A5D39EF04BA26A1C /* REMenuItemView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenuItemView.h; path = REMenu/REMenuItemView.h; sourceTree = ""; }; - 21CFBF7711A9BF68C3E00EDBAE356D14 /* INTULocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTULocationManager.m; path = LocationManager/INTULocationManager/INTULocationManager.m; sourceTree = ""; }; - 2219BC94EE0F47A3DF3BB88E3FAB8E28 /* FLEXResources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXResources.m; path = Classes/Utility/FLEXResources.m; sourceTree = ""; }; - 222A867F1C9787C880D867402B72209D /* PHFDelegateChain-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFDelegateChain-prefix.pch"; sourceTree = ""; }; - 223532B4F6AEAB51009DB1B5EED0CC21 /* HMSegmentedControl-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HMSegmentedControl-prefix.pch"; sourceTree = ""; }; - 223F4D7E435DF8582A45848BADE80F8C /* DHSmartScreenshot-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DHSmartScreenshot-prefix.pch"; sourceTree = ""; }; - 2246F368E1A7528BDD935FC16592D2F4 /* TTTAttributedLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TTTAttributedLabel.modulemap; sourceTree = ""; }; - 22582F6B0612BECAF4A7AE8B9BE4160C /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; - 22A185F4EE5E16981C6737DD4C0F9142 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; - 22BBABF4BA9E865B7E484B6E5A02BAEB /* SZTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SZTextView-umbrella.h"; sourceTree = ""; }; - 234DA41CC469CC71332648FB615BCB5E /* FSAudioStream.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSAudioStream.mm; path = FreeStreamer/FreeStreamer/FSAudioStream.mm; sourceTree = ""; }; - 2381F03E9A497517BFA043F6B632CB6B /* DTAnimatedGIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnimatedGIF.h; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h; sourceTree = ""; }; - 23D37A3E043B6F7D27FF0AF1D062D0BA /* file_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = file_stream.cpp; path = FreeStreamer/FreeStreamer/file_stream.cpp; sourceTree = ""; }; - 23F6924A6AC5F0E81B1678CFC98E6CC4 /* SCSiriWaveformView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SCSiriWaveformView-dummy.m"; sourceTree = ""; }; - 241FA73D8783FA06F773D0B3CAB920AE /* DTTextHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextHTMLElement.m; path = Core/Source/DTTextHTMLElement.m; sourceTree = ""; }; - 2443805EDF880CD16C8528CDAE0945BA /* FLEXExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerViewController.m; path = Classes/ExplorerInterface/FLEXExplorerViewController.m; sourceTree = ""; }; - 245F58EAF5658C585E051045F4ED7E73 /* OMGHTTPURLRQ-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OMGHTTPURLRQ-umbrella.h"; sourceTree = ""; }; - 2474DAE9953ADD22699BD66EB632309C /* NSData+NSHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+NSHash.h"; path = "NSHash/NSData+NSHash.h"; sourceTree = ""; }; - 2477B42EAA9C0D2C4E2A9AC0B606BE59 /* UICKeyChainStore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICKeyChainStore-prefix.pch"; sourceTree = ""; }; - 24D783A978FD06046E6EE613104BBFF8 /* HMSegmentedControl.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HMSegmentedControl.xcconfig; sourceTree = ""; }; - 258E40080201A6A1610D4C2092E2B0CA /* IQAudioRecorderViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQAudioRecorderViewController.h; path = IQAudioRecorderController/IQAudioRecorderViewController.h; sourceTree = ""; }; - 25B73049F1AC9268AAF70E3553760730 /* REMenu-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "REMenu-umbrella.h"; sourceTree = ""; }; - 25FE2B0FC3BDF80A65BAC018520C6BA5 /* input_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = input_stream.h; path = FreeStreamer/FreeStreamer/input_stream.h; sourceTree = ""; }; - 2631777D82F1E25DDBF32BEBF471BD43 /* IQMessageDisplayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQMessageDisplayView.h; path = IQAudioRecorderController/IQMessageDisplayView.h; sourceTree = ""; }; - 2640047093368DBCEDE088159CD9FF43 /* DTBase64Coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBase64Coding.h; path = Core/Source/DTBase64Coding.h; sourceTree = ""; }; - 268F104C6B07DEADB10BF8A867035B86 /* FLEXHierarchyTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewController.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.h; sourceTree = ""; }; - 283ED54E0D4F086AA2DE16665981244C /* FLEXArgumentInputStringView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStringView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h; sourceTree = ""; }; - 2856616DCC61C2BB47F6CB7158661703 /* APPhone.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APPhone.m; path = Pod/Core/Public/Models/APPhone.m; sourceTree = ""; }; - 287CD09B15EFB5F954E425912E5CF073 /* IQMessageDisplayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQMessageDisplayView.m; path = IQAudioRecorderController/IQMessageDisplayView.m; sourceTree = ""; }; - 28AA7C43FA138C28D6378B41B95B04F1 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; - 28AB6334E8E6AB1C20D7C79E57A906F2 /* DTCoreTextConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextConstants.m; path = Core/Source/DTCoreTextConstants.m; sourceTree = ""; }; - 28CC6A8E28E2D09E4300719432A4A3A3 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; }; - 28E7950ECF69A924EADFF7CA03DB1763 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 291990B570B209965538F3530C8A9241 /* NSGIF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSGIF-umbrella.h"; sourceTree = ""; }; - 2A0DFAAFE55B4D5FC550A250A9F19AB1 /* INTULocationManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "INTULocationManager-dummy.m"; sourceTree = ""; }; - 2A65A55ED3E4DDB8B88E7221CA07C6FF /* NSMutableAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+HTML.h"; path = "Core/Source/NSMutableAttributedString+HTML.h"; sourceTree = ""; }; - 2A6BDF8D520B0F82F3D53A2D3B24E16A /* UIFont+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DTCoreText.m"; path = "Core/Source/UIFont+DTCoreText.m"; sourceTree = ""; }; - 2A894CE4911CE5D96BC453472EF26DF5 /* DTFoundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTFoundation-prefix.pch"; sourceTree = ""; }; - 2AB8EE900429EFAD412550DE153BD128 /* SCSiriWaveformView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SCSiriWaveformView.xcconfig; sourceTree = ""; }; - 2B077DE6D6868BC938D09404A4C249BF /* NSAttributedString+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTCoreText.h"; path = "Core/Source/NSAttributedString+DTCoreText.h"; sourceTree = ""; }; - 2B7C6704DA73D2DDBD920E4A4672AB08 /* SWTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWTableViewCell.m; path = SWTableViewCell/PodFiles/SWTableViewCell.m; sourceTree = ""; }; - 2BC562FBC608AFC6E9E8CFEAA9376C5A /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 2C15CD804139F0EA3B178981BE3C4B79 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 2C2388A1207E457C97DD0E4DB74EFF0B /* FSParsePlaylistRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSParsePlaylistRequest.m; path = FreeStreamer/FreeStreamer/FSParsePlaylistRequest.m; sourceTree = ""; }; - 2CA7EC0188DF5B8FBF343D95703F32E9 /* PHFComposeBarView_TextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PHFComposeBarView_TextView.h; path = Classes/PHFComposeBarView_TextView.h; sourceTree = ""; }; - 2D4ADE4C20831039396304AA5EDEF8B7 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking.framework; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2D8161CAFCF67C4B2D360D35C572B84A /* DTObjectTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTObjectTextAttachment.h; path = Core/Source/DTObjectTextAttachment.h; sourceTree = ""; }; - 2D944285744A054AC92C647AD7FB74EA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 2D9B1D4D0B95F0400E129AA12A33BED4 /* FLEX.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FLEX.modulemap; sourceTree = ""; }; - 2DDFB7042468918B6D0E4D747137A7AC /* FLEXNetworkObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkObserver.m; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.m; sourceTree = ""; }; - 2DE6F200B7C1F7FAFD8211E98F2098F0 /* SZTextView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SZTextView.xcconfig; sourceTree = ""; }; - 2E2EE6706276D137546D678B9489E08B /* FLEXSQLiteDatabaseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSQLiteDatabaseManager.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.m; sourceTree = ""; }; - 2E481CD749FDA0512A86F61A3F3DB394 /* DTCoreTextConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextConstants.h; path = Core/Source/DTCoreTextConstants.h; sourceTree = ""; }; + 1E007265AB1375938CB8864D20767051 /* NSArray+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+DTError.h"; path = "Core/Source/NSArray+DTError.h"; sourceTree = ""; }; + 1E32F7417A1FB40B1CAB52C92F7A1DBD /* PHFComposeBarView_TextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PHFComposeBarView_TextView.h; path = Classes/PHFComposeBarView_TextView.h; sourceTree = ""; }; + 1E6AEB325029526A1F166DB71339CB5A /* ModuleConsole.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ModuleConsole.m; path = JSCoreBom/Modules/ModuleConsole.m; sourceTree = ""; }; + 1E7B0B7983F236ECA5E3E0C59E61097D /* CYRTextStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRTextStorage.m; path = CYRTextView/CYRTextStorage.m; sourceTree = ""; }; + 1E8ED6D54D0068E083E3BAEC35E0CF6D /* UIWindow+AHKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+AHKAdditions.m"; path = "Classes/UIWindow+AHKAdditions.m"; sourceTree = ""; }; + 1E9C71AC3BFDFD8058151C0858156049 /* TDOAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TDOAuth.h; sourceTree = ""; }; + 1ECB61418E8FEE98D648D4FA2317CE13 /* HMSegmentedControl-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HMSegmentedControl-prefix.pch"; sourceTree = ""; }; + 1EFBF095FAFB0C824AFA9365E9ABC67A /* IQCropSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQCropSelectionView.h; path = IQAudioRecorderController/IQCropSelectionView.h; sourceTree = ""; }; + 1F0781CD14A7D62953AA8240BDC06B7C /* TDOAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TDOAuth-dummy.m"; sourceTree = ""; }; + 1F27B72ABC4CA7AAA0842D63CB954FB4 /* FLEXTableContentCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h; sourceTree = ""; }; + 1FBD299F417097202418969D6130D3F1 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AHKActionSheetViewController.h; path = Classes/AHKActionSheetViewController.h; sourceTree = ""; }; + 1FCE7F1D03ED7081825C462932209DCC /* RMActionController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = RMActionController.modulemap; sourceTree = ""; }; + 200CD411BF1E3958D4D64985F2540496 /* IQAudioRecorderConstraints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQAudioRecorderConstraints.h; path = IQAudioRecorderController/IQAudioRecorderConstraints.h; sourceTree = ""; }; + 2059F1F5054EF62645F91368C0071C99 /* AFOAuth2Manager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFOAuth2Manager-prefix.pch"; sourceTree = ""; }; + 210FC2773A9B5EF5B349555495284239 /* SZTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SZTextView-umbrella.h"; sourceTree = ""; }; + 2147E07A49D43AC9D8BE9F2579E2AF5E /* NSMutableArray+SWUtilityButtons.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableArray+SWUtilityButtons.h"; path = "SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.h"; sourceTree = ""; }; + 215783875A48D538B6E5A5789F790C7E /* FLEXExplorerToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXExplorerToolbar.h; path = Classes/Toolbar/FLEXExplorerToolbar.h; sourceTree = ""; }; + 2167A9843206C5B4AA3E411E690293C2 /* FLEXNetworkCurlLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkCurlLogger.h; path = Classes/Network/FLEXNetworkCurlLogger.h; sourceTree = ""; }; + 2188C3A2C36545CD72E7897D4B35A323 /* FLEXNetworkRecorder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkRecorder.m; path = Classes/Network/FLEXNetworkRecorder.m; sourceTree = ""; }; + 221173971C9314BAA95602EBCAE6A3C3 /* NBNumberFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBNumberFormat.m; path = libPhoneNumber/NBNumberFormat.m; sourceTree = ""; }; + 22276A8CCAE53313E22A86E0D3C0CF36 /* ModuleConsole.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ModuleConsole.h; path = JSCoreBom/Modules/ModuleConsole.h; sourceTree = ""; }; + 225098B70C97648CDF810F5E4C00BBA2 /* FLEXResources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXResources.m; path = Classes/Utility/FLEXResources.m; sourceTree = ""; }; + 2276569D9668C8365626CB4A11DFF88C /* FLEXPropertyEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXPropertyEditorViewController.m; path = Classes/Editing/FLEXPropertyEditorViewController.m; sourceTree = ""; }; + 227D5DD5A928518CA5266F2CEA3B1A00 /* SBJson4StreamTokeniser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamTokeniser.m; path = src/main/objc/SBJson4StreamTokeniser.m; sourceTree = ""; }; + 22C3BC44E291AC8290C1025B56A0C2B1 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking.framework; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 22E78B19E5000DB6B54D9801EF2807C2 /* NSGIF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSGIF-prefix.pch"; sourceTree = ""; }; + 2309D345E02AA9A88A8DA0592F35004F /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SDWebImage.modulemap; sourceTree = ""; }; + 234BE53C208CB3AC989731AAFCA7CD5F /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; + 23679312AADD262F7CF07411A204017F /* IQMessageDisplayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQMessageDisplayView.h; path = IQAudioRecorderController/IQMessageDisplayView.h; sourceTree = ""; }; + 240FD91EF54A748EA9B6476014C7DFF2 /* FSParsePlaylistRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSParsePlaylistRequest.h; path = FreeStreamer/FreeStreamer/FSParsePlaylistRequest.h; sourceTree = ""; }; + 2412B5809F25CF3B3CB590666E1B579B /* FLEXResources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXResources.h; path = Classes/Utility/FLEXResources.h; sourceTree = ""; }; + 246217D71F2D60547E00155028A97DDF /* stop_playing.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = stop_playing.png; path = IQAudioRecorderController/Resources/stop_playing.png; sourceTree = ""; }; + 24A31B3338004710E27213878EF23B1C /* CYRTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRTextView.m; path = CYRTextView/CYRTextView.m; sourceTree = ""; }; + 24C64E7E0E0C692506D03BDB25C80D12 /* APAddressBook.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = APAddressBook.framework; path = APAddressBook.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 24CD3A992934047CA47218EEF4230068 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; + 24EE5115B68DEC24DAE20AD5A076BDFF /* NSString+IQTimeIntervalFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+IQTimeIntervalFormatter.h"; path = "IQAudioRecorderController/NSString+IQTimeIntervalFormatter.h"; sourceTree = ""; }; + 2543F07CDF4DA07ACD25B22E8951717F /* DAKeyboardControl-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DAKeyboardControl-umbrella.h"; sourceTree = ""; }; + 255EE026B4E014B685A142131C75E372 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = ""; }; + 2589EB1541CB9624374C36FFC2C134D0 /* IQAudioRecorderController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQAudioRecorderController.xcconfig; sourceTree = ""; }; + 2599BCCA616A52C5CF333EE039CDD1B7 /* FSAudioController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSAudioController.h; path = FreeStreamer/FreeStreamer/FSAudioController.h; sourceTree = ""; }; + 25ADA179F3FBB7D731411672C455E934 /* Reachability.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Reachability.framework; path = Reachability.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 25C298D4F6B472E7CF5D70B84B779B40 /* FLEXManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXManager.m; path = Classes/Manager/FLEXManager.m; sourceTree = ""; }; + 25CC555EEB5CC998F5E85498B017F9F1 /* FLEXFileBrowserSearchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserSearchOperation.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.m; sourceTree = ""; }; + 2611D7ED02B1F6B75E8FBB55F53505B1 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 26E1FD96BFF2AF674209E073FBEF15E0 /* default.css.c */ = {isa = PBXFileReference; includeInIndex = 1; name = default.css.c; path = Core/Source/default.css.c; sourceTree = ""; }; + 26EDAC2A2406A77CA7139D6A3B17C942 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + 271E2BCCBBC6BEC8A00972599918C6E3 /* FLEXArgumentInputNotSupportedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNotSupportedView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h; sourceTree = ""; }; + 2727907CCE3FA95D64310F86D4EC3C0C /* TWMessageBarManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TWMessageBarManager.xcconfig; sourceTree = ""; }; + 27CA565701F5D8BFB1CC843747490269 /* TTTAttributedLabel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TTTAttributedLabel.xcconfig; sourceTree = ""; }; + 2816EF34DFAAD096EFDD337040AB4DE2 /* ModuleXMLHttpRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ModuleXMLHttpRequest.m; path = JSCoreBom/Modules/ModuleXMLHttpRequest.m; sourceTree = ""; }; + 285E0A867D0CC302190087C677BEB63D /* DTWebVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTWebVideoView.m; path = Core/Source/DTWebVideoView.m; sourceTree = ""; }; + 28C34FF88E05FBB571B24BDA44727978 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 28F2ACB79333B3B611C1F2FD4169BC88 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; }; + 29349CA4C191898DEF42643D8B58CAD2 /* APContactBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactBuilder.m; path = Pod/Core/Private/Builders/APContactBuilder.m; sourceTree = ""; }; + 2971F57AE11B7EC3A05ED39C79AE811E /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AFNetworking.h"; path = "UIKit+AFNetworking/UIImage+AFNetworking.h"; sourceTree = ""; }; + 29A8E9E813332D1E79D947F3122D5BE7 /* NSFileWrapper+DTCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileWrapper+DTCopying.h"; path = "Core/Source/NSFileWrapper+DTCopying.h"; sourceTree = ""; }; + 2A11FAFDE756DBBE372FCAA631814D06 /* DTFoundation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DTFoundation.modulemap; sourceTree = ""; }; + 2A2332B1A108E631336028CCF4F04484 /* AFOAuth2Manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFOAuth2Manager.h; path = AFOAuth2Manager/AFOAuth2Manager.h; sourceTree = ""; }; + 2A70BFDCBC87308B1EDB70CAAD30DA6F /* FLEXArgumentInputFontView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h; sourceTree = ""; }; + 2B4093F01B01941844C46FBDF9D45218 /* DTCoreTextFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFunctions.h; path = Core/Source/DTCoreTextFunctions.h; sourceTree = ""; }; + 2B45281E3C47C5608A016CE831931C6C /* SWFrameButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWFrameButton.h; path = SWFrameButton/SWFrameButton.h; sourceTree = ""; }; + 2B696B11166FB7EA1EA05978E25B7F56 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 2BC38246453207C4BC952E92A1B81612 /* BBBadgeBarButtonItem.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = BBBadgeBarButtonItem.framework; path = BBBadgeBarButtonItem.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2BC85BD8EE9E4A6E0558FE3FCA909D70 /* RMDateSelectionViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RMDateSelectionViewController.m; path = RMDateSelectionViewController/RMDateSelectionViewController.m; sourceTree = ""; }; + 2C664D53EF93F49DB4D9187E68434B68 /* HMSegmentedControl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HMSegmentedControl.framework; path = HMSegmentedControl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2C8E8C270812CB43A578833FE6ED293E /* REMenu-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "REMenu-dummy.m"; sourceTree = ""; }; + 2CADA442074671E19239A93E4CD6C053 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 2CC92408710C4E25EF2925B2848A3FB3 /* SBJson4Parser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Parser.m; path = src/main/objc/SBJson4Parser.m; sourceTree = ""; }; + 2CD6B3E6404FB83FD02B77D944AB0F1F /* SBJson-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SBJson-umbrella.h"; sourceTree = ""; }; + 2D0E9859152CE536EBC95C4CC1F751B3 /* APContactDate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactDate.h; path = Pod/Core/Public/Models/APContactDate.h; sourceTree = ""; }; + 2D4D114E0B879CD07A7880D6749A5448 /* UIScrollView+DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+DHSmartScreenshot.h"; path = "Classes/UIScrollView+DHSmartScreenshot.h"; sourceTree = ""; }; + 2DA4876D4B7F207A38AC762A2DBF526F /* APContact.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContact.m; path = Pod/Core/Public/Models/APContact.m; sourceTree = ""; }; + 2DC1C4338124149F44EF80460D79F917 /* FLEXArgumentInputJSONObjectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputJSONObjectView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h; sourceTree = ""; }; + 2E6092B3E189C1E1AFF57F0696410090 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; }; 2E660D0FC762BC034DB84AD775305493 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/AVFoundation.framework; sourceTree = DEVELOPER_DIR; }; - 2E98ACAEA4049F6F240BB8C84B0C0F38 /* NBMetadataCoreTestMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCoreTestMapper.h; path = libPhoneNumber/NBMetadataCoreTestMapper.h; sourceTree = ""; }; - 2ECECEE29899EC55AE00604EA4E8F1C2 /* caching_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = caching_stream.cpp; path = FreeStreamer/FreeStreamer/caching_stream.cpp; sourceTree = ""; }; - 2F3A29D517A509432DECC20B35DF20EB /* SBJson4StreamParserState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParserState.m; path = src/main/objc/SBJson4StreamParserState.m; sourceTree = ""; }; - 2F4995C56241F18B27E7F3B7872F97DC /* PHFDelegateChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PHFDelegateChain.h; sourceTree = ""; }; - 2F870847157AFFCBC5295EAFBD0E29F2 /* NSURL+DTComparing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTComparing.m"; path = "Core/Source/NSURL+DTComparing.m"; sourceTree = ""; }; - 2F89623B2D19F7305130DD825BB18353 /* SWFrameButton.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWFrameButton.xcconfig; sourceTree = ""; }; - 2F90D6FD8EC78BE5C62F1553F6BC4DB8 /* DTTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachment.m; path = Core/Source/DTTextAttachment.m; sourceTree = ""; }; - 2FA01886DA914A69FAD9559FF3CD4841 /* RMDateSelectionViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RMDateSelectionViewController.m; path = RMDateSelectionViewController/RMDateSelectionViewController.m; sourceTree = ""; }; - 2FA2A003628F3506AFD1E19D76943A38 /* NBPhoneNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumber.h; path = libPhoneNumber/NBPhoneNumber.h; sourceTree = ""; }; - 2FBDC184EE47A24CE121FF68F122C835 /* DTCoreTextLayoutFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrame.h; path = Core/Source/DTCoreTextLayoutFrame.h; sourceTree = ""; }; - 2FF5D73B67ABD0B32A29AD04D7B2E51C /* IQAudioCropperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQAudioCropperViewController.m; path = IQAudioRecorderController/IQAudioCropperViewController.m; sourceTree = ""; }; - 3062D16346CDAE15D35B8012329D67CB /* FSXMLHttpRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSXMLHttpRequest.m; path = FreeStreamer/FreeStreamer/FSXMLHttpRequest.m; sourceTree = ""; }; + 2EC909C014043DCCE0969AEC6E894E08 /* FLEXSystemLogMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogMessage.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.h; sourceTree = ""; }; + 2EFFA87876839553ADA5F9F992BE792D /* IQAudioRecorderConstraints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQAudioRecorderConstraints.m; path = IQAudioRecorderController/IQAudioRecorderConstraints.m; sourceTree = ""; }; + 2F0E4286FB7CEC6340FA93A1176FF559 /* DTIframeTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTIframeTextAttachment.m; path = Core/Source/DTIframeTextAttachment.m; sourceTree = ""; }; + 2F261F66683678F4DA7DF8AFF5733BDC /* FLEXIvarEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXIvarEditorViewController.h; path = Classes/Editing/FLEXIvarEditorViewController.h; sourceTree = ""; }; + 2F4F1E521CF75EB733E9FEB43BE31C64 /* FLEXKeyboardHelpViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardHelpViewController.m; path = Classes/Utility/FLEXKeyboardHelpViewController.m; sourceTree = ""; }; + 2FC7B5090402E1DA0EB7CF4E3C212012 /* APTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APTypes.h; path = Pod/Core/Public/Models/APTypes.h; sourceTree = ""; }; + 301B750AA42773362113D91FE5674112 /* INTULocationManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = INTULocationManager.xcconfig; sourceTree = ""; }; + 302BE759240BFBAE97CB89A1F3895724 /* FLEXLayerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLayerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.m; sourceTree = ""; }; 30ABC8C3AF21DDBF4DC5AC8281AB073A /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; - 30C5CD375E3DF45C2762A403F0FA2B76 /* FLEXArrayExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArrayExplorerViewController.h; path = Classes/ObjectExplorers/FLEXArrayExplorerViewController.h; sourceTree = ""; }; - 31531992BBC1AADCFF9B916DFDC5AED3 /* SWLongPressGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWLongPressGestureRecognizer.m; path = SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.m; sourceTree = ""; }; - 319ED7AB7807690577CF769D4E1F2159 /* JSCoreBom.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCoreBom.modulemap; sourceTree = ""; }; - 31DFF4C559C490B4B3C4A1E158F300DC /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = ""; }; - 31F3B9FF5424017C8218AA10CAF07A4E /* NBPhoneMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneMetaData.m; path = libPhoneNumber/NBPhoneMetaData.m; sourceTree = ""; }; - 3219654C0241A06534B3F96160D1D385 /* DTCoreTextParagraphStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextParagraphStyle.m; path = Core/Source/DTCoreTextParagraphStyle.m; sourceTree = ""; }; - 32696122130095A973DCD39EEEB28226 /* DTTiledLayerWithoutFade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTiledLayerWithoutFade.h; path = Core/Source/iOS/DTTiledLayerWithoutFade.h; sourceTree = ""; }; - 326F3D8F95FEAEC57AF94540AB534A59 /* SCSiriWaveformView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SCSiriWaveformView.framework; path = SCSiriWaveformView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33198587ABE4852DB47BFA7D3FE7C1A6 /* INTULocationManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = INTULocationManager.framework; path = INTULocationManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33E1639F29E79EC064ABDC66F03C8EBB /* UIImage+AHKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AHKAdditions.h"; path = "Classes/UIImage+AHKAdditions.h"; sourceTree = ""; }; - 33F4EB50E96AB2F8DC4CD05CF183CE31 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 344F4158CF80A5108A8E261D50F8627B /* NSAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+HTML.m"; path = "Core/Source/NSAttributedString+HTML.m"; sourceTree = ""; }; - 34526A585D9357885A5529F16862BCF2 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; - 34747BC19DBFD60C90B347005AB40E37 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; - 34CF455E565B73240EDA62E43F19734D /* DTTextBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextBlock.h; path = Core/Source/DTTextBlock.h; sourceTree = ""; }; - 3518C06CDFD63ED1E96296FDD2DE9074 /* JSCoreBom.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JSCoreBom.framework; path = JSCoreBom.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 354CCA5A59590E88BE6E7CB64F73D9A5 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; - 355A6E0A08133F5F8A1D9D8303199B0B /* AFOAuth2Manager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFOAuth2Manager.framework; path = AFOAuth2Manager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 30BE312C37C1F4805AA9F8C913502663 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + 31015D9F0C7755A222DFF450F7763191 /* NBPhoneNumberUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumberUtil.m; path = libPhoneNumber/NBPhoneNumberUtil.m; sourceTree = ""; }; + 312DD32B81DBEBA53BC64C852DDD8296 /* PHFComposeBarView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFComposeBarView-umbrella.h"; sourceTree = ""; }; + 313962AC8D063DCBC1D1835604DF5E48 /* FLEX.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLEX.xcconfig; sourceTree = ""; }; + 315088D18F9BFD753BA9A78F582841B6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 316C1836E1E8EDBFCD417D231C738182 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; + 318AC96F65E92654A559010326F10CC1 /* IQAudioRecorderController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQAudioRecorderController.framework; path = IQAudioRecorderController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 31A2A8518220CA34E8A3E99AA917DDF5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 31C713021DCD8B9CA1EA9B20C7C5B793 /* APEmail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APEmail.m; path = Pod/Core/Public/Models/APEmail.m; sourceTree = ""; }; + 31D15B14A2E200202AE6ECA04232D10E /* CYRTextView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CYRTextView.xcconfig; sourceTree = ""; }; + 31F43DDBEEDAEB239BDA893C2784EBE2 /* TWMessageBarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TWMessageBarManager-prefix.pch"; sourceTree = ""; }; + 323FBA96675D2B9FB343A1B1393CF319 /* SWTableViewCell-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWTableViewCell-prefix.pch"; sourceTree = ""; }; + 325A8EBD34DDAEC2C1B9E67EED2945F8 /* DTListItemHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTListItemHTMLElement.h; path = Core/Source/DTListItemHTMLElement.h; sourceTree = ""; }; + 330DB2241368FF1711F0EDA701D497D9 /* DTCoreText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTCoreText-prefix.pch"; sourceTree = ""; }; + 330E31FFD6A2FF724199EA533BF0D252 /* IQPlaybackDurationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQPlaybackDurationView.m; path = IQAudioRecorderController/IQPlaybackDurationView.m; sourceTree = ""; }; + 332D0DCFA816445289CF8C7E446CB78B /* FLEXCookiesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXCookiesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.m; sourceTree = ""; }; + 332DDAFCB6B10D337A0AF796FA92AED1 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + 337E5A84CE7EE0A171D717025CE463F9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 339BE9ECAEE13B22E8C0E44D14D2E399 /* FLEXCookiesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXCookiesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h; sourceTree = ""; }; + 33DD6B0BCC1B0F7BF6005B962201F12B /* PHFComposeBarView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PHFComposeBarView.framework; path = PHFComposeBarView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 349B39BDB7252DECC35C89A81170303A /* APSocialServiceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APSocialServiceHelper.m; path = Pod/Core/Private/Helpers/APSocialServiceHelper.m; sourceTree = ""; }; + 34F5AAA165A4CD7B0826A03741773E06 /* DTAttributedTextContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextContentView.m; path = Core/Source/DTAttributedTextContentView.m; sourceTree = ""; }; + 357383252906A72BAFBB345894558400 /* PHFDelegateChain.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PHFDelegateChain.xcconfig; sourceTree = ""; }; 3581C5E67C77A561CB90131ED590FDDE /* OMGHTTPURLRQ.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OMGHTTPURLRQ.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 35B69160E4C26956871F8C8B2C4A7347 /* NBMetadataCoreTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCoreTest.m; path = libPhoneNumber/NBMetadataCoreTest.m; sourceTree = ""; }; - 3604F2892C9CBCAE45CC2ED18A93E43F /* DTTextAttachmentHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachmentHTMLElement.h; path = Core/Source/DTTextAttachmentHTMLElement.h; sourceTree = ""; }; - 360965021F4A53F72E1B3C72507722F6 /* INTULocationManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = INTULocationManager.modulemap; sourceTree = ""; }; - 366B38CCEAD69FCF0636F6B8026B84B9 /* NSString+NSHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+NSHash.h"; path = "NSHash/NSString+NSHash.h"; sourceTree = ""; }; - 36A533E4359D276C4C49321014528217 /* FLEXTableLeftCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableLeftCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.h; sourceTree = ""; }; - 36D8A103FD7C2C537051BAB6E2CC944A /* UICKeyChainStore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UICKeyChainStore.framework; path = UICKeyChainStore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 36E546F5F8A7FDE643A4E7EA2BAC959D /* SCSiriWaveformView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SCSiriWaveformView.modulemap; sourceTree = ""; }; - 3735FBC4E804E40917EA59896D4F78CF /* file_output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_output.h; path = FreeStreamer/FreeStreamer/file_output.h; sourceTree = ""; }; - 3759E544FECB7204C85D3663715B009B /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; - 3782B740FF13EAFB0F93D537D5B5735D /* UIScrollView+DHSmartScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+DHSmartScreenshot.m"; path = "Classes/UIScrollView+DHSmartScreenshot.m"; sourceTree = ""; }; - 3783E61F3D435370A7D4BDA41C068FD6 /* DTCoreTextFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFunctions.m; path = Core/Source/DTCoreTextFunctions.m; sourceTree = ""; }; - 37D92F9A948E07E81E5E1945F3F052D3 /* CYRTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = CYRTextView.modulemap; sourceTree = ""; }; - 37FB8CFA35F9B22346E4CBD77B71B55E /* CYRTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRTextView.h; path = CYRTextView/CYRTextView.h; sourceTree = ""; }; - 383C55A404CF6A91B8AE0492E62FB43B /* libPhoneNumber-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "libPhoneNumber-iOS.modulemap"; sourceTree = ""; }; - 38B34D066023DCA4803DAA393C26BBCC /* FLEXArgumentInputNotSupportedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNotSupportedView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h; sourceTree = ""; }; - 38C02AD7756BBFF96A791ECF6D5B43E6 /* DTHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLElement.m; path = Core/Source/DTHTMLElement.m; sourceTree = ""; }; - 392EFD01317558B34DBED814903DC779 /* APJob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APJob.h; path = Pod/Core/Public/Models/APJob.h; sourceTree = ""; }; - 39C07CD7CF71E88B2188BD21F06A2D14 /* NSCharacterSet+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCharacterSet+HTML.h"; path = "Core/Source/NSCharacterSet+HTML.h"; sourceTree = ""; }; - 3A32273B0CF52F47D61C1ED261D938C3 /* BBBadgeBarButtonItem-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BBBadgeBarButtonItem-umbrella.h"; sourceTree = ""; }; - 3A441A91BEAF123061F281AD3DD364EF /* DTFoundation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTFoundation-umbrella.h"; sourceTree = ""; }; - 3B498B7622C440E91B6A572854E6758B /* IQAudioRecorderController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = IQAudioRecorderController.modulemap; sourceTree = ""; }; - 3B6C2C9535560AE320B53381413BFFA2 /* NSDictionary+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTCoreText.h"; path = "Core/Source/NSDictionary+DTCoreText.h"; sourceTree = ""; }; - 3B6CF5A8A27A80C1FCF2BAA7843277D0 /* FLEXViewControllerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewControllerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.m; sourceTree = ""; }; - 3B74B9B1AB4534E5C4AB7C4DF1EF82E9 /* DTPieProgressIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTPieProgressIndicator.m; path = Core/Source/iOS/DTPieProgressIndicator.m; sourceTree = ""; }; - 3BA03D4FCEE4BB6D1E492EAF626E3C50 /* TDOAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TDOAuth-dummy.m"; sourceTree = ""; }; - 3C0B1E93A438105E594BCEAAD7B3D886 /* TTTAttributedLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TTTAttributedLabel.framework; path = TTTAttributedLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3C3A02815769BB4E0ED550DB1FBE35F5 /* TTTAttributedLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TTTAttributedLabel-dummy.m"; sourceTree = ""; }; - 3CE1028B7680E7D5B488E4A7BCD11E01 /* FLEXArgumentInputStructView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStructView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.m; sourceTree = ""; }; - 3D238117BF0AE0095D53AD46682F887E /* IQAudioCropperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQAudioCropperViewController.h; path = IQAudioRecorderController/IQAudioCropperViewController.h; sourceTree = ""; }; - 3D48D744C9695D6285AC75A5CAC72417 /* RMDateSelectionViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMDateSelectionViewController-umbrella.h"; sourceTree = ""; }; - 3D9E80964F6946FAB689136FAB915E42 /* SBJson4StreamWriterState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriterState.m; path = src/main/objc/SBJson4StreamWriterState.m; sourceTree = ""; }; - 3E4CD72B905A6281C737FB05579D2AE2 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = Classes/Utility/FLEXUtility.h; sourceTree = ""; }; - 3E62B891B6C1323DE811921C4FFBE1E1 /* AFOAuth2Manager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFOAuth2Manager-prefix.pch"; sourceTree = ""; }; - 3E86741A5D440F0D0B46888ACACC1C46 /* AHKActionSheet-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHKActionSheet-umbrella.h"; sourceTree = ""; }; - 3EB40527C12C88DFB4F53D099ABF4115 /* INTURequestIDGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTURequestIDGenerator.m; path = LocationManager/INTULocationManager/INTURequestIDGenerator.m; sourceTree = ""; }; - 3F1BCFB8B7EF6B3C8CF4601733B1C3A7 /* OMGUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OMGUserAgent.h; path = Sources/OMGUserAgent.h; sourceTree = ""; }; - 3F724259E2332AC82106B9FC1C00DE05 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; - 3F7A6EC129EA3F778879AC4371DF2666 /* OMGHTTPURLRQ.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = OMGHTTPURLRQ.modulemap; sourceTree = ""; }; - 3FA172E19DB62263A44ACE13AFA3A5E7 /* FLEXImageExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImageExplorerViewController.h; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.h; sourceTree = ""; }; - 3FDF5BD2CDFD100A591D94B953419D19 /* PHFComposeBarView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PHFComposeBarView.modulemap; sourceTree = ""; }; - 40428BBE9D2D7D7A773C9D218055FC2F /* APAddressBookRefWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookRefWrapper.m; path = Pod/Core/Private/Wrapper/APAddressBookRefWrapper.m; sourceTree = ""; }; - 40793C347206023D01ED731815ED809B /* NSURL+DTUnshorten.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTUnshorten.m"; path = "Core/Source/NSURL+DTUnshorten.m"; sourceTree = ""; }; - 40A578ABC0BE2EB6763B8D53A148583D /* FSCheckContentTypeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSCheckContentTypeRequest.m; path = FreeStreamer/FreeStreamer/FSCheckContentTypeRequest.m; sourceTree = ""; }; - 40ADE6B0D7B3C182841E61FF8499599D /* IQAudioRecorderConstraints.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQAudioRecorderConstraints.m; path = IQAudioRecorderController/IQAudioRecorderConstraints.m; sourceTree = ""; }; - 40BC86F13120001C51F3AC419EC8EE44 /* DTImage+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTImage+HTML.h"; path = "Core/Source/DTImage+HTML.h"; sourceTree = ""; }; - 40E4A2CE90C30F9B29EDC70B9712C68A /* DAKeyboardControl-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DAKeyboardControl-prefix.pch"; sourceTree = ""; }; - 41C3A1F4DED3B3C981E59D91EE9BC190 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 358277F80EB84A91CA9D78FA950D133C /* PHFComposeBarView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFComposeBarView-prefix.pch"; sourceTree = ""; }; + 362ABEA5DC0D3E3799695BFDDE58EB21 /* PHFDelegateChain.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PHFDelegateChain.modulemap; sourceTree = ""; }; + 37130D6BEBCAAE6EF6A56304934D5D37 /* BBBadgeBarButtonItem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BBBadgeBarButtonItem-prefix.pch"; sourceTree = ""; }; + 37329B40B95F972CA8023C5D3791C204 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + 376203E3DFDADFAF96F4032CF52B1CDA /* NBMetadataCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCore.h; path = libPhoneNumber/NBMetadataCore.h; sourceTree = ""; }; + 377E088C7AEA2B4DDEFD3CD36843822D /* FSCheckContentTypeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSCheckContentTypeRequest.h; path = FreeStreamer/FreeStreamer/FSCheckContentTypeRequest.h; sourceTree = ""; }; + 378DFD4B9D7DA2F44BC1E8DC74D52B9F /* IQCropSelectionEndView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQCropSelectionEndView.m; path = IQAudioRecorderController/IQCropSelectionEndView.m; sourceTree = ""; }; + 37DD53D7F475DC0B4C60F4E81CE89B31 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = ""; }; + 38B942DB0797810815FA4AFAD9116364 /* DTBase64Coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBase64Coding.h; path = Core/Source/DTBase64Coding.h; sourceTree = ""; }; + 38DF96E0B7BE46090EFAE8DCF15B3E5B /* Reachability.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Reachability.xcconfig; sourceTree = ""; }; + 3912C0DD3968D90F1C569A9748CADACF /* FLEXArgumentInputViewFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputViewFactory.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.h; sourceTree = ""; }; + 392CDEB4285C42E05FBCB4C09FE56CA5 /* NBMetadataCoreMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCoreMapper.h; path = libPhoneNumber/NBMetadataCoreMapper.h; sourceTree = ""; }; + 394066EA22FD88C45A5959D83F7D92F9 /* CYRLayoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRLayoutManager.h; path = CYRTextView/CYRLayoutManager.h; sourceTree = ""; }; + 39C47FA1164D94E45DD14BD1BC269231 /* DTCoreTextLayoutFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrame.m; path = Core/Source/DTCoreTextLayoutFrame.m; sourceTree = ""; }; + 39D2D87777778F5F517895B10EC15487 /* NSString+NSHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+NSHash.h"; path = "NSHash/NSString+NSHash.h"; sourceTree = ""; }; + 3A2614BCCE7E08481D18DFDC2E8FC653 /* NSString+DTURLEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTURLEncoding.h"; path = "Core/Source/NSString+DTURLEncoding.h"; sourceTree = ""; }; + 3A3D96E5FCA89977E3EABE38BA34C0C0 /* BBBadgeBarButtonItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BBBadgeBarButtonItem.m; path = BBBadgeBarButtonItem/BBBadgeBarButtonItem.m; sourceTree = ""; }; + 3A8C8CA84579D482B98EDF23FAEC5E1D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 3AAC256B0D73B2852C368D2FC9794639 /* NSString+DTPaths.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTPaths.m"; path = "Core/Source/NSString+DTPaths.m"; sourceTree = ""; }; + 3AB57A124A97868CCA3EEC4B50E74691 /* FLEXExplorerToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerToolbar.m; path = Classes/Toolbar/FLEXExplorerToolbar.m; sourceTree = ""; }; + 3AC9554B161D682C70E994D30D718960 /* microphone_access.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = microphone_access.png; path = IQAudioRecorderController/Resources/microphone_access.png; sourceTree = ""; }; + 3B1B9C6C63E282E5D73AF0FFA2E9D02B /* PHFDelegateChain-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFDelegateChain-umbrella.h"; sourceTree = ""; }; + 3B2B81E66619AEA1CE228E860391B398 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + 3B8D316585560DC5BF78ABE05F947720 /* FLEXObjectExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXObjectExplorerViewController.h; path = Classes/ObjectExplorers/FLEXObjectExplorerViewController.h; sourceTree = ""; }; + 3BE2C2EBA25294E08BE7C64C322A1821 /* NSGIF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NSGIF.framework; path = NSGIF.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3CEF2D551134721C1A15202711FE372D /* RMActionController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMActionController-prefix.pch"; sourceTree = ""; }; + 3D9ABEFF734526840FF95C8D4A1A8CD2 /* DAKeyboardControl-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DAKeyboardControl-dummy.m"; sourceTree = ""; }; + 3DC6DE8AF72CC88A5BCDD49C884129B4 /* DTExtendedFileAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTExtendedFileAttributes.m; path = Core/Source/DTExtendedFileAttributes.m; sourceTree = ""; }; + 3F7DD668659E62565F7AC4D0862B5AD4 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; }; + 3F969855692D534905BAFB22862D5DCC /* AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.xcconfig; sourceTree = ""; }; + 40538D7A6C75856324C4D75AF6CF2F01 /* SBJson4StreamWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriter.h; path = src/main/objc/SBJson4StreamWriter.h; sourceTree = ""; }; + 407D69B8F0ADF34158F3680F80F76428 /* LTHKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LTHKeychainUtils.h; path = LTHPasscodeViewController/LTHKeychainUtils.h; sourceTree = ""; }; + 40A5FF347055CB51A779565A6F402594 /* APPhone.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APPhone.m; path = Pod/Core/Public/Models/APPhone.m; sourceTree = ""; }; + 40BB9F9D8CDCFD669BC9A375047477E9 /* APContactDate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactDate.m; path = Pod/Core/Public/Models/APContactDate.m; sourceTree = ""; }; + 40F92C3A3453B80D668E5AB6D671CEFB /* NBPhoneNumberUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumberUtil.h; path = libPhoneNumber/NBPhoneNumberUtil.h; sourceTree = ""; }; + 40FF1C41F142F1173DA2A511F629CCF7 /* SBJson-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SBJson-prefix.pch"; sourceTree = ""; }; + 4120BC13CD68B0724A8C2B8A166B8344 /* FLEXSQLiteDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSQLiteDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h; sourceTree = ""; }; + 41ADEB07384342BC20826DCAB6E93402 /* DHSmartScreenshot-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DHSmartScreenshot-prefix.pch"; sourceTree = ""; }; 4221267695160EE451CF036C1A3FAF0A /* Pods-Jasonette-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Jasonette-acknowledgements.markdown"; sourceTree = ""; }; + 4225CA8087B99AF61544FD89FC6B5C95 /* DTAccessibilityElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityElement.m; path = Core/Source/DTAccessibilityElement.m; sourceTree = ""; }; + 422F3F85F4DFB3ACA5316C82340E1920 /* FLEXKeyboardHelpViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardHelpViewController.h; path = Classes/Utility/FLEXKeyboardHelpViewController.h; sourceTree = ""; }; + 4296E0816EC2A57209B7166DEB2BA9CD /* NSString+DTPaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTPaths.h"; path = "Core/Source/NSString+DTPaths.h"; sourceTree = ""; }; 429815C3542D5E4802EC62913EEBD897 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; - 42A3A03E40B32AAEC3B45CA8B70C62A0 /* RMActionController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = RMActionController.modulemap; sourceTree = ""; }; - 42D74E06F875F33B93F9AF41BC839F34 /* JDStatusBarNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = JDStatusBarNotification.modulemap; sourceTree = ""; }; - 436CD1ADDC482ADE71C853AD7F499378 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 43E3A213F5B3BD94E198A2D59BBB5DD5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 43E82C46F9229BDE3F63497AFCB5B5E6 /* icon-error@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-error@2x.png"; path = "Classes/Icons/icon-error@2x.png"; sourceTree = ""; }; - 44132EBC5255D4397B14E0680BB2F09A /* CYRTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CYRTextView-umbrella.h"; sourceTree = ""; }; - 4432D1BC2191953F645EE0A6D0D451F7 /* SocketRocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.xcconfig; sourceTree = ""; }; - 44753609F59E1F3234DEC6ACFFEDBFD9 /* audio_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = audio_stream.cpp; path = FreeStreamer/FreeStreamer/audio_stream.cpp; sourceTree = ""; }; - 447ED538E85A38EE946A55C5321B2BAC /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AFNetworking.h"; path = "UIKit+AFNetworking/UIImage+AFNetworking.h"; sourceTree = ""; }; - 448464D6F627D2F72EBB786FF6A72987 /* SWLongPressGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWLongPressGestureRecognizer.h; path = SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.h; sourceTree = ""; }; - 4537BCF6D84551EE9D3E4EBE373BCF15 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4539B2AD1B7A2981A63164068A69D371 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; - 45783DABE884C1E04E9FAC37ECB50B41 /* DTBlockFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBlockFunctions.m; path = Core/Source/DTBlockFunctions.m; sourceTree = ""; }; - 457C0E5170CE625A3714799F2F6869C1 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; - 458A2664B88365B18888C48BE7C5245A /* FLEXFileBrowserSearchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserSearchOperation.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h; sourceTree = ""; }; - 46202626F5BDBCDC3FBBC7C8887CF65D /* FLEXGlobalsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.m; sourceTree = ""; }; - 4672F80170A9881CFB9F66C08E3857F6 /* APDeprecated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APDeprecated.h; path = Pod/Core/Private/Deprecated/APDeprecated.h; sourceTree = ""; }; - 46BD0DE6BDA689B15CA3F97CC3D82BA9 /* FLEXGlobalsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXGlobalsTableViewController.h; path = Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.h; sourceTree = ""; }; - 4719FAA71CC6413C284B31F9255DCB4D /* SCSiriWaveformView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCSiriWaveformView-umbrella.h"; sourceTree = ""; }; - 472467EDD07BF0A73AA57F202CD729E4 /* SWFrameButton-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWFrameButton-dummy.m"; sourceTree = ""; }; - 47569B86D1DE6E9617577D9A7F61F7BD /* DTCoreTextFontDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontDescriptor.h; path = Core/Source/DTCoreTextFontDescriptor.h; sourceTree = ""; }; - 4814595F006BF65DB8C1B5F46A242220 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; - 48544A42A4857102CA2541266B0A7C4F /* scissor@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "scissor@2x.png"; path = "IQAudioRecorderController/Resources/scissor@2x.png"; sourceTree = ""; }; - 491BF5014DA3DF05AF8F50CFBE8BEF2B /* NSString+DTFormatNumbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTFormatNumbers.h"; path = "Core/Source/NSString+DTFormatNumbers.h"; sourceTree = ""; }; - 493E26B10F2816C87308A8BC0A6261FD /* NSString+Paragraphs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Paragraphs.m"; path = "Core/Source/NSString+Paragraphs.m"; sourceTree = ""; }; + 42E4A93F4F0AA6B85A3937E9ECEB5A69 /* audio_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audio_stream.h; path = FreeStreamer/FreeStreamer/audio_stream.h; sourceTree = ""; }; + 4410AB8E006E11288A8D93965E56A16A /* SZTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SZTextView.h; path = Classes/SZTextView.h; sourceTree = ""; }; + 44A4B3FEDE51F8471C429474D9D006B1 /* Reachability-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Reachability-umbrella.h"; sourceTree = ""; }; + 44CD4217846E37AF1CF24CA15ABEF41C /* PHFDelegateChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PHFDelegateChain.m; sourceTree = ""; }; + 452C6FB325C146DC6C494492D22EBE9D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 454A94A23F8B655043521863DE4566C3 /* FLEXInstancesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXInstancesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.m; sourceTree = ""; }; + 45F545C0FADE6E19CB0C6F9EBC50B576 /* NSScanner+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSScanner+HTML.m"; path = "Core/Source/NSScanner+HTML.m"; sourceTree = ""; }; + 4610A99A1E58884E3FC9EA3E49B39F56 /* DTCSSListStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSListStyle.h; path = Core/Source/DTCSSListStyle.h; sourceTree = ""; }; + 4652E28BF1AD2AC93965084072F689A6 /* FLEXNetworkTransactionDetailTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionDetailTableViewController.m; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.m; sourceTree = ""; }; + 4687DC0E23C3EEF3D1FFD4751A637934 /* FLEX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLEX.framework; path = FLEX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 46A7C7801EC3F3DDE6862867FEC95916 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = Classes/Utility/FLEXUtility.h; sourceTree = ""; }; + 474A91D3F930308C6A14D3BF24C7A145 /* DTDictationPlaceholderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderView.h; path = Core/Source/DTDictationPlaceholderView.h; sourceTree = ""; }; + 47E56B5B2A00809D9FF7A2EB441DF2DB /* NSData+NSHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+NSHash.h"; path = "NSHash/NSData+NSHash.h"; sourceTree = ""; }; + 4820F0BD63DF533050D468F50D0E5B86 /* AHKActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHKActionSheet-dummy.m"; sourceTree = ""; }; + 482174E714D9BE843D0737D31C5A7163 /* APAddressBookRefWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookRefWrapper.m; path = Pod/Core/Private/Wrapper/APAddressBookRefWrapper.m; sourceTree = ""; }; + 4837E4E7C180B33C4698F73969383EEC /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = ""; }; + 489F461B9D627E3F0F59061E0D41B50F /* FLEXNetworkSettingsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkSettingsTableViewController.h; path = Classes/Network/FLEXNetworkSettingsTableViewController.h; sourceTree = ""; }; + 48C115C187D2955EFF1EB6D0FD09EB74 /* FLEXWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWindow.m; path = Classes/ExplorerInterface/FLEXWindow.m; sourceTree = ""; }; + 48CD4D54A6BFF316D60EF919A4D12175 /* FLEXWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWebViewController.m; path = Classes/GlobalStateExplorers/FLEXWebViewController.m; sourceTree = ""; }; + 48E23398080F3AF06D20AEF9C9D86232 /* DTCoreTextLayoutFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrame.h; path = Core/Source/DTCoreTextLayoutFrame.h; sourceTree = ""; }; 495F60EEC491A2A5F4A43A7E74429537 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - 497AB26AF52D76E9D1217050E3ABDC36 /* DTVideoTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVideoTextAttachment.h; path = Core/Source/DTVideoTextAttachment.h; sourceTree = ""; }; - 49D1290477FFB589F2B6DE72441808F9 /* DTAttributedLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedLabel.m; path = Core/Source/DTAttributedLabel.m; sourceTree = ""; }; - 4A1666E3A5115BBE7B34F0BC70139A82 /* PHFComposeBarView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PHFComposeBarView.xcconfig; sourceTree = ""; }; - 4ACCF9FAFACEFFAD75C46A10CBC0D021 /* APContactDataExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactDataExtractor.h; path = Pod/Core/Private/Extractors/APContactDataExtractor.h; sourceTree = ""; }; - 4AD1D507A4AD1ECD578735A89277F610 /* AFOAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFOAuthCredential.h; path = AFOAuth2Manager/AFOAuthCredential.h; sourceTree = ""; }; - 4ADA72709FFEA8DBD3A9F7FDB1F27EC8 /* SWFrameButton.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SWFrameButton.modulemap; sourceTree = ""; }; - 4B070DC87062CA61D73E56C9549E2F5E /* FLEXSetExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSetExplorerViewController.h; path = Classes/ObjectExplorers/FLEXSetExplorerViewController.h; sourceTree = ""; }; - 4B1EF70C6D7843FA24124E12C84904DD /* IQAudioRecorderController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQAudioRecorderController-prefix.pch"; sourceTree = ""; }; - 4B39054E39C64AA60D4B973796F732FB /* DTCoreTextLayoutLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutLine.h; path = Core/Source/DTCoreTextLayoutLine.h; sourceTree = ""; }; - 4B3A79BBD35D314ACE6350F857A89F1D /* UICKeyChainStore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UICKeyChainStore.modulemap; sourceTree = ""; }; - 4B45E6E9D262DA3DF6CB410EDE6BBCB0 /* FLEXFieldEditorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorView.h; path = Classes/Editing/FLEXFieldEditorView.h; sourceTree = ""; }; - 4BB5070AB48DFD5D2ECD6629C9BFCD04 /* NSAttributedString+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTCoreText.m"; path = "Core/Source/NSAttributedString+DTCoreText.m"; sourceTree = ""; }; - 4BFFE44F82EE76ADBE63BC430488E022 /* APContactListBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactListBuilder.m; path = Pod/Core/Private/Builders/APContactListBuilder.m; sourceTree = ""; }; - 4C53801A01823DC1DE30867CEDA6F360 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; - 4D1D518438B58E0824DD0135F01846CC /* NSString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+HTML.h"; path = "Core/Source/NSString+HTML.h"; sourceTree = ""; }; - 4D4116FD07B693D49DFCFA61467A084C /* RECommonFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RECommonFunctions.h; path = REMenu/RECommonFunctions.h; sourceTree = ""; }; - 4D6CFAFC836ED3B96DB9E711B8F335E5 /* REMenu.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = REMenu.xcconfig; sourceTree = ""; }; - 4E46F02BF49FE8D3DE26659F8B033DFB /* FLEXRuntimeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRuntimeUtility.h; path = Classes/Utility/FLEXRuntimeUtility.h; sourceTree = ""; }; - 4EB1AFC0F0BB5EBA3119A05F31FBA2E7 /* stop_recording@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_recording@2x.png"; path = "IQAudioRecorderController/Resources/stop_recording@2x.png"; sourceTree = ""; }; - 4FA8422868CB7BC4E3C6A4A9DF12C144 /* ModuleXMLHttpRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ModuleXMLHttpRequest.h; path = JSCoreBom/Modules/ModuleXMLHttpRequest.h; sourceTree = ""; }; - 4FBEBA81009FC82998DE228D8C015564 /* FLEXHierarchyTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewController.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.m; sourceTree = ""; }; - 5052A06269C37B342C6F225A934E7AF6 /* APAddressBook-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "APAddressBook-umbrella.h"; sourceTree = ""; }; - 507DCFD6B7E4F8C746E0CC5EC646138E /* DTActivityTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTActivityTitleView.m; path = Core/Source/iOS/DTActivityTitleView.m; sourceTree = ""; }; - 5091560B808CE2990EB65581AF604409 /* NBPhoneNumberDesc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumberDesc.m; path = libPhoneNumber/NBPhoneNumberDesc.m; sourceTree = ""; }; - 50A2B72C4F9BB58D69A45B08CB27C03E /* FreeStreamer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FreeStreamer.modulemap; sourceTree = ""; }; - 50F16E57C4E1C94A93877457E946A650 /* audio_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audio_stream.h; path = FreeStreamer/FreeStreamer/audio_stream.h; sourceTree = ""; }; - 513F8204794C408B71A330CC932C42A6 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = Classes/Network/FLEXNetworkTransaction.h; sourceTree = ""; }; - 5158D8F86C491A7F2899C1FCC59F23AD /* NSGIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NSGIF.m; path = NSGIF/NSGIF.m; sourceTree = ""; }; - 516E62C5BC8A17EE6E1E4B882C90A370 /* TWMessageBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TWMessageBarManager.m; path = Classes/TWMessageBarManager.m; sourceTree = ""; }; - 519D084D1C46012C13F1D489CA7F3C76 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 51AD72C9A8E248687FC0C8A4594E0D63 /* FLEXNetworkCurlLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkCurlLogger.h; path = Classes/Network/FLEXNetworkCurlLogger.h; sourceTree = ""; }; - 51DBB0AD842D2C57418199D24F35F776 /* DTCoreTextLayoutFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrame.m; path = Core/Source/DTCoreTextLayoutFrame.m; sourceTree = ""; }; - 52FBE7B77A052D705FE51A58137FB726 /* INTURequestIDGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTURequestIDGenerator.h; path = LocationManager/INTULocationManager/INTURequestIDGenerator.h; sourceTree = ""; }; - 531FCE527913ABF88780A90E846F9E48 /* SBJson.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SBJson.framework; path = SBJson.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 54017649935CDCA84B98680821423DF0 /* FLEXFileBrowserSearchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserSearchOperation.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.m; sourceTree = ""; }; - 548BF6570B96285AB977EDDD41EDCE7F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 54C2BCA7AA57DFB65489D711C0C0D954 /* DTCoreTextGlyphRun.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextGlyphRun.m; path = Core/Source/DTCoreTextGlyphRun.m; sourceTree = ""; }; - 55085C479A410383692A43A0FF750D42 /* RMDateSelectionViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMDateSelectionViewController-prefix.pch"; sourceTree = ""; }; - 55406DBE66FE1FEE34DE9ED35DB9B164 /* RMDateSelectionViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RMDateSelectionViewController.xcconfig; sourceTree = ""; }; - 554E202051959EEFB2E3973C86D930D0 /* SWCellScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWCellScrollView.m; path = SWTableViewCell/PodFiles/SWCellScrollView.m; sourceTree = ""; }; - 556377BE586B30F75EAB70F380FA8524 /* SWTableViewCell.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWTableViewCell.xcconfig; sourceTree = ""; }; - 5583539C417F6E02604380624B1BEA32 /* ModuleConsole.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ModuleConsole.m; path = JSCoreBom/Modules/ModuleConsole.m; sourceTree = ""; }; - 558E3CE88B94DCD84E6BC17A93B7F25B /* APRecordDate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APRecordDate.h; path = Pod/Core/Public/Models/APRecordDate.h; sourceTree = ""; }; - 57ADDD9E9288B4121285062A40F73485 /* libPhoneNumber-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libPhoneNumber-iOS-umbrella.h"; sourceTree = ""; }; - 57B62A04F13D288D076C68A79C6391C0 /* PHFDelegateChain.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PHFDelegateChain.xcconfig; sourceTree = ""; }; - 5821002FEE7E586AFC2C8B275701E2B8 /* NSAttributedString+SmallCaps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+SmallCaps.h"; path = "Core/Source/NSAttributedString+SmallCaps.h"; sourceTree = ""; }; - 589114A2A9D350886947E366A7D16A4F /* RMDateSelectionViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = RMDateSelectionViewController.modulemap; sourceTree = ""; }; - 58E8D05FA902E7375941CBB53982E09E /* UIView+DHSmartScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DHSmartScreenshot.m"; path = "Classes/UIView+DHSmartScreenshot.m"; sourceTree = ""; }; - 58F76130017D1638B73950E109E6831C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 58F79B105BDF17D949E5716F1C4E09DE /* DTHorizontalRuleHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHorizontalRuleHTMLElement.h; path = Core/Source/DTHorizontalRuleHTMLElement.h; sourceTree = ""; }; - 58FD328AB69605257D88B5C6850CF2D4 /* stop_playing.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = stop_playing.png; path = IQAudioRecorderController/Resources/stop_playing.png; sourceTree = ""; }; - 590E014B3423654B12EA345F0958FA3B /* NSHash.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NSHash.modulemap; sourceTree = ""; }; - 5933DC083FA7DA265179CEA5D8FF1571 /* FLEXArgumentInputFontsPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontsPickerView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.m; sourceTree = ""; }; - 59391E03D045F132284A62D2249F0975 /* AFOAuth2Manager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFOAuth2Manager-dummy.m"; sourceTree = ""; }; - 599CF8186B46CFCC72D20F589F789B17 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; - 59DC15EEF5FAF8C06942A1B3C94DC1A7 /* FLEXArgumentInputSwitchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputSwitchView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h; sourceTree = ""; }; - 59FF6E9F173093956EBFAFAB702D3162 /* NSGIF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NSGIF.modulemap; sourceTree = ""; }; - 5AC0328B204DD6C7FCD8A5F994E3B38A /* NSScanner+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSScanner+HTML.m"; path = "Core/Source/NSScanner+HTML.m"; sourceTree = ""; }; - 5B011FEBF6AA11BFB7319447EAB044BC /* DTAttributedTextContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextContentView.h; path = Core/Source/DTAttributedTextContentView.h; sourceTree = ""; }; - 5B15EEDF65C3D355BEA47A992A486FE3 /* APContactDataExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactDataExtractor.m; path = Pod/Core/Private/Extractors/APContactDataExtractor.m; sourceTree = ""; }; - 5B6C7C96AECE08DBC3E2FE796A23B322 /* NSGIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NSGIF.h; path = NSGIF/NSGIF.h; sourceTree = ""; }; - 5B6CF5190869B64E3F80E9F06ADC2A42 /* TWMessageBarManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TWMessageBarManager.framework; path = TWMessageBarManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4984916CAFB76DFB6EAE1F7A5FAF504C /* APAddressBookContactsRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookContactsRoutine.m; path = Pod/Core/Private/Routine/APAddressBookContactsRoutine.m; sourceTree = ""; }; + 499D9021A3181138DDDCC270C55CC475 /* JDStatusBarNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarNotification.m; path = JDStatusBarNotification/JDStatusBarNotification.m; sourceTree = ""; }; + 49F6B1094D831985642788CD743EB123 /* DTFolderMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFolderMonitor.h; path = Core/Source/DTFolderMonitor.h; sourceTree = ""; }; + 4A2342469369B33A0E418CFF3BAB58AB /* DTFoundationConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFoundationConstants.m; path = Core/Source/DTFoundationConstants.m; sourceTree = ""; }; + 4A6901341334DEDE58238A0327DD0A64 /* NSURL+DTUnshorten.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTUnshorten.h"; path = "Core/Source/NSURL+DTUnshorten.h"; sourceTree = ""; }; + 4A69EF5BD3D103526F96A3165A459EAC /* SWTableViewCell-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWTableViewCell-dummy.m"; sourceTree = ""; }; + 4AD8CF1859545D02370A32CB07C1F721 /* SWFrameButton-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWFrameButton-dummy.m"; sourceTree = ""; }; + 4AFEB6C702C25BD126FF9644049E318C /* JSCoreBom.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSCoreBom.xcconfig; sourceTree = ""; }; + 4B409FF11D750CA4BA50E99F3A5E9DE9 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = ""; }; + 4BF3706313C9F7B04AB33987689C6563 /* NSCoder+DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCoder+DTCompatibility.h"; path = "Core/Source/NSCoder+DTCompatibility.h"; sourceTree = ""; }; + 4C5C73E9A8C79E739DFDC19B125EF936 /* IQAudioRecorderController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQAudioRecorderController-prefix.pch"; sourceTree = ""; }; + 4C623CD6B126AB6F792A4774E384E67D /* FLEXTableContentViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.m; sourceTree = ""; }; + 4CF80A71043EF71E4A51A9856CA81EAB /* DTVideoTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVideoTextAttachment.h; path = Core/Source/DTVideoTextAttachment.h; sourceTree = ""; }; + 4D169FFA420A8C418E313FD6BE6AFB77 /* FLEXMultiColumnTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultiColumnTableView.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.m; sourceTree = ""; }; + 4DB6CC249710222131F70489B6162BEA /* APRecordDate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APRecordDate.m; path = Pod/Core/Public/Models/APRecordDate.m; sourceTree = ""; }; + 4E56B8BFA4A4729166C37E4CF17EF4D0 /* SWUtilityButtonTapGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWUtilityButtonTapGestureRecognizer.m; path = SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.m; sourceTree = ""; }; + 4E96F5C0D70D19BEFF036339DD683767 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4F5181D1D065F2217D80D2D8B1E535AE /* FLEXClassExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassExplorerViewController.m; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.m; sourceTree = ""; }; + 4F75B0941633011875EA450B8F43FFD3 /* NSArray+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+DTError.m"; path = "Core/Source/NSArray+DTError.m"; sourceTree = ""; }; + 4F818E6397B87D47749C8181C0450F8A /* UICKeyChainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UICKeyChainStore.m; path = Lib/UICKeyChainStore/UICKeyChainStore.m; sourceTree = ""; }; + 4FDC5F8B24D28D85DDE3ACE4AF17B831 /* HMSegmentedControl.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HMSegmentedControl.xcconfig; sourceTree = ""; }; + 4FE471E282BDC6D9C3252D480850BE4D /* SWUtilityButtonTapGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWUtilityButtonTapGestureRecognizer.h; path = SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.h; sourceTree = ""; }; + 4FF08E65E572CC0E9EC130082BD8D5D2 /* http_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = http_stream.cpp; path = FreeStreamer/FreeStreamer/http_stream.cpp; sourceTree = ""; }; + 5013707F6E5C2FACE8D34360174F5063 /* REMenu.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = REMenu.xcconfig; sourceTree = ""; }; + 5099EF31159BE761612B09C44A57705E /* FLEX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-prefix.pch"; sourceTree = ""; }; + 50AF61407797889ABF209BF3C55700F1 /* APAddressBookBaseRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookBaseRoutine.h; path = Pod/Core/Private/Routine/Base/APAddressBookBaseRoutine.h; sourceTree = ""; }; + 50E5D5A3402AA2DBA32B47A02A8D0598 /* REMenuItemView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenuItemView.m; path = REMenu/REMenuItemView.m; sourceTree = ""; }; + 5196D76F66EAA1348488180E0BE0D355 /* DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCompatibility.h; path = Core/Source/DTCompatibility.h; sourceTree = ""; }; + 51F387A2409441008AA9F753581CB6F9 /* DTAttributedTextContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextContentView.h; path = Core/Source/DTAttributedTextContentView.h; sourceTree = ""; }; + 51FECFE61766D2F0FD6EEBEFB7684728 /* DTFoundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTFoundation-prefix.pch"; sourceTree = ""; }; + 520DDD7347559BF3F7375169C645A122 /* DTCustomColoredAccessory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCustomColoredAccessory.h; path = Core/Source/iOS/DTCustomColoredAccessory.h; sourceTree = ""; }; + 5290BA7843E810AE324457A4792A9A53 /* UIView+DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DHSmartScreenshot.h"; path = "Classes/UIView+DHSmartScreenshot.h"; sourceTree = ""; }; + 52AD87B607C15FFB79D35B21337E7CF9 /* APAddressBookExternalChangeRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookExternalChangeRoutine.m; path = Pod/Core/Private/Routine/APAddressBookExternalChangeRoutine.m; sourceTree = ""; }; + 53565D4F8B8DC8995B788CA5AD568F47 /* DTObjectTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTObjectTextAttachment.m; path = Core/Source/DTObjectTextAttachment.m; sourceTree = ""; }; + 53D01632E07765E0EA5A975EFA674F85 /* SBJson4StreamWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriter.m; path = src/main/objc/SBJson4StreamWriter.m; sourceTree = ""; }; + 5489F29389A263D10F7CBCF2EFD7D60E /* DTCSSStylesheet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSStylesheet.h; path = Core/Source/DTCSSStylesheet.h; sourceTree = ""; }; + 54A7E267A8B2B6EE0AF7881373BCFC6E /* FLEXWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXWebViewController.h; path = Classes/GlobalStateExplorers/FLEXWebViewController.h; sourceTree = ""; }; + 553082BDFDAAC608DBC835A88F1A96B5 /* FLEXLiveObjectsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLiveObjectsTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.h; sourceTree = ""; }; + 5587581B5F87FFD668818031AC672E8E /* REMenuItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenuItem.m; path = REMenu/REMenuItem.m; sourceTree = ""; }; + 55DC1E074695630DFE328A922DFEFF65 /* APContactDataExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactDataExtractor.m; path = Pod/Core/Private/Extractors/APContactDataExtractor.m; sourceTree = ""; }; + 5620E858C3F0F2A3B085EC77B6EAF607 /* FLEXDictionaryExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDictionaryExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h; sourceTree = ""; }; + 564E65A8928275F77EA5A5048D9EF45F /* DTBreakHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBreakHTMLElement.h; path = Core/Source/DTBreakHTMLElement.h; sourceTree = ""; }; + 564FB8B1E2F32AF451C1A5CA67E435CA /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; }; + 56A91F21E0A8CEBD9642772294CD7969 /* FLEXHierarchyTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewCell.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.m; sourceTree = ""; }; + 56BA7E4324537AFE6EC868FAD94AB181 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; + 570F6313A29B7889ACE2DC9BC076C546 /* IQCropSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQCropSelectionView.m; path = IQAudioRecorderController/IQCropSelectionView.m; sourceTree = ""; }; + 577BE5141CDF425661D1B2324A51AFF2 /* AFOAuth2Manager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFOAuth2Manager-dummy.m"; sourceTree = ""; }; + 5785B155E5A5F677B026C834297B5091 /* DTCSSListStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSListStyle.m; path = Core/Source/DTCSSListStyle.m; sourceTree = ""; }; + 57E61DBF2994BBF04C34271543FE1EE7 /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.h; sourceTree = ""; }; + 58D580F8C5CBDF3D4B53254168EDB5F0 /* APAddressBook.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = APAddressBook.modulemap; sourceTree = ""; }; + 593DC7FCD1632C8F7B3D7CBC367DC5DE /* FLEXArgumentInputNotSupportedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNotSupportedView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.m; sourceTree = ""; }; + 59B67B04AD3EA88328409190784CEF75 /* SBJson4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4.h; path = src/main/objc/SBJson4.h; sourceTree = ""; }; + 5A218A487C09296FD7C4E83D305DA7BE /* SWCellScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWCellScrollView.h; path = SWTableViewCell/PodFiles/SWCellScrollView.h; sourceTree = ""; }; + 5ABBEC10375556DB8696C376DD6915FD /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.m; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.m; sourceTree = ""; }; + 5AE9C4267310C59A5C302AB6BFA6EAB9 /* NSScanner+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSScanner+HTML.h"; path = "Core/Source/NSScanner+HTML.h"; sourceTree = ""; }; + 5B30A048113079408DAB2EE5C967390E /* APAddressBookAccessRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookAccessRoutine.m; path = Pod/Core/Private/Routine/APAddressBookAccessRoutine.m; sourceTree = ""; }; 5BA79654855CD0B7DB14A8FDEC6742D1 /* RMActionController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RMActionController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5BB2EBB75476B791A0FB3BE34111B8CD /* DTActivityTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTActivityTitleView.h; path = Core/Source/iOS/DTActivityTitleView.h; sourceTree = ""; }; - 5C23640D31030C7151EF8CAA8AADE6D2 /* NSArray+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+DTError.m"; path = "Core/Source/NSArray+DTError.m"; sourceTree = ""; }; - 5C5F1B44E4AA776DBFF2E9B338A065C1 /* JDStatusBarNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JDStatusBarNotification-prefix.pch"; sourceTree = ""; }; - 5C6A5C0A8B9AED5E7308099137C1AE29 /* TWMessageBarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TWMessageBarManager-prefix.pch"; sourceTree = ""; }; - 5C6D986F663250767FAA1395B17DECF9 /* FSPlaylistItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSPlaylistItem.m; path = FreeStreamer/FreeStreamer/FSPlaylistItem.m; sourceTree = ""; }; - 5CA18D0B3413173A93E1B55F7AE9ED0C /* DTCoreTextFontCollection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontCollection.m; path = Core/Source/DTCoreTextFontCollection.m; sourceTree = ""; }; - 5CC7DCEBD1ABBED086D7F1F493A3F866 /* TWMessageBarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TWMessageBarManager.modulemap; sourceTree = ""; }; - 5CD4C39A6EC0674744537D4134D10BE7 /* DTTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachment.h; path = Core/Source/DTTextAttachment.h; sourceTree = ""; }; - 5D068FDBA33E6700A79536DF6A8598DB /* RMActionController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RMActionController.framework; path = RMActionController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D06EBA5A187145C3218D80A884D2F75 /* FLEXArgumentInputJSONObjectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputJSONObjectView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h; sourceTree = ""; }; - 5D744BB84890F39B0BE3E3E4661DFB57 /* RMActionController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMActionController-prefix.pch"; sourceTree = ""; }; - 5D816DCDFF35B12EB1DADB8ADB543E76 /* REMenuItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenuItem.m; path = REMenu/REMenuItem.m; sourceTree = ""; }; - 5DBABFC70BDB54438E010E1587B30256 /* SWFrameButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWFrameButton.m; path = SWFrameButton/SWFrameButton.m; sourceTree = ""; }; - 5DF9CEECDC891DC10424F5DF51252A23 /* SDWebImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDecoder.h; path = SDWebImage/SDWebImageDecoder.h; sourceTree = ""; }; - 5E301D6FA8206483FBE37A60EB3DD322 /* CYRTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRTextView.m; path = CYRTextView/CYRTextView.m; sourceTree = ""; }; - 5E80D88F50972E97CB6E2A8F5DA924AE /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.m; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.m; sourceTree = ""; }; - 5EC40F6CABFC086D3DDEEC1E1495B55F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 5EECEF3616375C6F84C8A539E0F5C468 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 5EF013AD7640EB2FF5D1FDBED5564A57 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; }; - 5F4E8A658CDAF3983F2DC7BFD2FD516D /* TTTAttributedLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TTTAttributedLabel-prefix.pch"; sourceTree = ""; }; - 5F6D830818B3EDFD26B623D184B565B9 /* SocketRocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-prefix.pch"; sourceTree = ""; }; - 5F8078C98EEF8EF37A6AD6FC25D66DAA /* FLEXViewExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.m; sourceTree = ""; }; - 5FE853E2E2BECEA6223E91987D0233B0 /* REMenu-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "REMenu-dummy.m"; sourceTree = ""; }; - 5FF6D03E41417FBE1FD87B8CCE77A93B /* FLEXLiveObjectsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLiveObjectsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.m; sourceTree = ""; }; - 60103F7EC28D7BBA767715BA7A08BCF3 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; - 602C8A4FC0223BC6B50FC6D7EDD3032A /* NSDictionary+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTError.h"; path = "Core/Source/NSDictionary+DTError.h"; sourceTree = ""; }; - 603619604F1CA9C9A3B790BCACA1498D /* UIImage+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DTFoundation.h"; path = "Core/Source/iOS/UIImage+DTFoundation.h"; sourceTree = ""; }; - 6090165E4696F02B1C8BA332A928E3AD /* SWTableViewCell-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWTableViewCell-dummy.m"; sourceTree = ""; }; - 60907D72F03DD35F791A69FFAB18EB61 /* DTAttributedTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextView.m; path = Core/Source/DTAttributedTextView.m; sourceTree = ""; }; - 611B11604E291C2C381F178E4282CD21 /* input_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = input_stream.cpp; path = FreeStreamer/FreeStreamer/input_stream.cpp; sourceTree = ""; }; - 611F3A488A6B20C68C68DE9C635930C1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 617A831F012971178ADE21664D234D89 /* FLEXInstancesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXInstancesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.m; sourceTree = ""; }; - 62129851FDC81D7C3A56EE96A8B471F0 /* UIWindow+AHKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+AHKAdditions.h"; path = "Classes/UIWindow+AHKAdditions.h"; sourceTree = ""; }; - 62790314D504AA77213ABA7FDFCCD80F /* SWUtilityButtonView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWUtilityButtonView.m; path = SWTableViewCell/PodFiles/SWUtilityButtonView.m; sourceTree = ""; }; - 62AE830DFB41FD3A391C5C34D70C710D /* DTColor+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTColor+Compatibility.m"; path = "Core/Source/DTColor+Compatibility.m"; sourceTree = ""; }; - 62D0381A8642B882F4912C978248FBEE /* DTHTMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLWriter.m; path = Core/Source/DTHTMLWriter.m; sourceTree = ""; }; - 634D56DF8F42A3D41685370E62FE0B00 /* DTFoundation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DTFoundation.framework; path = DTFoundation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6350D9BBE613A0024F8FA4AA8E14C0D0 /* APEmail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APEmail.m; path = Pod/Core/Public/Models/APEmail.m; sourceTree = ""; }; - 63658ECF7F3AAA404A61E816FD267E8F /* APContactBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactBuilder.m; path = Pod/Core/Private/Builders/APContactBuilder.m; sourceTree = ""; }; - 63CF4504CF839991AA06FDC5BF836C63 /* FSAudioStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSAudioStream.h; path = FreeStreamer/FreeStreamer/FSAudioStream.h; sourceTree = ""; }; - 63F96CD01E23F8C4EBAADB24E8567110 /* JSCoreBom.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSCoreBom.xcconfig; sourceTree = ""; }; - 649ED2EEA951D5CD1FF9A425A980690D /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = MBProgressHUD.modulemap; sourceTree = ""; }; - 64BBB9C81A8B67101B39547FD4F7E216 /* NSURL+DTComparing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTComparing.h"; path = "Core/Source/NSURL+DTComparing.h"; sourceTree = ""; }; - 64DB399656ADE8ABC93CCFC742753A81 /* Reachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = ""; }; - 65576D8B919226BC5A96337F21206ACF /* DTTextBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextBlock.m; path = Core/Source/DTTextBlock.m; sourceTree = ""; }; - 655F02821609FC8C218546881BD8DF71 /* FLEXNetworkHistoryTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkHistoryTableViewController.h; path = Classes/Network/FLEXNetworkHistoryTableViewController.h; sourceTree = ""; }; + 5BB1539A6FB302C1E72E972FDF08FFDC /* TWMessageBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TWMessageBarManager.m; path = Classes/TWMessageBarManager.m; sourceTree = ""; }; + 5BBF1A1DC3395406A18DCB8D4E729576 /* AHKActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHKActionSheet.xcconfig; sourceTree = ""; }; + 5BCD45784DF8550AAB0DD6DB67BFE3DE /* BBBadgeBarButtonItem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BBBadgeBarButtonItem.xcconfig; sourceTree = ""; }; + 5C34848C8DC5AB25B2E7DED0A0AF77E2 /* SBJson-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SBJson-dummy.m"; sourceTree = ""; }; + 5C65E5F39A9EAA05F158D30B010C7802 /* SWFrameButton.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SWFrameButton.modulemap; sourceTree = ""; }; + 5D09E6314A859A92AC55D716BDE2739E /* AHKActionSheet.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AHKActionSheet.modulemap; sourceTree = ""; }; + 5D1823A50EBBD1FDCB55D891A94A567D /* RMActionController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RMActionController.xcconfig; sourceTree = ""; }; + 5D3AF2C1BEF6526BC9D503045080CDC9 /* SocketRocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SocketRocket-dummy.m"; sourceTree = ""; }; + 5D42C560F8D879AC83E4CFC77B6EA387 /* AFOAuth2Manager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFOAuth2Manager-umbrella.h"; sourceTree = ""; }; + 5D68DEC7885B35A7B694C96F0C7E0DAB /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; + 5D6ECB224FE365BD811DF49436D9FC30 /* REMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenu.m; path = REMenu/REMenu.m; sourceTree = ""; }; + 5D8E2FC15A1725A98A47D7FD116832C5 /* IQAudioRecorderViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQAudioRecorderViewController.m; path = IQAudioRecorderController/IQAudioRecorderViewController.m; sourceTree = ""; }; + 5DDC194FD012415DE371E97259AEA5D4 /* NSCoder+DTCompatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCoder+DTCompatibility.m"; path = "Core/Source/NSCoder+DTCompatibility.m"; sourceTree = ""; }; + 5E411588639259E7495BF1D18800ACC9 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; }; + 5E4FE1C7CF095483DBCE1A75448879DD /* APContactListBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContactListBuilder.m; path = Pod/Core/Private/Builders/APContactListBuilder.m; sourceTree = ""; }; + 5E7F5A31FB209E5663F183CE9327C389 /* FSXMLHttpRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSXMLHttpRequest.m; path = FreeStreamer/FreeStreamer/FSXMLHttpRequest.m; sourceTree = ""; }; + 5E95882FCEA987F6F4933E34F413EF3E /* NBMetadataCoreTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCoreTest.m; path = libPhoneNumber/NBMetadataCoreTest.m; sourceTree = ""; }; + 5E9D9CFC3B3A6FDC6209D798B16F3807 /* DTActivityTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTActivityTitleView.h; path = Core/Source/iOS/DTActivityTitleView.h; sourceTree = ""; }; + 5EBA09EEECA89B358424CB47C3DDE359 /* PHFComposeBarView_Button.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PHFComposeBarView_Button.m; path = Classes/PHFComposeBarView_Button.m; sourceTree = ""; }; + 5EE768E016D759EFFE6C9D3917786B9B /* DTLinkButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLinkButton.m; path = Core/Source/DTLinkButton.m; sourceTree = ""; }; + 5F4395C805E2381CCF475591B581F935 /* PHFDelegateChain.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PHFDelegateChain.framework; path = PHFDelegateChain.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5F54A11147FF594982DCD0AC1CB65DCD /* SCSiriWaveformView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SCSiriWaveformView.framework; path = SCSiriWaveformView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5F68603B8A3B9E15A40A10B7DB9F9B79 /* RMDateSelectionViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RMDateSelectionViewController.h; path = RMDateSelectionViewController/RMDateSelectionViewController.h; sourceTree = ""; }; + 5F82ACB03D312133103ADC240BCCA2BB /* IQAudioRecorderController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQAudioRecorderController-dummy.m"; sourceTree = ""; }; + 5F8758C641D913288CF42FF3096088AA /* FLEXExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXExplorerViewController.h; path = Classes/ExplorerInterface/FLEXExplorerViewController.h; sourceTree = ""; }; + 5FB6A062BBDEFD99D304015A4C96A044 /* TTTAttributedLabel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TTTAttributedLabel-prefix.pch"; sourceTree = ""; }; + 600387883BC9EC0E1F68A77D2C288367 /* DTCustomColoredAccessory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCustomColoredAccessory.m; path = Core/Source/iOS/DTCustomColoredAccessory.m; sourceTree = ""; }; + 6016E7C82D60BF4878DDCF1ABFBE291C /* FSAudioStream.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSAudioStream.mm; path = FreeStreamer/FreeStreamer/FSAudioStream.mm; sourceTree = ""; }; + 60478A58028459547F02E6B26B7E2C2C /* APSocialProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APSocialProfile.m; path = Pod/Core/Public/Models/APSocialProfile.m; sourceTree = ""; }; + 605CC95266D6BFE9108CAF84AF9FAE43 /* RMActionController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RMActionController-dummy.m"; sourceTree = ""; }; + 60AB17D9A77BFA09F5D1C7A10CBDDB3E /* icon-error.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-error.png"; path = "Classes/Icons/icon-error.png"; sourceTree = ""; }; + 6138601BBFDEA36F016DD6017D3FC6EF /* UICKeyChainStore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = UICKeyChainStore.modulemap; sourceTree = ""; }; + 613A2363EEA4D8E47505978617ACEE48 /* JSCoreBom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCoreBom.h; path = JSCoreBom/JSCoreBom.h; sourceTree = ""; }; + 6140F4E1C03D176938B896ACE66D6106 /* SBJson4StreamWriterState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriterState.h; path = src/main/objc/SBJson4StreamWriterState.h; sourceTree = ""; }; + 614ABA1DFFD832A8EEC1596645172070 /* APAddressBook-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "APAddressBook-prefix.pch"; sourceTree = ""; }; + 614E532273AE81EA05F95ABE1D5D5C5F /* NSGIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NSGIF.m; path = NSGIF/NSGIF.m; sourceTree = ""; }; + 6165867674024049D5830634537E8B40 /* Reachability-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Reachability-prefix.pch"; sourceTree = ""; }; + 6187C18B94AA3B665B0393772AB84895 /* FLEXArgumentInputDateView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputDateView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.h; sourceTree = ""; }; + 61B4064AFE929421A663141B27C07C93 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; + 6220458DB827C9E4FD6BBD74C2B424D0 /* NSURL+DTUnshorten.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTUnshorten.m"; path = "Core/Source/NSURL+DTUnshorten.m"; sourceTree = ""; }; + 6271826907CD8597A4FDB9CA56887C4C /* RMActionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RMActionController.h; path = RMActionController/RMActionController.h; sourceTree = ""; }; + 62A2F121D81207F0987F91CAA7F22614 /* NSString+DTUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTUtilities.m"; path = "Core/Source/NSString+DTUtilities.m"; sourceTree = ""; }; + 62E5410520A51BFE20C24BAC455CC4E3 /* INTUHeadingRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTUHeadingRequest.m; path = LocationManager/INTULocationManager/INTUHeadingRequest.m; sourceTree = ""; }; + 62E85831B2DF52A0C5B84A1D78E7107B /* DTTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachment.m; path = Core/Source/DTTextAttachment.m; sourceTree = ""; }; + 62F87E4615491AC90D3964AE96528175 /* FLEXSystemLogTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewController.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.m; sourceTree = ""; }; + 6363F68A57135BA2AF6273BCF054B87F /* UIImage+AHKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AHKAdditions.h"; path = "Classes/UIImage+AHKAdditions.h"; sourceTree = ""; }; + 637C79F4C883D018947722FAE52C0F60 /* NSAttributedString+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTCoreText.m"; path = "Core/Source/NSAttributedString+DTCoreText.m"; sourceTree = ""; }; + 642BC7C776669AED65D56835C4E4C158 /* NSString+CSS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+CSS.h"; path = "Core/Source/NSString+CSS.h"; sourceTree = ""; }; + 646990BB288B2EAE42A5E57FDD4C05E7 /* FSParseRssPodcastFeedRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSParseRssPodcastFeedRequest.m; path = FreeStreamer/FreeStreamer/FSParseRssPodcastFeedRequest.m; sourceTree = ""; }; + 6471F2799F9868314CDA3AC12E5B694B /* FLEXPropertyEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXPropertyEditorViewController.h; path = Classes/Editing/FLEXPropertyEditorViewController.h; sourceTree = ""; }; + 64BED456F39940F3081D2FDF9AA5C51B /* FLEXArgumentInputStructView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStructView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.m; sourceTree = ""; }; + 650A7641A8DA925DE82A867E54F7DBFF /* UIView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DTFoundation.h"; path = "Core/Source/iOS/UIView+DTFoundation.h"; sourceTree = ""; }; + 652AA6410E90991554C0C8C45869BA3B /* libPhoneNumber-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "libPhoneNumber-iOS.modulemap"; sourceTree = ""; }; + 653285F40C9C7E00DACCF5DC45AC0CCB /* FLEXNetworkCurlLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkCurlLogger.m; path = Classes/Network/FLEXNetworkCurlLogger.m; sourceTree = ""; }; + 654B1A98E7531D9BFD46C42E80BEC004 /* FLEXLiveObjectsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLiveObjectsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.m; sourceTree = ""; }; + 6573E32250A1E1BBB80E30AA4ED0FAB0 /* RMDateSelectionViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RMDateSelectionViewController-dummy.m"; sourceTree = ""; }; 6575BDE2379F6A422495C23290149CD4 /* Pods-Jasonette-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Jasonette-dummy.m"; sourceTree = ""; }; - 664C1E4D0D8CC1723D0A4FFE4F706103 /* SWTableViewCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SWTableViewCell.framework; path = SWTableViewCell.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 66C4D40948A967A9066D3764FD4CBB52 /* HMSegmentedControl-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HMSegmentedControl-dummy.m"; sourceTree = ""; }; - 6704C40559C67CA2DAFF8C264DC0CCD5 /* DTBase64Coding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBase64Coding.m; path = Core/Source/DTBase64Coding.m; sourceTree = ""; }; - 672606C10EFC966911E712E8D2B588DA /* AHKActionSheet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AHKActionSheet.h; path = Classes/AHKActionSheet.h; sourceTree = ""; }; - 67430B51A7293173BC199C0E349D394A /* DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreText.h; path = Core/Source/DTCoreText.h; sourceTree = ""; }; - 674E955E6A75AA3AF8D87B5AD1B623FF /* SWTableViewCell.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SWTableViewCell.modulemap; sourceTree = ""; }; - 67F343B8ED9CEFC0E602CA7B4AEC9B9B /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AFNetworking.modulemap; sourceTree = ""; }; - 6867048CC65188369D134347ECD7AF6D /* APThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APThread.m; path = Pod/Core/Private/Thread/APThread.m; sourceTree = ""; }; - 6880352DF326EFEA2022BF3B98EA7DD1 /* APAddressBook.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = APAddressBook.xcconfig; sourceTree = ""; }; - 68A8032D4906C33B0B8B34183EC17B51 /* FLEXNetworkSettingsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkSettingsTableViewController.h; path = Classes/Network/FLEXNetworkSettingsTableViewController.h; sourceTree = ""; }; - 690BE8C777CDE705C4A5D47FB9E1EA8A /* DTPieProgressIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTPieProgressIndicator.h; path = Core/Source/iOS/DTPieProgressIndicator.h; sourceTree = ""; }; - 690E28B5592B0D4DEBC50629497F7A10 /* NSURL+DTUnshorten.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTUnshorten.h"; path = "Core/Source/NSURL+DTUnshorten.h"; sourceTree = ""; }; - 6A076248B1B018C677DF241DBE2E362A /* NSCoder+DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCoder+DTCompatibility.h"; path = "Core/Source/NSCoder+DTCompatibility.h"; sourceTree = ""; }; - 6A68FE5C331CD5C21152DCBD1E6CC621 /* DTLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLog.m; path = Core/Source/DTLog.m; sourceTree = ""; }; - 6AEEBB3577342B19CBD08214BACDC205 /* NSAttributedString+DTDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTDebug.h"; path = "Core/Source/NSAttributedString+DTDebug.h"; sourceTree = ""; }; - 6C8EAF1BC43D6D89030D45498D0F0107 /* icon-success@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-success@2x.png"; path = "Classes/Icons/icon-success@2x.png"; sourceTree = ""; }; - 6C920F926A3E5B948F3303C2FDE2631F /* DTFolderMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFolderMonitor.h; path = Core/Source/DTFolderMonitor.h; sourceTree = ""; }; - 6CB56540951EF36C5E98755E6A042969 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 6D9F5D5ED642958F3F18F0250A7B496F /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = ""; }; - 6DB509DC9CF8B2241B6EA60524C64EF6 /* NSDictionary+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTError.m"; path = "Core/Source/NSDictionary+DTError.m"; sourceTree = ""; }; - 6DBAA4D161962DBB007C8DA49427A1F8 /* NSMutableArray+DTMoving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableArray+DTMoving.h"; path = "Core/Source/NSMutableArray+DTMoving.h"; sourceTree = ""; }; - 6DCF5B5BE947EA00E29AA88E04BBD2E9 /* DTCustomColoredAccessory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCustomColoredAccessory.h; path = Core/Source/iOS/DTCustomColoredAccessory.h; sourceTree = ""; }; - 6DEB3EC1A514A50F3A3170E32CFA587E /* DHSmartScreenshot-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DHSmartScreenshot-dummy.m"; sourceTree = ""; }; - 6DFCCBF52871E3104F750989CE83666B /* FLEXMethodCallingViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMethodCallingViewController.h; path = Classes/Editing/FLEXMethodCallingViewController.h; sourceTree = ""; }; - 6E35634647948F892A5535CC1B07B461 /* DTCoreTextLayouter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayouter.m; path = Core/Source/DTCoreTextLayouter.m; sourceTree = ""; }; - 6F4E51636078614B39192813EEA77055 /* FSParseRssPodcastFeedRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSParseRssPodcastFeedRequest.m; path = FreeStreamer/FreeStreamer/FSParseRssPodcastFeedRequest.m; sourceTree = ""; }; - 6F8BB38E19C2F12AEC60A2E52E2D7388 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 6F99FB59527E073D47C4CB48C98FD83C /* TTTAttributedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TTTAttributedLabel.h; path = TTTAttributedLabel/TTTAttributedLabel.h; sourceTree = ""; }; - 6FDACA53B2B908A55FD35F4EBEDE7288 /* PHFComposeBarView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PHFComposeBarView.framework; path = PHFComposeBarView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6FFBC11643DF2BFF23696BEF0F7BD794 /* RMActionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RMActionController.m; path = RMActionController/RMActionController.m; sourceTree = ""; }; - 700278E1CA5E20C88290200E6EE849C8 /* DAKeyboardControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DAKeyboardControl.m; path = DAKeyboardControl/DAKeyboardControl.m; sourceTree = ""; }; - 70453B076B8940B2EB2C5FC8B72E5BCF /* NSData+DTCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+DTCrypto.h"; path = "Core/Source/NSData+DTCrypto.h"; sourceTree = ""; }; - 704EEC7FBA274F537A1B0E3C305E5C17 /* SBJson4StreamParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParser.h; path = src/main/objc/SBJson4StreamParser.h; sourceTree = ""; }; - 709BAAFD3E917331F0287D67BC5F5204 /* CYRLayoutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRLayoutManager.m; path = CYRTextView/CYRLayoutManager.m; sourceTree = ""; }; - 70BB5A3087ED9C81DD22C1770C2D6E8D /* DTCoreTextMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextMacros.h; path = Core/Source/DTCoreTextMacros.h; sourceTree = ""; }; - 70C57ABA10C903C6FA0C97A236DBA0A1 /* NSGIF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSGIF.xcconfig; sourceTree = ""; }; - 710023910822F8867F68F19098C62DEE /* DTCoreText-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTCoreText-umbrella.h"; sourceTree = ""; }; - 7129E23F534DF026A9B1E84A95154478 /* AFHTTPRequestSerializer+OAuth2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AFHTTPRequestSerializer+OAuth2.h"; path = "AFOAuth2Manager/AFHTTPRequestSerializer+OAuth2.h"; sourceTree = ""; }; - 71307B0292B7D17DF506FB8C9D8C21A1 /* NSString+NSHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+NSHash.m"; path = "NSHash/NSString+NSHash.m"; sourceTree = ""; }; + 65BE6E74959389FC6E039CAFEB17E283 /* INTULocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTULocationManager.m; path = LocationManager/INTULocationManager/INTULocationManager.m; sourceTree = ""; }; + 65D1EA386C8AA06187FA257B63A8885E /* FLEXKeyboardShortcutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardShortcutManager.h; path = Classes/Utility/FLEXKeyboardShortcutManager.h; sourceTree = ""; }; + 65F59A28B3C679028EE7A4992AC1E2A6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 668772894F7A72E86990959E6C66B99F /* JDStatusBarNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JDStatusBarNotification-umbrella.h"; sourceTree = ""; }; + 66888B5CD2DC5881B95241E8C4E4394F /* NSDictionary+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTCoreText.h"; path = "Core/Source/NSDictionary+DTCoreText.h"; sourceTree = ""; }; + 6732433245E95C3BBD082EA649276BD4 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = Classes/Network/FLEXNetworkRecorder.h; sourceTree = ""; }; + 67369E27045899246642D480355D1F6C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 67655F35B1BE87855CCF6FF69FF4E467 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; + 678DFE0E2B1C7EC758239E2F4F269ACE /* REMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenu.h; path = REMenu/REMenu.h; sourceTree = ""; }; + 679F4F5B6EFA2857F59EEE95F6A118D3 /* stream_configuration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_configuration.cpp; path = FreeStreamer/FreeStreamer/stream_configuration.cpp; sourceTree = ""; }; + 67E29B0579561131FA620729BA1B31F3 /* FLEXDefaultsExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultsExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.h; sourceTree = ""; }; + 6821E29DA867FF0B2A67710FEFFA0830 /* LTHPasscodeViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LTHPasscodeViewController.xcconfig; sourceTree = ""; }; + 685BCAADB43947AE22DD9F31C42F9C24 /* libPhoneNumber-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libPhoneNumber-iOS-dummy.m"; sourceTree = ""; }; + 68B9374ED36DC0284C46266DAD35C07C /* PHFComposeBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PHFComposeBarView.h; path = Classes/PHFComposeBarView.h; sourceTree = ""; }; + 68F7230EBFA846202E522AD8142BCAB6 /* UIWebView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+DTFoundation.m"; path = "Core/Source/iOS/UIWebView+DTFoundation.m"; sourceTree = ""; }; + 69335B5BAA7BAD225C247D4874564B81 /* DTWebVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWebVideoView.h; path = Core/Source/DTWebVideoView.h; sourceTree = ""; }; + 694FB132360329F037F4390CFA29D957 /* LTHPasscodeViewController.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = LTHPasscodeViewController.bundle; path = Localizations/LTHPasscodeViewController.bundle; sourceTree = ""; }; + 695E80B1F8540EB5CA8C8C9429B3D62C /* NSGIF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSGIF-umbrella.h"; sourceTree = ""; }; + 69BDCFD72E0B64953FB1B7E2F39FB3D5 /* Reachability-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Reachability-dummy.m"; sourceTree = ""; }; + 69C945E5C99F2973094DD4F2FF5610BD /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = Classes/Network/FLEXNetworkTransaction.m; sourceTree = ""; }; + 69ED8497AFF3ECFCCEAE4DA08F7E47B2 /* NSString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+HTML.m"; path = "Core/Source/NSString+HTML.m"; sourceTree = ""; }; + 6A12BFE1595EC99B04A036CF63C57757 /* FSPlaylistItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSPlaylistItem.m; path = FreeStreamer/FreeStreamer/FSPlaylistItem.m; sourceTree = ""; }; + 6AA8E71A75FB455C2D075FC25CD83B97 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; + 6ACA9A5A7132A51B48CE4A7AB31CAC7D /* DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreText.h; path = Core/Source/DTCoreText.h; sourceTree = ""; }; + 6AECEF65C6FE2CB7305D1CBF10116180 /* NSString+DTUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTUtilities.h"; path = "Core/Source/NSString+DTUtilities.h"; sourceTree = ""; }; + 6B0450C90F44CEC5ABF55E73D9F11780 /* NSMutableAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+HTML.h"; path = "Core/Source/NSMutableAttributedString+HTML.h"; sourceTree = ""; }; + 6B13271F8F29575381B785849FE4B125 /* DTCoreTextLayouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayouter.h; path = Core/Source/DTCoreTextLayouter.h; sourceTree = ""; }; + 6B349C8FB2ACDCF06B237A4DA48D4DFB /* INTURequestIDGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTURequestIDGenerator.h; path = LocationManager/INTULocationManager/INTURequestIDGenerator.h; sourceTree = ""; }; + 6BA5142C71BB5BEDE7E2BC94DD0DB81D /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; + 6BF0838F426E499BF4EDF2704AF27869 /* file_output.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = file_output.cpp; path = FreeStreamer/FreeStreamer/file_output.cpp; sourceTree = ""; }; + 6BF71925FC7FA40A1AA13BA14020AA27 /* FLEXNetworkSettingsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkSettingsTableViewController.m; path = Classes/Network/FLEXNetworkSettingsTableViewController.m; sourceTree = ""; }; + 6BFFE24D4142EEF50560CD5F2070042F /* DTCoreTextGlyphRun.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextGlyphRun.m; path = Core/Source/DTCoreTextGlyphRun.m; sourceTree = ""; }; + 6C0AC8B6B1DBAADEB0A1034798262DFD /* NSDictionary+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTError.h"; path = "Core/Source/NSDictionary+DTError.h"; sourceTree = ""; }; + 6C5F1DCD27C374AD7E28CB3A5156392E /* FLEXFieldEditorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorView.h; path = Classes/Editing/FLEXFieldEditorView.h; sourceTree = ""; }; + 6C66894C171D704A66D3BF353B6FB680 /* SZTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SZTextView-prefix.pch"; sourceTree = ""; }; + 6C8C5E2E6C3BD68E4E90F976CEB63B4C /* SocketRocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SocketRocket.xcconfig; sourceTree = ""; }; + 6C9D99CF7A918A230EC90B661F04479B /* DTFoundation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DTFoundation.xcconfig; sourceTree = ""; }; + 6CBA86A6C489D012C173116E8E1C9B45 /* UIApplication+DTNetworkActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DTNetworkActivity.h"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.h"; sourceTree = ""; }; + 6CCB537225BC2F88E672800536A596EC /* DTAttributedTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextView.h; path = Core/Source/DTAttributedTextView.h; sourceTree = ""; }; + 6D15446E5E0831DE23E8CBBB9A634A24 /* FLEXGlobalsTableViewControllerEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXGlobalsTableViewControllerEntry.h; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.h; sourceTree = ""; }; + 6E67A83BFA89BCD7CDEDD41A12CE9801 /* NBMetadataCore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCore.m; path = libPhoneNumber/NBMetadataCore.m; sourceTree = ""; }; + 6E870F372301A806C7C7606C47340757 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AHKActionSheetViewController.m; path = Classes/AHKActionSheetViewController.m; sourceTree = ""; }; + 6E97B8040DC7F1C9A1F2E67333D73785 /* TTTAttributedLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TTTAttributedLabel.framework; path = TTTAttributedLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6EA318FBCB10AE0CEAAD863E8B17AE68 /* AFHTTPRequestSerializer+OAuth2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "AFHTTPRequestSerializer+OAuth2.m"; path = "AFOAuth2Manager/AFHTTPRequestSerializer+OAuth2.m"; sourceTree = ""; }; + 6EBD105354A00713D7AECC269C116E28 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 6EC4F5C79F807E5FB0F53623E0A2BC77 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 6ECD11811F2CF00820E04D708BC691C6 /* DHSmartScreenshot.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DHSmartScreenshot.modulemap; sourceTree = ""; }; + 6EE56B0B6E7840E54588D6233CEADC55 /* DTTiledLayerWithoutFade.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTiledLayerWithoutFade.m; path = Core/Source/iOS/DTTiledLayerWithoutFade.m; sourceTree = ""; }; + 6F052E918D6F0D585B6BCF83DC4A28DF /* DTBreakHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBreakHTMLElement.m; path = Core/Source/DTBreakHTMLElement.m; sourceTree = ""; }; + 6F11AF4F5E761CF8E3C90031FE909E99 /* DTSmartPagingScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTSmartPagingScrollView.m; path = Core/Source/iOS/DTSmartPagingScrollView.m; sourceTree = ""; }; + 6F4B46B72B504CFECC519FDDDE4F6A2D /* APSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APSource.m; path = Pod/Core/Public/Models/APSource.m; sourceTree = ""; }; + 6F824D88D9DC2EC39209686A09DC59EF /* file_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_stream.h; path = FreeStreamer/FreeStreamer/file_stream.h; sourceTree = ""; }; + 6F8980ED07065D80AD44DAE17CDBC0A7 /* INTULocationManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "INTULocationManager-umbrella.h"; sourceTree = ""; }; + 6FABE11377C4759E13B720C89A83DA62 /* DTFoundation-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTFoundation-umbrella.h"; sourceTree = ""; }; + 6FBB70CC8091E31DE0EF4D2303B04AED /* RMActionController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RMActionController.framework; path = RMActionController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 70057D8DD7907913BABEC3B5B4CFAC2B /* NSAttributedString+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTCoreText.h"; path = "Core/Source/NSAttributedString+DTCoreText.h"; sourceTree = ""; }; + 703F88EFDCD46F36650733828A10B9A5 /* FLEXMethodCallingViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMethodCallingViewController.h; path = Classes/Editing/FLEXMethodCallingViewController.h; sourceTree = ""; }; + 705B09325DA2AF9192E0DD5FAE2547A8 /* DTLazyImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLazyImageView.h; path = Core/Source/DTLazyImageView.h; sourceTree = ""; }; + 70F51C6B9E85DCB98DD2E434D934BF12 /* APThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APThread.h; path = Pod/Core/Private/Thread/APThread.h; sourceTree = ""; }; + 7104E8643B1DADA3F2FBCCD250EF3DAF /* SocketRocket-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-umbrella.h"; sourceTree = ""; }; + 710C3AC1AC85D7979FB4C796EED60613 /* DTListItemHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTListItemHTMLElement.m; path = Core/Source/DTListItemHTMLElement.m; sourceTree = ""; }; + 714E002DDE85F979EA95B7718B852666 /* FSAudioStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSAudioStream.h; path = FreeStreamer/FreeStreamer/FSAudioStream.h; sourceTree = ""; }; + 7165479F925226D8F39C718E098DCAB9 /* DTTextBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextBlock.h; path = Core/Source/DTTextBlock.h; sourceTree = ""; }; 7249FFC6D8551192D7D771C80C2158D1 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; - 72D197F8B6E9BBCB7F92B8CF5C39D2D8 /* FLEX-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-umbrella.h"; sourceTree = ""; }; - 72FF62384B3E33CDE26D484E15B77B29 /* DHSmartScreenshot.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DHSmartScreenshot.framework; path = DHSmartScreenshot.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 73B597B24FDB45F7B4BD7987A6BADF89 /* UIWindow+AHKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+AHKAdditions.m"; path = "Classes/UIWindow+AHKAdditions.m"; sourceTree = ""; }; - 73F78DA5E56BC5F28442876D67B582C5 /* PHFDelegateChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PHFDelegateChain.m; sourceTree = ""; }; - 7428F379FCB715DBF9A1D3CCC796F985 /* APAddressBook-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "APAddressBook-dummy.m"; sourceTree = ""; }; - 752C64C337DBBD830798C607B92F0B50 /* CYRToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRToken.m; path = CYRTextView/CYRToken.m; sourceTree = ""; }; - 7548DFEBC1E1B7EF0FA46886357DBF9F /* IQAudioRecorderViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQAudioRecorderViewController.m; path = IQAudioRecorderController/IQAudioRecorderViewController.m; sourceTree = ""; }; - 7549A74B8B08B27B68A034AEDAA4BF35 /* DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCompatibility.h; path = Core/Source/DTCompatibility.h; sourceTree = ""; }; - 758DF3327724F761D9A897292724B2DF /* SWFrameButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWFrameButton.h; path = SWFrameButton/SWFrameButton.h; sourceTree = ""; }; - 75E66231800E8971EA67ABAA24E209A8 /* DTCoreText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTCoreText-prefix.pch"; sourceTree = ""; }; - 75EFBDEAEAAD197E5E9E2B071F48ED0F /* FLEXArgumentInputNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNumberView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.m; sourceTree = ""; }; - 761151C232859083642EACDDC74A9ACB /* TWMessageBarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TWMessageBarManager-dummy.m"; sourceTree = ""; }; + 726EC31E8621559660F62343917EE379 /* UIImage+DHImageAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DHImageAdditions.h"; path = "Classes/UIImage+DHImageAdditions.h"; sourceTree = ""; }; + 728A8A110C1CA52192626D39E90D7D2A /* FLEXObjectExplorerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXObjectExplorerFactory.h; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.h; sourceTree = ""; }; + 7293D4E5C870A94981600DCA4CAFAC08 /* FSXMLHttpRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSXMLHttpRequest.h; path = FreeStreamer/FreeStreamer/FSXMLHttpRequest.h; sourceTree = ""; }; + 72CF5246F3DFD951544D3F6C96DB87BF /* UICKeyChainStore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICKeyChainStore-umbrella.h"; sourceTree = ""; }; + 73038E606132697A47EE5EE7A5F165C4 /* APAddressBookContactsRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookContactsRoutine.h; path = Pod/Core/Private/Routine/APAddressBookContactsRoutine.h; sourceTree = ""; }; + 73055FEF723FE60F7B917343BDAF58CB /* SBJson4StreamParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParser.m; path = src/main/objc/SBJson4StreamParser.m; sourceTree = ""; }; + 73729E85264F2C5DBDF7627E6389E9E7 /* FLEXHierarchyTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewController.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.m; sourceTree = ""; }; + 73B8C93FDE429E06F8B79FDD60355A77 /* FLEXArgumentInputStringView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStringView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h; sourceTree = ""; }; + 743E0492969E2A3F6145741BA2B9985F /* FLEXSystemLogTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewCell.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.h; sourceTree = ""; }; + 7468F75F8EC8F6219DEA8FDCD9B9E5BC /* FLEXWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXWindow.h; path = Classes/ExplorerInterface/FLEXWindow.h; sourceTree = ""; }; + 751D7A4C5DBBF42238A7169412A9C4BE /* DTHTMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLWriter.h; path = Core/Source/DTHTMLWriter.h; sourceTree = ""; }; + 754CBE266AAD49734BB47252C58F72F3 /* SZTextView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SZTextView.framework; path = SZTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 755F349E2504D991FBDCD3837903D3F0 /* NBMetadataCoreTestMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCoreTestMapper.m; path = libPhoneNumber/NBMetadataCoreTestMapper.m; sourceTree = ""; }; + 7582CDC7053ADDEFAAA3CE47D8505FDB /* stop_playing@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_playing@3x.png"; path = "IQAudioRecorderController/Resources/stop_playing@3x.png"; sourceTree = ""; }; + 7588E258E7A2CCF87E6A64BF45459BDB /* DHSmartScreenshot.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DHSmartScreenshot.framework; path = DHSmartScreenshot.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7588ECEA8545180EDFAAB50D390023A1 /* REMenu-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "REMenu-prefix.pch"; sourceTree = ""; }; 7638931F3F46AD5EA6CF2DE5D5231FBE /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 7669C15CF12C14B966CBCA761B04279A /* IQCropSelectionBeginView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQCropSelectionBeginView.m; path = IQAudioRecorderController/IQCropSelectionBeginView.m; sourceTree = ""; }; - 76760E7024B3ED61A1ECDF59FEE665D3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 76B1819579DE793B2B022004E7E6BD41 /* FLEXTableContentViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.m; sourceTree = ""; }; - 76B81BE510630E83E475AD13A6143D6C /* DTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVersion.h; path = Core/Source/DTVersion.h; sourceTree = ""; }; - 76C5650E8AD0E719C8914D41DB24051C /* TDOAuth.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TDOAuth.framework; path = TDOAuth.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 773094A1F8B327B3AA41F5B2B198742B /* FLEXClassExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassExplorerViewController.m; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.m; sourceTree = ""; }; + 76FA41754E7D5A2B5A1EB61BE12B2CE6 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; + 76FC889AE35CC79391EEAE006EE28766 /* DTHorizontalRuleHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHorizontalRuleHTMLElement.m; path = Core/Source/DTHorizontalRuleHTMLElement.m; sourceTree = ""; }; + 770C36F20DBF7B06B21F80D87A20CA58 /* UIImage+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DTFoundation.h"; path = "Core/Source/iOS/UIImage+DTFoundation.h"; sourceTree = ""; }; + 774B8E8D3CD7AFD6AFCEBF41C10143E0 /* SBJson4StreamTokeniser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamTokeniser.h; path = src/main/objc/SBJson4StreamTokeniser.h; sourceTree = ""; }; 777BC22360E0AFD103C7CAF2EF7E0ABF /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 77B8C1451E189A4F4D32488A015C979B /* FLEXTableContentViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h; sourceTree = ""; }; - 77CD42BE41A454731972965BC7D286DE /* NSMutableString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableString+HTML.h"; path = "Core/Source/NSMutableString+HTML.h"; sourceTree = ""; }; - 780FC90F87FC7C30BF88659E3D400925 /* libPhoneNumber-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libPhoneNumber-iOS-prefix.pch"; sourceTree = ""; }; - 78422E2DD00017E562EB0A5F4B2BC9AC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 786396ADC3735A8E3EDB5DCA8278F77F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 78FD0A2A3B50A34AAEE429D69C2DA98E /* NSData+NSHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+NSHash.m"; path = "NSHash/NSData+NSHash.m"; sourceTree = ""; }; - 790418510CC343E0B8B2E88D154692C1 /* CYRTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CYRTextView-dummy.m"; sourceTree = ""; }; - 790BA790E4F44ACBDB0A88CE8668B587 /* DTHTMLParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParser.h; path = Core/Source/DTHTMLParser/DTHTMLParser.h; sourceTree = ""; }; - 7947DDC82A70B40CCEEBBB07A23E5CA4 /* DTCoreTextFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFunctions.h; path = Core/Source/DTCoreTextFunctions.h; sourceTree = ""; }; - 7997AD3C155253F3C365FE372B32C96F /* FLEXToolbarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXToolbarItem.h; path = Classes/Toolbar/FLEXToolbarItem.h; sourceTree = ""; }; - 79D63F115DB0CC73C61C2286AAEDA20C /* FLEXInstancesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXInstancesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h; sourceTree = ""; }; - 7A0C0F6620CE74DB6BBC2248445D2DCE /* TDOAuth.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TDOAuth.xcconfig; sourceTree = ""; }; - 7A2354726B6BED9646DD22C2ACA0A7DF /* DTTiledLayerWithoutFade.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTiledLayerWithoutFade.m; path = Core/Source/iOS/DTTiledLayerWithoutFade.m; sourceTree = ""; }; - 7A3EA78277FB608C3B23DD125741673D /* REMenuContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenuContainerView.m; path = REMenu/REMenuContainerView.m; sourceTree = ""; }; - 7A86F145F2A8D79099D7CE5777ABBE80 /* DTAccessibilityViewProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityViewProxy.h; path = Core/Source/DTAccessibilityViewProxy.h; sourceTree = ""; }; - 7A8AC01C185C863465A829E558CBEA9F /* DTCustomColoredAccessory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCustomColoredAccessory.m; path = Core/Source/iOS/DTCustomColoredAccessory.m; sourceTree = ""; }; - 7AA309B92715047BA2AAB8A6BDD13D56 /* FLEXLibrariesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLibrariesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.m; sourceTree = ""; }; - 7AA9E42A57EB6354F419BA5EFB8F2CC2 /* UIWebView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+DTFoundation.h"; path = "Core/Source/iOS/UIWebView+DTFoundation.h"; sourceTree = ""; }; - 7ADE36751F4B590C3B6E54FA9031CA50 /* UIImage+AHKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+AHKAdditions.m"; path = "Classes/UIImage+AHKAdditions.m"; sourceTree = ""; }; - 7B2E48F5D6A9FEE856DD520502CE2276 /* APAddressBookExternalChangeRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookExternalChangeRoutine.h; path = Pod/Core/Private/Routine/APAddressBookExternalChangeRoutine.h; sourceTree = ""; }; - 7B38C4CD08902B568D9EFA0C7F74E406 /* DTImage+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTImage+HTML.m"; path = "Core/Source/DTImage+HTML.m"; sourceTree = ""; }; - 7B737DF2327EA9517E4809C357227AF9 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 7B873B0F8D8D52937679CE9604C49F7F /* APContactListBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactListBuilder.h; path = Pod/Core/Private/Builders/APContactListBuilder.h; sourceTree = ""; }; - 7B992A85F1FF77DC238DB14EA4B58F9D /* FLEXClassesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXClassesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.h; sourceTree = ""; }; - 7BA4DD1C4C964A6E72CE72E34B9F402F /* FLEXDictionaryExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDictionaryExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h; sourceTree = ""; }; - 7BCCECF810CA5117F18A62479460DA37 /* AFOAuth2Manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFOAuth2Manager.h; path = AFOAuth2Manager/AFOAuth2Manager.h; sourceTree = ""; }; - 7C0271D4ED29DAE68D0346A22B3962CE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 7C26784ECA688E60D7AD91B17C992582 /* icon-info.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-info.png"; path = "Classes/Icons/icon-info.png"; sourceTree = ""; }; - 7C2978D003CD21979AEF86AD4461D3D1 /* APName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APName.h; path = Pod/Core/Public/Models/APName.h; sourceTree = ""; }; - 7C2D3CA3A4BF8033DFB1BB769F578DDB /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = Classes/Network/FLEXNetworkRecorder.h; sourceTree = ""; }; - 7C40E36BEFE11F09701DC99C30E037A1 /* FLEXIvarEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXIvarEditorViewController.h; path = Classes/Editing/FLEXIvarEditorViewController.h; sourceTree = ""; }; - 7CD72105FDD3497C27A833027B98C1D5 /* FLEXNetworkTransactionDetailTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionDetailTableViewController.m; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.m; sourceTree = ""; }; - 7D06540118748F906429C464F5168B08 /* stop_playing@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_playing@2x.png"; path = "IQAudioRecorderController/Resources/stop_playing@2x.png"; sourceTree = ""; }; + 779195A58E69B6ED4A0C9DADC30EA7FD /* LTHPasscodeViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LTHPasscodeViewController-dummy.m"; sourceTree = ""; }; + 77AD935A126F6D6C433363BB4AD75CB4 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = MBProgressHUD.modulemap; sourceTree = ""; }; + 78170FEADEDC8142342FA15AB3ECEE1B /* INTULocationRequestDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTULocationRequestDefines.h; path = LocationManager/INTULocationManager/INTULocationRequestDefines.h; sourceTree = ""; }; + 78530D09E660F0440BEC54E9D39164D7 /* APDeprecated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APDeprecated.h; path = Pod/Core/Private/Deprecated/APDeprecated.h; sourceTree = ""; }; + 78A7E2EB8CFBA2A9668C0A996537E15A /* LTHPasscodeViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LTHPasscodeViewController.m; path = LTHPasscodeViewController/LTHPasscodeViewController.m; sourceTree = ""; }; + 79084DDFF0DCF8918952878D090A9AAB /* DTPieProgressIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTPieProgressIndicator.m; path = Core/Source/iOS/DTPieProgressIndicator.m; sourceTree = ""; }; + 7930A212ECF1B513839B4A653787BF83 /* DTAttributedTextCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextCell.h; path = Core/Source/DTAttributedTextCell.h; sourceTree = ""; }; + 794CDDCD33CA229E71632CB3D445E2A4 /* APContactBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactBuilder.h; path = Pod/Core/Private/Builders/APContactBuilder.h; sourceTree = ""; }; + 797CA4A651523BBD024A767BA07E96F1 /* LTHKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LTHKeychainUtils.m; path = LTHPasscodeViewController/LTHKeychainUtils.m; sourceTree = ""; }; + 798C34BCFB56D5729118F56754D55AD8 /* OMGHTTPURLRQ.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OMGHTTPURLRQ.xcconfig; sourceTree = ""; }; + 798C415359D2F7554216AB3CB5ED3D3C /* FLEXRuntimeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXRuntimeUtility.m; path = Classes/Utility/FLEXRuntimeUtility.m; sourceTree = ""; }; + 79DBBAC472BD4A3B9101CDB81FFF1C16 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + 79FC959DE2DA5B4F10D1211077E8B6A9 /* FreeStreamer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FreeStreamer.framework; path = FreeStreamer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7A07410484672352B55F846C72F00E41 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; + 7A57203720857522B4F76083720A7A2E /* OMGHTTPURLRQ.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = OMGHTTPURLRQ.modulemap; sourceTree = ""; }; + 7BA4E4C6FA2B857347563BBD25310D3E /* DTTextAttachmentHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachmentHTMLElement.h; path = Core/Source/DTTextAttachmentHTMLElement.h; sourceTree = ""; }; + 7BD290DDF640EA0B60E39139D1C4734A /* OMGHTTPURLRQ-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OMGHTTPURLRQ-umbrella.h"; sourceTree = ""; }; + 7C9E3126619208950AE7BAB04A0DD7BA /* FLEXDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h; sourceTree = ""; }; + 7CA9FC195B3428F36C378CBC2532EE8B /* DTCoreTextFontDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontDescriptor.h; path = Core/Source/DTCoreTextFontDescriptor.h; sourceTree = ""; }; + 7CADE16C4B3FC2CCA56DE0F17E29013C /* DTCoreTextGlyphRun.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextGlyphRun.h; path = Core/Source/DTCoreTextGlyphRun.h; sourceTree = ""; }; + 7CBA1160118ECCD015D40434E6729D8B /* AFOAuth2Manager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AFOAuth2Manager.modulemap; sourceTree = ""; }; + 7CCD9D60DEA54BB8CD99988B32D4E418 /* SWFrameButton.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWFrameButton.xcconfig; sourceTree = ""; }; + 7CF6B5E42888E4602678565A63358141 /* FLEXTableColumnHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableColumnHeader.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h; sourceTree = ""; }; + 7D1D4C746E7113D94A93F9F8AB40DE44 /* CTLineUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CTLineUtils.h; path = Core/Source/CTLineUtils.h; sourceTree = ""; }; + 7DDC90671F94452B365B5453DA02995A /* NSGIF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NSGIF.modulemap; sourceTree = ""; }; + 7DDEE2C96E5C4F6EAA360C363D5CAC5C /* FLEXInstancesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXInstancesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h; sourceTree = ""; }; + 7E2273DCA4242526BD02106DC7D95022 /* FLEXRealmDatabaseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXRealmDatabaseManager.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.m; sourceTree = ""; }; 7E70F4BD02D647CEE820CC65A4916D3E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 7EA0765D3AFE479009B2F4E22737C821 /* DTDictationPlaceholderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderView.h; path = Core/Source/DTDictationPlaceholderView.h; sourceTree = ""; }; - 7EFB318758D85D852735B04AB03F8BFD /* APAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddress.h; path = Pod/Core/Public/Models/APAddress.h; sourceTree = ""; }; - 7F298E0AF4BB6545EF3BFE80AA17FB8B /* CTLineUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CTLineUtils.h; path = Core/Source/CTLineUtils.h; sourceTree = ""; }; - 7F2A3FF0AF245DEB4D1FE034076FDDFF /* Reachability.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Reachability.xcconfig; sourceTree = ""; }; - 7FA012A35DE80851658E776943351113 /* FLEX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLEX-dummy.m"; sourceTree = ""; }; - 7FC885ED63FBF400F5939ED02BA9F23B /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; - 7FE1B58702457B81E698A6762A3B8590 /* FLEXKeyboardShortcutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardShortcutManager.h; path = Classes/Utility/FLEXKeyboardShortcutManager.h; sourceTree = ""; }; - 7FFB6970057D1DECB543BE1227FBE931 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; }; + 7E7E4CCF99755FEA618847EC6E8DB7FC /* DTColor+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTColor+Compatibility.m"; path = "Core/Source/DTColor+Compatibility.m"; sourceTree = ""; }; + 7EC6443161D72C2C76F1F9920132DC00 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; }; + 7EF39E6926F6C5991DFF342B698DCB9E /* FLEXToolbarItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXToolbarItem.m; path = Classes/Toolbar/FLEXToolbarItem.m; sourceTree = ""; }; + 7F200A53901AF55BFCBEEFEBC1E37971 /* DTCoreGraphicsUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreGraphicsUtils.m; path = Core/Source/DTCoreGraphicsUtils.m; sourceTree = ""; }; + 7F2A8055F721F91735290112D1A4918A /* REMenuItemView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenuItemView.h; path = REMenu/REMenuItemView.h; sourceTree = ""; }; + 7F92EEB1282B11D949744F6BA21338AF /* DTHTMLParserNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserNode.h; path = Core/Source/DTHTMLParserNode.h; sourceTree = ""; }; + 7FCDB4C83C9D79AADCD295EB518C4B96 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 7FE95EA1C41DF1DBE9C61818A3462A21 /* FLEXObjectExplorerFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerFactory.m; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.m; sourceTree = ""; }; 80011EC7C92D496AAA17BD49C6056DC2 /* SCSiriWaveformView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SCSiriWaveformView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 80261FA1A228BFB45CCA5B911EF21E50 /* DTAnimatedGIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnimatedGIF.m; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.m; sourceTree = ""; }; - 803A7847D0F6D9F7595F07710EDE3EBC /* DTWeakSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWeakSupport.h; path = Core/Source/DTWeakSupport.h; sourceTree = ""; }; - 80BCA8699920B9B7171BE369FA6205A6 /* NSScanner+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSScanner+HTML.h"; path = "Core/Source/NSScanner+HTML.h"; sourceTree = ""; }; - 80C7E5E86457B0BEC58B54C986855694 /* PHFDelegateChain-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFDelegateChain-umbrella.h"; sourceTree = ""; }; - 80CA22DA3DAB36CAC64A39D7F050E194 /* OMGHTTPURLRQ-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OMGHTTPURLRQ-prefix.pch"; sourceTree = ""; }; - 81014B78ECCAEA1A7DA25F40DAE5CFF5 /* UIImage+DHImageAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DHImageAdditions.m"; path = "Classes/UIImage+DHImageAdditions.m"; sourceTree = ""; }; - 8113E6E2996C83C0AFA53072670D5520 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.h; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.h; sourceTree = ""; }; - 81224D24B35ADC5B54004248915DB727 /* RMDateSelectionViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RMDateSelectionViewController.framework; path = RMDateSelectionViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8165A5B9124BB8241DD1740F819503BF /* DTObjectTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTObjectTextAttachment.m; path = Core/Source/DTObjectTextAttachment.m; sourceTree = ""; }; - 81BABFD8B3E32DB263D450658A19B476 /* IQPlaybackDurationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQPlaybackDurationView.m; path = IQAudioRecorderController/IQPlaybackDurationView.m; sourceTree = ""; }; - 81D7C066C8E87C289D5146BD0B1DAE33 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 81E7012CB39F3F168A92DF16D51BD675 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 81FB61E8DF1BB41220DBA702E28EB2DF /* DTCoreTextLayoutFrame+Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTCoreTextLayoutFrame+Cursor.h"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.h"; sourceTree = ""; }; - 82389B09ADD3C59DCBFEC5EF4D619F4B /* FLEXExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXExplorerViewController.h; path = Classes/ExplorerInterface/FLEXExplorerViewController.h; sourceTree = ""; }; - 8239E5E097FD3A86DD51E4F2A51AE1C6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8277C25A212E1067F8735004E2EB94A7 /* DTAccessibilityViewProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityViewProxy.m; path = Core/Source/DTAccessibilityViewProxy.m; sourceTree = ""; }; - 8293519E7ED69D4E3FAC5AE1AED0C0BF /* FLEXTableContentCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h; sourceTree = ""; }; - 82BBF8D11EEE36288A6BF684021D8B05 /* DTAttributedTextContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextContentView.m; path = Core/Source/DTAttributedTextContentView.m; sourceTree = ""; }; - 82D9A45886D21680D59ABCAAAA7D55DB /* INTULocationManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "INTULocationManager-umbrella.h"; sourceTree = ""; }; - 82DDADAFC8FF296BB4404E78C0C2176B /* PHFComposeBarView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PHFComposeBarView-dummy.m"; sourceTree = ""; }; - 82E3AE46FF222574CA049832BE597340 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 82F07E473ECE5DF9C387E96349095021 /* APSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APSource.h; path = Pod/Core/Public/Models/APSource.h; sourceTree = ""; }; - 833F7DD3D68BBA748A38508A3E074106 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; - 834483709EBBBD88AA299AE2C6ECE38E /* FLEXCookiesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXCookiesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.m; sourceTree = ""; }; - 8362E8A61097038AB09A6B912500A0EA /* FreeStreamer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FreeStreamer.framework; path = FreeStreamer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 84757CB1455CB0A3D2BF397704678B92 /* APSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APSource.m; path = Pod/Core/Public/Models/APSource.m; sourceTree = ""; }; - 84F1BD6C9C3A8C55975F130D3D930076 /* NSAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+HTML.h"; path = "Core/Source/NSAttributedString+HTML.h"; sourceTree = ""; }; - 84FA955B9C8CC142C90D35B73249EC5A /* DTCoreTextGlyphRun.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextGlyphRun.h; path = Core/Source/DTCoreTextGlyphRun.h; sourceTree = ""; }; - 8574804AF19D4AAC1CAD6651AC5D33D6 /* BBBadgeBarButtonItem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BBBadgeBarButtonItem-prefix.pch"; sourceTree = ""; }; - 8583FFA08DD9B9FB1EBDD5EE7D493DF8 /* JDStatusBarStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarStyle.h; path = JDStatusBarNotification/JDStatusBarStyle.h; sourceTree = ""; }; - 85A74A39195A15CEE207AE524F434DED /* NSString+DTPaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTPaths.h"; path = "Core/Source/NSString+DTPaths.h"; sourceTree = ""; }; - 85FAB40F966CB04375CD54F523A81E89 /* DTCSSStylesheet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSStylesheet.m; path = Core/Source/DTCSSStylesheet.m; sourceTree = ""; }; - 860C9A20BC4538FDC56921F22E23764F /* scissor@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "scissor@3x.png"; path = "IQAudioRecorderController/Resources/scissor@3x.png"; sourceTree = ""; }; - 8625C55F74969F23C581D903F5BDF44B /* DTCoreText.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DTCoreText.modulemap; sourceTree = ""; }; - 86DFE8ACA67E9C83828C888C2990C2EA /* NBPhoneMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneMetaData.h; path = libPhoneNumber/NBPhoneMetaData.h; sourceTree = ""; }; + 8011E27165BDEAD5C2950F03382DA603 /* TDOAuth.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TDOAuth.xcconfig; sourceTree = ""; }; + 802D0611A080CEA882616AC6F682F508 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + 804547545DB4A9516092B6747A0A4984 /* RMDateSelectionViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = RMDateSelectionViewController.modulemap; sourceTree = ""; }; + 805A151F5373EBABAB36EE8DA6500DED /* APSocialServiceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APSocialServiceHelper.h; path = Pod/Core/Private/Helpers/APSocialServiceHelper.h; sourceTree = ""; }; + 80E4832FCA353AD23D59367704CB1436 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 80FC2707D403314A29E76CACFCC7E556 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; }; + 81BC8BD91ACAC341D0B4F19B6DDA7F02 /* CYRTextStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRTextStorage.h; path = CYRTextView/CYRTextStorage.h; sourceTree = ""; }; + 81C93C95C4D21E06FB0D18CD81584549 /* OMGUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OMGUserAgent.m; path = Sources/OMGUserAgent.m; sourceTree = ""; }; + 82B41C5EE01396BE3FF9262468DAC7B1 /* FLEXToolbarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXToolbarItem.h; path = Classes/Toolbar/FLEXToolbarItem.h; sourceTree = ""; }; + 8363A7722ACD5C3467B49CEC45582ABE /* BBBadgeBarButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BBBadgeBarButtonItem.h; path = BBBadgeBarButtonItem/BBBadgeBarButtonItem.h; sourceTree = ""; }; + 8395C75BE17899A8AF1DD1CDC2033D66 /* FLEXArgumentInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.m; sourceTree = ""; }; + 83AAFE6A312701AD7746B5E0662C1D44 /* TTTAttributedLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TTTAttributedLabel-umbrella.h"; sourceTree = ""; }; + 83EDEC70CACBF50BF7CF7F368572C91C /* SCSiriWaveformView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCSiriWaveformView.h; path = SCSiriWaveformView/SCSiriWaveformView.h; sourceTree = ""; }; + 841224006EB51A480B93DAD9C1CFCE68 /* NSURL+DTComparing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTComparing.m"; path = "Core/Source/NSURL+DTComparing.m"; sourceTree = ""; }; + 84131B04EF0BC7FE5CF4A03430C50F9C /* SCSiriWaveformView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SCSiriWaveformView.m; path = SCSiriWaveformView/SCSiriWaveformView.m; sourceTree = ""; }; + 8416C8E3805DFA0A6E11454D58DC0CFE /* PHFDelegateChain-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFDelegateChain-prefix.pch"; sourceTree = ""; }; + 8438F32AB8EB13FBA3BABCA85DA37DF9 /* JSCoreBom.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JSCoreBom.m; path = JSCoreBom/JSCoreBom.m; sourceTree = ""; }; + 852B8B3801D70BF5A93BCEC0E7ABCA26 /* DHSmartScreenshot-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DHSmartScreenshot-umbrella.h"; sourceTree = ""; }; + 8581CFC7D5E9532318A1D6167348A3C1 /* SCSiriWaveformView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCSiriWaveformView-umbrella.h"; sourceTree = ""; }; + 85ABCB43A9FF16DA56D00E75C5307E06 /* APRelatedPerson.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APRelatedPerson.h; path = Pod/Core/Public/Models/APRelatedPerson.h; sourceTree = ""; }; + 85C23800018D25D157D61484A002149E /* NSGIF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSGIF.xcconfig; sourceTree = ""; }; + 85C9466CE1AFC8FA88435FBD037844EB /* INTURequestIDGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTURequestIDGenerator.m; path = LocationManager/INTULocationManager/INTURequestIDGenerator.m; sourceTree = ""; }; + 85CD240D44B5586DB879C8E5AE2A218F /* DTAnimatedGIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnimatedGIF.m; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.m; sourceTree = ""; }; + 85EFEBFF67EE9580614111D45D61834E /* DTCoreTextFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFunctions.m; path = Core/Source/DTCoreTextFunctions.m; sourceTree = ""; }; + 8637A118F783FCE9956EAB9AEAA1DA77 /* NSString+Paragraphs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Paragraphs.m"; path = "Core/Source/NSString+Paragraphs.m"; sourceTree = ""; }; + 864012F553B4C4EB70925DD10E59945B /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; + 868E8F88147EFAE87E28ABE76B0C51E0 /* DTImage+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTImage+HTML.m"; path = "Core/Source/DTImage+HTML.m"; sourceTree = ""; }; + 86F24541836558841E9E279F814ACA51 /* INTULocationManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = INTULocationManager.modulemap; sourceTree = ""; }; + 87304C8EF2A0BA37B04757A16FBB91C7 /* SWFrameButton-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWFrameButton-umbrella.h"; sourceTree = ""; }; + 8748E06B3E0F95B7ECF0D20ABCE1FFE7 /* DTDictationPlaceholderTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderTextAttachment.h; path = Core/Source/DTDictationPlaceholderTextAttachment.h; sourceTree = ""; }; + 8781B518414DD112EAFEAB757E1A2A76 /* FLEXHierarchyTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewController.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.h; sourceTree = ""; }; 87AD476C598A540F74D94D375849B5E9 /* Pods-Jasonette-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Jasonette-resources.sh"; sourceTree = ""; }; 87BD020A436838B0D77BBC0E982BCCB0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 87C017E618B3A2203BD8D42A167E9780 /* NSString+DTURLEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTURLEncoding.h"; path = "Core/Source/NSString+DTURLEncoding.h"; sourceTree = ""; }; - 882A7AD2F7F89826B2C2A6E3C710C058 /* FreeStreamer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FreeStreamer-dummy.m"; sourceTree = ""; }; - 886F5824D97B60715F7E9E429F988545 /* FLEXTableColumnHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableColumnHeader.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.m; sourceTree = ""; }; - 88781EB58D181337E5CEDDF001A85903 /* FLEXDefaultsExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultsExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.m; sourceTree = ""; }; - 88A05779D34FDC3E3AB940E5C6F8840C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 89DE2F4F4EA8BCB3A5CE47FE3146A7E2 /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JDStatusBarNotification.framework; path = JDStatusBarNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 89E0C10BD833413844F775BE54F046C4 /* FLEXPropertyEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXPropertyEditorViewController.h; path = Classes/Editing/FLEXPropertyEditorViewController.h; sourceTree = ""; }; - 89F70EA775E359EE4B7B043E871EBEB7 /* AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.xcconfig; sourceTree = ""; }; - 89F78FF4BFF59CFBFCBD86C077269F86 /* FLEXImageExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImageExplorerViewController.m; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.m; sourceTree = ""; }; - 89F85D5C97DE5ED582AF5864C9BB528B /* FLEXArgumentInputDateView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputDateView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.h; sourceTree = ""; }; - 8A5BF4556735174903F93E0A44BEB1C1 /* FLEXArgumentInputSwitchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputSwitchView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.m; sourceTree = ""; }; - 8A6D84D37E96B0463387F75CCEAF7146 /* PHFComposeBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PHFComposeBarView.h; path = Classes/PHFComposeBarView.h; sourceTree = ""; }; - 8A85132B4F4ECA411A9AC7305665CC35 /* UIImage+DHImageAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DHImageAdditions.h"; path = "Classes/UIImage+DHImageAdditions.h"; sourceTree = ""; }; - 8A89A99F5021EB5D7CB66B1099441038 /* NBPhoneNumberDesc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumberDesc.h; path = libPhoneNumber/NBPhoneNumberDesc.h; sourceTree = ""; }; - 8AC0A490324CB91E2E66C7A23FCFBD22 /* FLEXFieldEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorViewController.m; path = Classes/Editing/FLEXFieldEditorViewController.m; sourceTree = ""; }; - 8AC44CECF70790D37C22523906367E3F /* SBJson4Parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Parser.h; path = src/main/objc/SBJson4Parser.h; sourceTree = ""; }; - 8AD8AA828CF85FB9E76D090924F47B82 /* DTDictationPlaceholderTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderTextAttachment.m; path = Core/Source/DTDictationPlaceholderTextAttachment.m; sourceTree = ""; }; - 8B176ED3E240D0EF491F6BB2BCE9FB83 /* UICKeyChainStore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UICKeyChainStore-dummy.m"; sourceTree = ""; }; - 8B2AC64538C7E467406417B13C7B37D9 /* DTImageTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTImageTextAttachment.h; path = Core/Source/DTImageTextAttachment.h; sourceTree = ""; }; - 8B44DC08BAE20CAF9BEBCC7190F8C390 /* RMActionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RMActionController.h; path = RMActionController/RMActionController.h; sourceTree = ""; }; - 8B67F1173934F8B0F611F20E40CDD00E /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = Classes/Network/FLEXNetworkTransaction.m; sourceTree = ""; }; - 8C1B791E3A38247817B16AEB76D29A43 /* DTCoreText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DTCoreText.xcconfig; sourceTree = ""; }; - 8C2D6E5D3C95863939837A17606F49D0 /* FLEXMethodCallingViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMethodCallingViewController.m; path = Classes/Editing/FLEXMethodCallingViewController.m; sourceTree = ""; }; - 8C77704E508C620E66B06F0437172813 /* FLEXSystemLogMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogMessage.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.m; sourceTree = ""; }; - 8C80CCF6C84747DBFC12D9C9ED8F47C2 /* FLEX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-prefix.pch"; sourceTree = ""; }; + 87D696F13E4BDEBD206521DF6A96FB22 /* REMenuContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenuContainerView.m; path = REMenu/REMenuContainerView.m; sourceTree = ""; }; + 8826972403B42878B05A692A96BB11E6 /* NSString+IQTimeIntervalFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+IQTimeIntervalFormatter.m"; path = "IQAudioRecorderController/NSString+IQTimeIntervalFormatter.m"; sourceTree = ""; }; + 887914737DA60A492BFA1EF6810853EB /* FLEXExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerViewController.m; path = Classes/ExplorerInterface/FLEXExplorerViewController.m; sourceTree = ""; }; + 887CAF11E4CC02F23B2BD1E92204AF3A /* NSAttributedString+SmallCaps.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+SmallCaps.m"; path = "Core/Source/NSAttributedString+SmallCaps.m"; sourceTree = ""; }; + 88860CF95D040E4A3B67CB57285C74D2 /* NSHash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSHash-prefix.pch"; sourceTree = ""; }; + 888D5413CDAF7C079B15F75C5A808015 /* APAddressBook-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "APAddressBook-dummy.m"; sourceTree = ""; }; + 8894CC95DC567B22858CF7F456DE636D /* AFHTTPRequestSerializer+OAuth2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AFHTTPRequestSerializer+OAuth2.h"; path = "AFOAuth2Manager/AFHTTPRequestSerializer+OAuth2.h"; sourceTree = ""; }; + 88D68F4FB0930B290609B4C9035A7CA6 /* APAddressBook-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "APAddressBook-umbrella.h"; sourceTree = ""; }; + 895C993F7E3BD3AF187E0C08BB4E0C0D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8982FB84582984831579D2E314460861 /* Reachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = ""; }; + 899EE599A207EB60D2EDF7867726CCF3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 89E6949E82E53745F75A8965A29B1761 /* DTCoreTextLayoutFrame+Cursor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTCoreTextLayoutFrame+Cursor.m"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.m"; sourceTree = ""; }; + 8A728CDF8BCE69A5C8F1F4570A020212 /* DAKeyboardControl-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DAKeyboardControl-prefix.pch"; sourceTree = ""; }; + 8A81F0367B7ACE95B5516A357966189C /* APContactDataExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactDataExtractor.h; path = Pod/Core/Private/Extractors/APContactDataExtractor.h; sourceTree = ""; }; + 8B5355AAAA4748D75B92930524796774 /* FSParseRssPodcastFeedRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSParseRssPodcastFeedRequest.h; path = FreeStreamer/FreeStreamer/FSParseRssPodcastFeedRequest.h; sourceTree = ""; }; + 8CBCDC6CB3508A350B3A6136CC530D1D /* APContact.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContact.h; path = Pod/Core/Public/Models/APContact.h; sourceTree = ""; }; + 8D2B58DE2D1CAABE41C4C289ACD8EDDA /* icon-success.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-success.png"; path = "Classes/Icons/icon-success.png"; sourceTree = ""; }; 8D94CB6453D8F950949762EFB1C78A23 /* Pods-Jasonette.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Jasonette.release.xcconfig"; sourceTree = ""; }; - 8DF24338E9E6E4FA556BE9F53B50510A /* NBMetadataHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataHelper.h; path = libPhoneNumber/NBMetadataHelper.h; sourceTree = ""; }; - 8E512B182853505E7E126A70B9B4220A /* NSMutableArray+SWUtilityButtons.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableArray+SWUtilityButtons.h"; path = "SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.h"; sourceTree = ""; }; - 8EB75F3F7FB496FF22E1A5646F2B1F18 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; - 8FB8699A1D8F9ADBE5A02516E01BA8B6 /* FLEXArgumentInputStructView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStructView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h; sourceTree = ""; }; - 902E28B157DA3A8069732433544E3211 /* FreeStreamer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FreeStreamer.xcconfig; sourceTree = ""; }; - 90372249797F0E16B52FE46C4814F890 /* audio_record@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "audio_record@3x.png"; path = "IQAudioRecorderController/Resources/audio_record@3x.png"; sourceTree = ""; }; + 8DBD627B01C1693A98E5FE1CC66C6FC6 /* JDStatusBarStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarStyle.m; path = JDStatusBarNotification/JDStatusBarStyle.m; sourceTree = ""; }; + 8DD18199334D02693F838A01630051C1 /* DTAttributedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedLabel.h; path = Core/Source/DTAttributedLabel.h; sourceTree = ""; }; + 8DD9897A3B24D92F67B74AA6A8A5109E /* libPhoneNumber-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libPhoneNumber-iOS-prefix.pch"; sourceTree = ""; }; + 8E0271C37F7C21A724BD434E04CEFFB9 /* FLEXTableContentCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.m; sourceTree = ""; }; + 8E82BD09FAC7F84D445D8B67101B05F1 /* DTLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLog.m; path = Core/Source/DTLog.m; sourceTree = ""; }; + 8E98519FDA18376C24D75E5A7D01BB87 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8EBE38DCD4CA838704AABF1C711DD2C7 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = ""; }; + 8F0ED090BAB77CA998EBE90D9D630B27 /* DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCompatibility.h; path = Core/Source/DTCompatibility.h; sourceTree = ""; }; + 8F259B5763EF5FD9D339417B394253D8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8F36F5700F860C4C0D0B343DBACBC853 /* JDStatusBarNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = JDStatusBarNotification.modulemap; sourceTree = ""; }; + 8F6722242396AF430E81006B5FC88222 /* FLEXTableContentViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h; sourceTree = ""; }; + 8F753EB45A389A945DD508AE8EC07413 /* FLEXDictionaryExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDictionaryExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.m; sourceTree = ""; }; + 8FAEBB2DF09EDB2D825312977565370D /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + 8FB6F71E1F9B759FE76C700470F308B7 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; + 8FB74696F35DFAD8EE375F19678DE650 /* NSString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+HTML.h"; path = "Core/Source/NSString+HTML.h"; sourceTree = ""; }; + 9005B7BFAB969BA3A856FB55DE22E582 /* CYRTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRTextView.h; path = CYRTextView/CYRTextView.h; sourceTree = ""; }; + 9046081948B7DC160E2768C37F0540DB /* UIFont+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DTCoreText.m"; path = "Core/Source/UIFont+DTCoreText.m"; sourceTree = ""; }; + 9075860B3815AC010D330804A0A573A2 /* SZTextView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SZTextView.xcconfig; sourceTree = ""; }; + 9078DF86D999C8B64E182DB0F65BDF78 /* DTCoreTextParagraphStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextParagraphStyle.h; path = Core/Source/DTCoreTextParagraphStyle.h; sourceTree = ""; }; + 9095576B6A896DEFCAB89EE8A393E947 /* FLEXImageExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImageExplorerViewController.h; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.h; sourceTree = ""; }; 90DC89C62CF1601ADE854D29D947BE57 /* PHFDelegateChain.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PHFDelegateChain.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 90FBBB622177929BCEB8DE6AD01F4FA5 /* SWUtilityButtonTapGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWUtilityButtonTapGestureRecognizer.h; path = SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.h; sourceTree = ""; }; - 9115628985DF424176D95B62BF9257AF /* SBJson.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SBJson.xcconfig; sourceTree = ""; }; - 92869F4229627365CF1E01601E9BABF7 /* NBPhoneNumberUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumberUtil.h; path = libPhoneNumber/NBPhoneNumberUtil.h; sourceTree = ""; }; - 9287BA7D5F8EDBFF48649C5851DC245B /* DTColorFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTColorFunctions.h; path = Core/Source/DTColorFunctions.h; sourceTree = ""; }; - 92E46C5CB2BDE33EB48F4CF4D42E25F4 /* FLEXWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXWebViewController.h; path = Classes/GlobalStateExplorers/FLEXWebViewController.h; sourceTree = ""; }; - 9337EB2F9DEC064593E6F1156AA4CF7D /* FLEXRealmDatabaseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXRealmDatabaseManager.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.m; sourceTree = ""; }; - 9392750CF54642F63111ACBECC55036F /* FSParsePlaylistRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSParsePlaylistRequest.h; path = FreeStreamer/FreeStreamer/FSParsePlaylistRequest.h; sourceTree = ""; }; + 9125EF612DB308ED314686BAFA49024B /* DHSmartScreenshot.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DHSmartScreenshot.xcconfig; sourceTree = ""; }; + 91411F5984FE0F8A33132B7067035872 /* NSHash-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSHash-umbrella.h"; sourceTree = ""; }; + 91F015A443603C8BD96BF6847A8D1DB6 /* NSAttributedString+DTDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTDebug.m"; path = "Core/Source/NSAttributedString+DTDebug.m"; sourceTree = ""; }; + 923D69D940528F5C1A90D31C2171AEFC /* UICKeyChainStore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UICKeyChainStore-dummy.m"; sourceTree = ""; }; + 926A11F9E79566E000C84C27AE4E4F76 /* DTCoreTextLayouter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayouter.m; path = Core/Source/DTCoreTextLayouter.m; sourceTree = ""; }; + 92969477426475A50AB17D4FE4142B93 /* FLEXSetExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSetExplorerViewController.m; path = Classes/ObjectExplorers/FLEXSetExplorerViewController.m; sourceTree = ""; }; + 92AFA61C780E4397C0E70A3C7DE6F3D9 /* IQAudioCropperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQAudioCropperViewController.h; path = IQAudioRecorderController/IQAudioCropperViewController.h; sourceTree = ""; }; + 9329D74727BEA09FBC4817BF61E7B563 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; + 9392861CEADC3725C4AD993C5EBF5E5B /* FLEXArgumentInputStringView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStringView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.m; sourceTree = ""; }; 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 93B8DC279A0EA70BDA821F5BEC138E4D /* DTImageTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTImageTextAttachment.m; path = Core/Source/DTImageTextAttachment.m; sourceTree = ""; }; - 93D5A3B53B8A0AB694B41A89E063189C /* microphone_access@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "microphone_access@3x.png"; path = "IQAudioRecorderController/Resources/microphone_access@3x.png"; sourceTree = ""; }; - 9427F100A5F5ED2DD047E0FEB98B1628 /* FLEXMultilineTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultilineTableViewCell.h; path = Classes/Utility/FLEXMultilineTableViewCell.h; sourceTree = ""; }; - 949FCF4810A5441478133475CFB1A517 /* DTDictationPlaceholderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderView.m; path = Core/Source/DTDictationPlaceholderView.m; sourceTree = ""; }; - 94A34E81852250302A3D95AB0F21A921 /* DTBlockFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBlockFunctions.h; path = Core/Source/DTBlockFunctions.h; sourceTree = ""; }; - 95238CDB6D9A985E03040C605CEB404E /* JSCoreBom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCoreBom.h; path = JSCoreBom/JSCoreBom.h; sourceTree = ""; }; - 957747C16F150CA097C088E30CEDDC6B /* file_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_stream.h; path = FreeStreamer/FreeStreamer/file_stream.h; sourceTree = ""; }; - 95958F2AA1E42C86C885FDA2C182FE37 /* DTAccessibilityElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityElement.h; path = Core/Source/DTAccessibilityElement.h; sourceTree = ""; }; - 95A5EBF9C1DD299D32F09548DD361688 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; - 95D0490C4BC92E693341332AD7EE961C /* DTAttributedTextCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextCell.m; path = Core/Source/DTAttributedTextCell.m; sourceTree = ""; }; - 95FB0B29582B6B316B7FDF115A309002 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = ""; }; - 960A9DEC5DF1A7DAE5DB08F0F2E755F0 /* FreeStreamer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FreeStreamer-prefix.pch"; sourceTree = ""; }; - 962613801DDA861855AA6BE17E90FAE0 /* NBMetadataCoreMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCoreMapper.h; path = libPhoneNumber/NBMetadataCoreMapper.h; sourceTree = ""; }; - 96721CF43CFFAD91AA7D5607BF63A1A5 /* FLEXKeyboardShortcutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardShortcutManager.m; path = Classes/Utility/FLEXKeyboardShortcutManager.m; sourceTree = ""; }; - 96B3F7571D28CB5196E66610168BE4EF /* NSGIF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSGIF-prefix.pch"; sourceTree = ""; }; - 96CB3A507418738284E3A12E18AFCF8D /* FLEXArgumentInputTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputTextView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.m; sourceTree = ""; }; - 9724CFA63331F84730D457E59915E46D /* id3_parser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = id3_parser.cpp; path = FreeStreamer/FreeStreamer/id3_parser.cpp; sourceTree = ""; }; - 972DA354DDFC8D3B3B86DA7F614CE63A /* FLEXToolbarItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXToolbarItem.m; path = Classes/Toolbar/FLEXToolbarItem.m; sourceTree = ""; }; - 979C34194C0854F49DDCFBB45F2947B0 /* DTFoundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DTFoundation-dummy.m"; sourceTree = ""; }; - 9861AD380947ABD6F5F9296A5D7A3BF6 /* FLEXNetworkCurlLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkCurlLogger.m; path = Classes/Network/FLEXNetworkCurlLogger.m; sourceTree = ""; }; - 98AB2AD162F93E42D476BD54B2595967 /* DTAttributedTextCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextCell.h; path = Core/Source/DTAttributedTextCell.h; sourceTree = ""; }; - 98BA0687B2D225DB73211D0D7F7CF9F8 /* BBBadgeBarButtonItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BBBadgeBarButtonItem.m; path = BBBadgeBarButtonItem/BBBadgeBarButtonItem.m; sourceTree = ""; }; - 98E20FEAAED4BEC28A1DB4452F6D9D10 /* FLEXManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXManager.h; path = Classes/FLEXManager.h; sourceTree = ""; }; - 98F93BF746088BD08A43B0F898F86047 /* CYRTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CYRTextView-prefix.pch"; sourceTree = ""; }; - 9908C2883AF7DCC2AC6E02405487FECD /* FLEXArgumentInputColorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputColorView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.h; sourceTree = ""; }; - 991A13C0F86862C917F24BB671F468D5 /* SZTextView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SZTextView.framework; path = SZTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 99D549B2036E0AF736ED85F46598B515 /* FLEXArgumentInputTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputTextView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h; sourceTree = ""; }; - 99EA497FEC7B3CF2BEDD2C745818BC05 /* DTLazyImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLazyImageView.h; path = Core/Source/DTLazyImageView.h; sourceTree = ""; }; - 9A2065AAF837CAC0C69369F61F679F1E /* NBPhoneNumberDefines.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumberDefines.m; path = libPhoneNumber/NBPhoneNumberDefines.m; sourceTree = ""; }; - 9A2E9F08ACEA9622FAD9BA829442F742 /* FLEXLayerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLayerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.h; sourceTree = ""; }; - 9A6E71BF433A699710DD93E80F140334 /* DTTextHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextHTMLElement.h; path = Core/Source/DTTextHTMLElement.h; sourceTree = ""; }; - 9ADB900F02DC53C0D87955A1FA306C18 /* SZTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SZTextView-prefix.pch"; sourceTree = ""; }; - 9BAB01E19F1B4EE9905F602AF9AFD60D /* TDOAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TDOAuth.modulemap; sourceTree = ""; }; - 9BB39331406DF9EAE0E8F12097FAB181 /* SWUtilityButtonView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWUtilityButtonView.h; path = SWTableViewCell/PodFiles/SWUtilityButtonView.h; sourceTree = ""; }; - 9BCCCA3D6C578B3EF9CAC70727EBDBCA /* FLEXNetworkTransactionTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionTableViewCell.h; path = Classes/Network/FLEXNetworkTransactionTableViewCell.h; sourceTree = ""; }; + 93F45BF724B6A66F73E5EEF34DE78988 /* FSPlaylistItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSPlaylistItem.h; path = FreeStreamer/FreeStreamer/FSPlaylistItem.h; sourceTree = ""; }; + 941C16CF27A3B6F58104814FF006B5EB /* DTFoundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DTFoundation-dummy.m"; sourceTree = ""; }; + 946058C9292996D038C7D1186ADC96B1 /* DTHTMLParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParser.h; path = Core/Source/DTHTMLParser/DTHTMLParser.h; sourceTree = ""; }; + 9463435FB4536536510483B4E3A30F55 /* NSAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+HTML.h"; path = "Core/Source/NSAttributedString+HTML.h"; sourceTree = ""; }; + 953F2EF961D9C10FBBF42A68600E4650 /* UIImage+DHImageAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DHImageAdditions.m"; path = "Classes/UIImage+DHImageAdditions.m"; sourceTree = ""; }; + 957778F93B9CFD7B07FF4A1589AFA772 /* FreeStreamer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FreeStreamer.modulemap; sourceTree = ""; }; + 9581EE899DBBE94740919AEEB6BD5341 /* FLEXTableLeftCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableLeftCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.h; sourceTree = ""; }; + 95BEC4DE01641F1474D8EC021E93BDB5 /* PHFComposeBarView_Button.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PHFComposeBarView_Button.h; path = Classes/PHFComposeBarView_Button.h; sourceTree = ""; }; + 95C520C8169D9AB8BC753B6B22989480 /* FLEXArgumentInputStructView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStructView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h; sourceTree = ""; }; + 95C83E07D36273D1B428D328F2E219CF /* DTHTMLParserTextNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserTextNode.m; path = Core/Source/DTHTMLParserTextNode.m; sourceTree = ""; }; + 95ECDC95EE4984C846F621D8F3288207 /* NSGIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NSGIF.h; path = NSGIF/NSGIF.h; sourceTree = ""; }; + 95FA2208AC56495688FCFE1CA4732A55 /* stream_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_configuration.h; path = FreeStreamer/FreeStreamer/stream_configuration.h; sourceTree = ""; }; + 96C675DC4D8E414DA5E8B75D6B2538C2 /* FLEXManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FLEXManager+Private.h"; path = "Classes/Manager/FLEXManager+Private.h"; sourceTree = ""; }; + 9756CEF37C77ECE3DF468F4976C4C0EA /* NSHash.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NSHash.framework; path = NSHash.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9763D8BB7F39DFBE29FEC33E126EBE17 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; + 978867F7D43DA8B96CBBA4B7172AF315 /* FLEXFileBrowserTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserTableViewController.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.m; sourceTree = ""; }; + 979EF9C89DAEDD5BFC6569D2A516C5FF /* TWMessageBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TWMessageBarManager.h; path = Classes/TWMessageBarManager.h; sourceTree = ""; }; + 9812DEC03771E93FD3DFA40C2B0C06A2 /* SWFrameButton-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWFrameButton-prefix.pch"; sourceTree = ""; }; + 9870EF3654C1FC1D5B117FAE0EE223F6 /* APImageExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APImageExtractor.h; path = Pod/Core/Private/Extractors/APImageExtractor.h; sourceTree = ""; }; + 98A00647112E8652A54C2E4F70E2E973 /* REMenu-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "REMenu-umbrella.h"; sourceTree = ""; }; + 98E9B9D6D6A8F36C8AAF9C87491EA5BB /* SWUtilityButtonView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWUtilityButtonView.h; path = SWTableViewCell/PodFiles/SWUtilityButtonView.h; sourceTree = ""; }; + 997638DBD299FE77041713720E657263 /* RMDateSelectionViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RMDateSelectionViewController.xcconfig; sourceTree = ""; }; + 9A07424D37B583059CE25570D35B5925 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 9A0DE6039BDF5FDD55443EF0528FEA9A /* DTHTMLParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParser.m; path = Core/Source/DTHTMLParser/DTHTMLParser.m; sourceTree = ""; }; + 9B37394FA7DFA3437416C98B98668D06 /* CYRTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = CYRTextView.modulemap; sourceTree = ""; }; + 9B3927AE0E8AB10A4E6FA0DB615AD0E2 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; + 9B48A396A11DD13EFDF053F7B5D1B7C4 /* JDStatusBarNotification.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JDStatusBarNotification.framework; path = JDStatusBarNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9B620094280C6723FABBDEC73B62AFFC /* NBMetadataCoreMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCoreMapper.m; path = libPhoneNumber/NBMetadataCoreMapper.m; sourceTree = ""; }; + 9B7C10701364ABFBD5216CC27CFD4AFA /* BBBadgeBarButtonItem-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BBBadgeBarButtonItem-umbrella.h"; sourceTree = ""; }; 9BD9207EFC7EE18120C17AA6DC24C840 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/CoreText.framework; sourceTree = DEVELOPER_DIR; }; - 9BE938E822026C09880ED03B182D2C42 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; - 9BED521576A0C8901D9BEB5DF5A753F0 /* FSAudioController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSAudioController.m; path = FreeStreamer/FreeStreamer/FSAudioController.m; sourceTree = ""; }; - 9C2E5F0948E406A01AAB2D55A4074808 /* FLEXIvarEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXIvarEditorViewController.m; path = Classes/Editing/FLEXIvarEditorViewController.m; sourceTree = ""; }; - 9CEA4D800C9B8B4335A802B56CD7BDC6 /* DTHTMLParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParser.m; path = Core/Source/DTHTMLParser/DTHTMLParser.m; sourceTree = ""; }; - 9D9957D73F530963C27878915A6C6363 /* CYRTextStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRTextStorage.m; path = CYRTextView/CYRTextStorage.m; sourceTree = ""; }; - 9D9F3C82D03331B4C192DA746E7A2742 /* FLEXResources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXResources.h; path = Classes/Utility/FLEXResources.h; sourceTree = ""; }; - 9E13FBB39ED29F5574AB95FD177106E1 /* NSGIF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NSGIF.framework; path = NSGIF.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9E3844335506890CC277A48128A2450C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 9E7663C5C47B1C72766B651AEAB5E281 /* BBBadgeBarButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BBBadgeBarButtonItem.h; path = BBBadgeBarButtonItem/BBBadgeBarButtonItem.h; sourceTree = ""; }; - 9E993EB7E00A1892216ABC551DDAAB85 /* FLEXNetworkTransactionTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionTableViewCell.m; path = Classes/Network/FLEXNetworkTransactionTableViewCell.m; sourceTree = ""; }; + 9BF25E92F5B16C19D47C63220BDB8722 /* DAKeyboardControl.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DAKeyboardControl.xcconfig; sourceTree = ""; }; + 9CC1D34A7D4F261D66486CA9E7900166 /* APAddressBook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBook.h; path = Pod/Core/Public/APAddressBook.h; sourceTree = ""; }; + 9CE788C5004CDC426B5D3B407B9420C4 /* NSAttributedString+SmallCaps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+SmallCaps.h"; path = "Core/Source/NSAttributedString+SmallCaps.h"; sourceTree = ""; }; + 9D17D20271A122B3A153040D1D89D46B /* AHKActionSheet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AHKActionSheet.h; path = Classes/AHKActionSheet.h; sourceTree = ""; }; + 9D6A04F975226C09FFFBCE3061B1A695 /* FreeStreamer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FreeStreamer-umbrella.h"; sourceTree = ""; }; + 9D98BE99EE0CE91F51B366F27F825841 /* FLEXMultilineTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultilineTableViewCell.h; path = Classes/Utility/FLEXMultilineTableViewCell.h; sourceTree = ""; }; + 9D9D90FAC899744D21ADE3FDB7446793 /* DTImageTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTImageTextAttachment.h; path = Core/Source/DTImageTextAttachment.h; sourceTree = ""; }; + 9DC346A072B569BDC778ABD171896037 /* NSMutableAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+HTML.m"; path = "Core/Source/NSMutableAttributedString+HTML.m"; sourceTree = ""; }; + 9DE67AAE6CA02C21501C110C207929E0 /* NSURL+DTAppLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTAppLinks.m"; path = "Core/Source/iOS/NSURL+DTAppLinks.m"; sourceTree = ""; }; + 9DFCD1AE923868D5FD383CC0E636B6DE /* NSCharacterSet+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCharacterSet+HTML.h"; path = "Core/Source/NSCharacterSet+HTML.h"; sourceTree = ""; }; + 9E961473BD3A6379B047704E363EC93F /* Reachability.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Reachability.modulemap; sourceTree = ""; }; 9EA038990895B29F1838AFBB359B6A14 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/MediaPlayer.framework; sourceTree = DEVELOPER_DIR; }; - 9ECA4DFB3BC38760CD4BD4C3121A1129 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; }; - 9EFE46D6EBE39C57DF71C86E72B9B960 /* id3_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = id3_parser.h; path = FreeStreamer/FreeStreamer/id3_parser.h; sourceTree = ""; }; - 9EFF8C81742212AEB6787CF24E077EB3 /* JSCoreBom-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JSCoreBom-dummy.m"; sourceTree = ""; }; - 9F823D88AFD385AE9090336197E129BD /* RECommonFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RECommonFunctions.m; path = REMenu/RECommonFunctions.m; sourceTree = ""; }; - A01DA3859513A81F73EB963BC47F1B51 /* DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCompatibility.h; path = Core/Source/DTCompatibility.h; sourceTree = ""; }; - A04ADC4767E3537C02787EB2A3B24646 /* FLEXFileBrowserFileOperationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserFileOperationController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.h; sourceTree = ""; }; - A04DF0248DF140F451357C8B7DCBC465 /* DTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVersion.m; path = Core/Source/DTVersion.m; sourceTree = ""; }; - A08437EC839FA4A95324A757BCBDE309 /* NSMutableString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableString+HTML.m"; path = "Core/Source/NSMutableString+HTML.m"; sourceTree = ""; }; - A0EDBBF7507CE6392F5774548599B0A1 /* NBNumberFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBNumberFormat.m; path = libPhoneNumber/NBNumberFormat.m; sourceTree = ""; }; - A113F09C004CF7677C6E4E197443D325 /* DTDictationPlaceholderTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderTextAttachment.h; path = Core/Source/DTDictationPlaceholderTextAttachment.h; sourceTree = ""; }; - A13FE084E4D177F7A7B4E1B3BEDB80FA /* NSURL+DTAppLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTAppLinks.h"; path = "Core/Source/iOS/NSURL+DTAppLinks.h"; sourceTree = ""; }; - A166AB3AB553B1A9A763E0B34942641D /* DTFoundationConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFoundationConstants.m; path = Core/Source/DTFoundationConstants.m; sourceTree = ""; }; - A1EDC91DC918486140EBFA96AA2518D9 /* NSCoder+DTCompatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCoder+DTCompatibility.m"; path = "Core/Source/NSCoder+DTCompatibility.m"; sourceTree = ""; }; - A25B0F17B3E27C10356E64026A3CC271 /* IQCropSelectionEndView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQCropSelectionEndView.m; path = IQAudioRecorderController/IQCropSelectionEndView.m; sourceTree = ""; }; - A2D50D463122272D8445F87277E1F805 /* INTULocationManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "INTULocationManager-prefix.pch"; sourceTree = ""; }; - A2FFEA3AD16635C56790FAF39B1B0C61 /* FLEXDefaultEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultEditorViewController.m; path = Classes/Editing/FLEXDefaultEditorViewController.m; sourceTree = ""; }; - A34BDD0A87FC15E9743D3210DA0849B1 /* NSHash.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NSHash.framework; path = NSHash.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A3645F04D3222A0E5FDD8F99718A1CB5 /* FLEXClassExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXClassExplorerViewController.h; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.h; sourceTree = ""; }; - A36C1B435B31C47A8F7343B0C44D8790 /* SBJson4Parser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Parser.m; path = src/main/objc/SBJson4Parser.m; sourceTree = ""; }; - A3CEF9B4A30D29B183A9579C96C0E55A /* DTCoreTextFontDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontDescriptor.m; path = Core/Source/DTCoreTextFontDescriptor.m; sourceTree = ""; }; - A4ED7FEBABF8C665DFAEE1DF0EC8EF3E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - A4F1BB853CCC6D515A9CA95F777A87BF /* INTULocationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTULocationRequest.h; path = LocationManager/INTULocationManager/INTULocationRequest.h; sourceTree = ""; }; - A5047F39496DDF7609EDAFF9BFADA2C0 /* http_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = http_stream.cpp; path = FreeStreamer/FreeStreamer/http_stream.cpp; sourceTree = ""; }; + 9EAB4581362A9199223F0146BB0EFF3E /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; }; + 9F37F960C46352D28F46DF9C2ACDC484 /* Reachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = ""; }; + 9F383B19C72795CE40C19266C6F243EF /* libPhoneNumber-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libPhoneNumber-iOS-umbrella.h"; sourceTree = ""; }; + A029C758AF440367546ED84D42693715 /* UITableView+DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+DHSmartScreenshot.h"; path = "Classes/UITableView+DHSmartScreenshot.h"; sourceTree = ""; }; + A02D0A7FF876F2A2706039618FDBAACB /* INTULocationManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "INTULocationManager-prefix.pch"; sourceTree = ""; }; + A04749A01AC511C442A1769FC21933BA /* DTCoreTextLayoutLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutLine.h; path = Core/Source/DTCoreTextLayoutLine.h; sourceTree = ""; }; + A08F935B263CA1F8086CA56C2BC11A30 /* DTFoundation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DTFoundation.framework; path = DTFoundation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A0AD63521FC84FDD28A736A0C1D07143 /* DTCoreTextLayoutLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutLine.m; path = Core/Source/DTCoreTextLayoutLine.m; sourceTree = ""; }; + A0C163C09E52CBCF25E87CE2B9C25D2C /* SWTableViewCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SWTableViewCell.framework; path = SWTableViewCell.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A0F2CC17F6FD007A525579ABF0AC0DB2 /* FLEXSQLiteDatabaseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSQLiteDatabaseManager.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.m; sourceTree = ""; }; + A14D81EA17AB791F0D734DE85546A9BC /* JSCoreBom.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCoreBom.modulemap; sourceTree = ""; }; + A2191F395691B194B1EA99D0DA6A3E83 /* UIImage+AHKAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+AHKAdditions.m"; path = "Classes/UIImage+AHKAdditions.m"; sourceTree = ""; }; + A25808084A6644EC16E9824F43531450 /* FLEXNetworkHistoryTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkHistoryTableViewController.h; path = Classes/Network/FLEXNetworkHistoryTableViewController.h; sourceTree = ""; }; + A2B40BFB1C139F80E7E3A9898173ABBA /* SBJson4Writer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Writer.m; path = src/main/objc/SBJson4Writer.m; sourceTree = ""; }; + A31896B63E2CD8BFA5EBEEC79AA5363E /* FLEXClassesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.m; sourceTree = ""; }; + A3295A4A04B814470ACE82F998D9CF8D /* FLEXArgumentInputFontsPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontsPickerView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h; sourceTree = ""; }; + A3B962619B145DF4AE167BFD789B2975 /* DAKeyboardControl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DAKeyboardControl.framework; path = DAKeyboardControl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A3B9683E70E90590C748A965AA0A20BB /* DTAccessibilityViewProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityViewProxy.h; path = Core/Source/DTAccessibilityViewProxy.h; sourceTree = ""; }; + A3F0FBC34E9260AFD75E99D4C3B475BA /* JDStatusBarView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarView.m; path = JDStatusBarNotification/JDStatusBarView.m; sourceTree = ""; }; + A3FFA46193FE1A393FCCFFF010090BA2 /* TDOAuth.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TDOAuth.framework; path = TDOAuth.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A411C2A65F0D437713432504EEFE1B6C /* SWTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWTableViewCell.m; path = SWTableViewCell/PodFiles/SWTableViewCell.m; sourceTree = ""; }; + A44152366D2D72670B52F28E794B381C /* TDOAuth-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TDOAuth-prefix.pch"; sourceTree = ""; }; + A4464F1215D4F889A413F33137891B84 /* OMGHTTPURLRQ.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = OMGHTTPURLRQ.framework; path = OMGHTTPURLRQ.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A45F765165229B44FE6A4E21E7F03827 /* NSHash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSHash.xcconfig; sourceTree = ""; }; + A464BA27CF561E1F6D8E5AD19C3D1847 /* SBJson4StreamParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParser.h; path = src/main/objc/SBJson4StreamParser.h; sourceTree = ""; }; + A49F1B1AD253B9DB9410C70AB3A1620A /* FreeStreamer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FreeStreamer.xcconfig; sourceTree = ""; }; + A4A72C8F0744BF0817294DEC749F6092 /* SBJson4StreamWriterState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriterState.m; path = src/main/objc/SBJson4StreamWriterState.m; sourceTree = ""; }; + A4D28E280BD0127321A29B6772F5483F /* DAKeyboardControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DAKeyboardControl.h; path = DAKeyboardControl/DAKeyboardControl.h; sourceTree = ""; }; + A4DB07331834EE420810ACE5818BA66A /* TTTAttributedLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TTTAttributedLabel.m; path = TTTAttributedLabel/TTTAttributedLabel.m; sourceTree = ""; }; + A4ECA9B5DB655B813F58795F78C3DA20 /* DTBlockFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBlockFunctions.m; path = Core/Source/DTBlockFunctions.m; sourceTree = ""; }; + A50E6DF25B2F8E041D83086B3F9F8EEA /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; + A533DF28C707710B043376272DF45DC2 /* INTULocationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "INTULocationManager+Internal.h"; path = "LocationManager/INTULocationManager/INTULocationManager+Internal.h"; sourceTree = ""; }; + A54728737D3A3FC64508F01A44AFCC6B /* RECommonFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RECommonFunctions.m; path = REMenu/RECommonFunctions.m; sourceTree = ""; }; A554454E9875DE6C81C75C7372773543 /* Reachability.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Reachability.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A5878868847C4F77C95376071010D002 /* FLEXFileBrowserFileOperationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserFileOperationController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.h; sourceTree = ""; }; + A58D196720F5DBAF68384456C8CC8545 /* http_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_stream.h; path = FreeStreamer/FreeStreamer/http_stream.h; sourceTree = ""; }; A5BD4464B1C4E442945D75EE9A1F2A52 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - A60EDBA871E31DC8716F78AB5FD62DE7 /* DTCoreTextLayouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayouter.h; path = Core/Source/DTCoreTextLayouter.h; sourceTree = ""; }; - A6179AF4553C12DF60BC1A24C95AC1B5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - A66ADEF14976B895DE158CC7DD17364D /* SBJson4StreamParserState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParserState.h; path = src/main/objc/SBJson4StreamParserState.h; sourceTree = ""; }; - A672C018A3BFF4B6B1FDB891191CF78A /* APAddressBookAccessRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookAccessRoutine.m; path = Pod/Core/Private/Routine/APAddressBookAccessRoutine.m; sourceTree = ""; }; - A6747A1839A074695EC82680B73A704D /* RMActionController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RMActionController.xcconfig; sourceTree = ""; }; - A685A658CCBAB501BB1A71894C650C31 /* FLEXArgumentInputViewFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputViewFactory.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.m; sourceTree = ""; }; - A6D8AD004FA82E21E3D2EE36DFAEBDCE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - A7506DEBEB38DDC2EEA3551B91F8EF7B /* APRelatedPerson.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APRelatedPerson.h; path = Pod/Core/Public/Models/APRelatedPerson.h; sourceTree = ""; }; - A7B0C0364CFC950480692EA8C206E5B5 /* FLEXObjectExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXObjectExplorerViewController.h; path = Classes/ObjectExplorers/FLEXObjectExplorerViewController.h; sourceTree = ""; }; - A7E8A364EC7E16B403A3DF91B1DA8A27 /* FLEXImagePreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImagePreviewViewController.h; path = Classes/ViewHierarchy/FLEXImagePreviewViewController.h; sourceTree = ""; }; - A8C5534175BD2E595317637BF04F7001 /* AHKActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHKActionSheet-prefix.pch"; sourceTree = ""; }; - A982AB3D0CD15A5285DE77C49BC3B2A8 /* FLEXArgumentInputFontView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.m; sourceTree = ""; }; - A9E0B998B5AB50343A77AB46611BD8CF /* TWMessageBarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TWMessageBarManager-umbrella.h"; sourceTree = ""; }; - A9E3D36E2483C3F1448A65E6E4EFF7DD /* FLEXSystemLogTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewController.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h; sourceTree = ""; }; - A9FB2E9CA07E892E0BFF4588804D6829 /* PHFComposeBarView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFComposeBarView-prefix.pch"; sourceTree = ""; }; + A5E9EAAC937FB1ECCA32D4B5A657ED22 /* JDStatusBarStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarStyle.h; path = JDStatusBarNotification/JDStatusBarStyle.h; sourceTree = ""; }; + A5F95B98AD8FB3A3BCFB481C73F97BAC /* APThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APThread.m; path = Pod/Core/Private/Thread/APThread.m; sourceTree = ""; }; + A650009084237AC7497A865E3F7856AE /* DTImageTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTImageTextAttachment.m; path = Core/Source/DTImageTextAttachment.m; sourceTree = ""; }; + A65D1ADB19477D7A39CFCBBA4CA0DB0D /* AFOAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFOAuthCredential.h; path = AFOAuth2Manager/AFOAuthCredential.h; sourceTree = ""; }; + A6ABDB66718B75B55D17E534456D15A2 /* TWMessageBarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TWMessageBarManager-umbrella.h"; sourceTree = ""; }; + A6D7D45A0889F87D57FFB31B36BFAA34 /* IQAudioRecorderViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQAudioRecorderViewController.h; path = IQAudioRecorderController/IQAudioRecorderViewController.h; sourceTree = ""; }; + A6DEA404069AD956556FD668F12516F3 /* DTCoreText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DTCoreText.xcconfig; sourceTree = ""; }; + A76969048B4D17ECAC95D0E2223ECD91 /* NSDictionary+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTError.m"; path = "Core/Source/NSDictionary+DTError.m"; sourceTree = ""; }; + A7B462D434CE0514E9D3C3B27B7C0114 /* DTHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLElement.m; path = Core/Source/DTHTMLElement.m; sourceTree = ""; }; + A7C9E138035AB9626282D01978280D54 /* DTCoreText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DTCoreText-dummy.m"; sourceTree = ""; }; + A83526F10D8CE6C3016D8FCB1BC6D618 /* PHFDelegateChain-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PHFDelegateChain-dummy.m"; sourceTree = ""; }; + A9BAB4EAA8FAC7DB5CE514C1F932EB96 /* FLEXFieldEditorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorView.m; path = Classes/Editing/FLEXFieldEditorView.m; sourceTree = ""; }; + AA26D99A2BEADE031C12F913E0E034A3 /* IQPlaybackDurationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQPlaybackDurationView.h; path = IQAudioRecorderController/IQPlaybackDurationView.h; sourceTree = ""; }; AA2D1FD4C36B896FAD89B9DF0FE1755D /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; - AA3AC5A375E2B7A50D09AA46CD8F6606 /* FLEXClassesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.m; sourceTree = ""; }; - AA61602D56C97AA1F1A3BF3E2380B6E6 /* FLEXExplorerToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerToolbar.m; path = Classes/Toolbar/FLEXExplorerToolbar.m; sourceTree = ""; }; - AA81A7E47A3412C239DAE175A6A38F5D /* SZTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SZTextView-dummy.m"; sourceTree = ""; }; - AAE4207668E5E64C6B15CC359984C41C /* SCSiriWaveformView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCSiriWaveformView-prefix.pch"; sourceTree = ""; }; - AAE67B4C0CB43555A85D6698B4A52E50 /* SWFrameButton-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWFrameButton-prefix.pch"; sourceTree = ""; }; - AB1361BE48688FACA82DCDDEEE90F8C5 /* DTStylesheetHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTStylesheetHTMLElement.h; path = Core/Source/DTStylesheetHTMLElement.h; sourceTree = ""; }; - AC24AF2F37A8BB0BBDA4748E53D5DC5A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - ACE88AB7344895DBA06D6EEB120A28C6 /* APAddressBookBaseRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookBaseRoutine.h; path = Pod/Core/Private/Routine/Base/APAddressBookBaseRoutine.h; sourceTree = ""; }; - AD2B78C2EB12B739883EC7F070D0A9BB /* BBBadgeBarButtonItem.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = BBBadgeBarButtonItem.framework; path = BBBadgeBarButtonItem.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - AD3ABFD948A06BEE96A317BC5C6F3325 /* RMActionController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RMActionController-dummy.m"; sourceTree = ""; }; - ADD6EBFA093B627EE05DD27A668D7F6F /* NSString+Paragraphs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Paragraphs.h"; path = "Core/Source/NSString+Paragraphs.h"; sourceTree = ""; }; - AE2A51A3015859B77CBD673405D87A80 /* APSocialProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APSocialProfile.h; path = Pod/Core/Public/Models/APSocialProfile.h; sourceTree = ""; }; - AE5C3CE206EEC504AE29A7F095515111 /* TDOAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TDOAuth.m; sourceTree = ""; }; - AE945A64D9FBE9DBBDEE2781AD93D6B6 /* SBJson4StreamTokeniser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamTokeniser.m; path = src/main/objc/SBJson4StreamTokeniser.m; sourceTree = ""; }; - AEB4674951FE9F45FAE98D6DD57E82DD /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; - AEFDC43BE6DF87A63C260092C289AD96 /* APContactDate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactDate.h; path = Pod/Core/Public/Models/APContactDate.h; sourceTree = ""; }; - AF3C2E2D5D24E4976B4E92F5360C7DF9 /* UITableView+DHSmartScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+DHSmartScreenshot.m"; path = "Classes/UITableView+DHSmartScreenshot.m"; sourceTree = ""; }; - AFD8EC039100E64D2114E8481C8538BE /* PHFComposeBarView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PHFComposeBarView.m; path = Classes/PHFComposeBarView.m; sourceTree = ""; }; - B01A1224EF62025CEA6D9CEE37E4090C /* SocketRocket-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-umbrella.h"; sourceTree = ""; }; - B02164BA2FE1F57D804FD9C7CCAEA9E7 /* DTFoundation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DTFoundation.xcconfig; sourceTree = ""; }; - B1FED6BB32FCF22B7581089F2F79F96F /* DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DHSmartScreenshot.h; path = Classes/DHSmartScreenshot.h; sourceTree = ""; }; - B25C0CD0E371D63BB7ABB437B01F618D /* UICKeyChainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UICKeyChainStore.h; path = Lib/UICKeyChainStore/UICKeyChainStore.h; sourceTree = ""; }; - B274C31A7B2573DB7031CD38514336CE /* DTHTMLAttributedStringBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLAttributedStringBuilder.m; path = Core/Source/DTHTMLAttributedStringBuilder.m; sourceTree = ""; }; + AA50134A1713AB12D6D9F686AC7C7D0E /* FLEXTableLeftCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableLeftCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.m; sourceTree = ""; }; + AAF8863732BA0423DFF57ED96CF2DB24 /* DTColorFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTColorFunctions.h; path = Core/Source/DTColorFunctions.h; sourceTree = ""; }; + AB5992C435FE0DDE1DCE18D2AF53B2AF /* AHKActionSheet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHKActionSheet.framework; path = AHKActionSheet.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + AB9360939C3514BDF46FD4827A9B9773 /* DTDictationPlaceholderTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderTextAttachment.m; path = Core/Source/DTDictationPlaceholderTextAttachment.m; sourceTree = ""; }; + ABD45870B056D89F67544C66E6EA8FCF /* DTTiledLayerWithoutFade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTiledLayerWithoutFade.h; path = Core/Source/iOS/DTTiledLayerWithoutFade.h; sourceTree = ""; }; + AC5B40387A80ED13803A1C6F450D4B72 /* audio_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audio_queue.h; path = FreeStreamer/FreeStreamer/audio_queue.h; sourceTree = ""; }; + ACBC186AFEF40E8819E50064E6517FA7 /* DTAnchorHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnchorHTMLElement.m; path = Core/Source/DTAnchorHTMLElement.m; sourceTree = ""; }; + ACFF899962289554684873F033F076C1 /* AFOAuth2Manager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFOAuth2Manager.framework; path = AFOAuth2Manager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + AD1B9F1C95313C9A6FC1C2DAE3905768 /* NBAsYouTypeFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBAsYouTypeFormatter.m; path = libPhoneNumber/NBAsYouTypeFormatter.m; sourceTree = ""; }; + AD93E66D2C89F42BD4143A7FD2778E86 /* UICKeyChainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UICKeyChainStore.h; path = Lib/UICKeyChainStore/UICKeyChainStore.h; sourceTree = ""; }; + AD983AC5FAE9B1709564960190A1A25F /* NSMutableString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableString+HTML.m"; path = "Core/Source/NSMutableString+HTML.m"; sourceTree = ""; }; + ADAA126CDA90404DA3029703D7A79870 /* APName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APName.h; path = Pod/Core/Public/Models/APName.h; sourceTree = ""; }; + ADF0EDF35CC5FA518DF211EC9C49D330 /* NSDictionary+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTCoreText.m"; path = "Core/Source/NSDictionary+DTCoreText.m"; sourceTree = ""; }; + ADFEB64414941B0DE0EFA00C4A76124F /* APAddressBookExternalChangeRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookExternalChangeRoutine.h; path = Pod/Core/Private/Routine/APAddressBookExternalChangeRoutine.h; sourceTree = ""; }; + AF44F2CABF4F4738E41C289C99D978DD /* NSData+DTCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+DTCrypto.h"; path = "Core/Source/NSData+DTCrypto.h"; sourceTree = ""; }; + AF9FE01ACA5A093039231DCE8B0325E2 /* FLEXDefaultsExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultsExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.m; sourceTree = ""; }; + AFEFCACBAAFFCDB3AE6FFCD94D090DEE /* NSAttributedStringRunDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NSAttributedStringRunDelegates.h; path = Core/Source/NSAttributedStringRunDelegates.h; sourceTree = ""; }; + B0275973A544E586721DF5BE05257135 /* APJob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APJob.m; path = Pod/Core/Public/Models/APJob.m; sourceTree = ""; }; + B02815F7F6CF3FA1C35A346B1DD2161D /* NBPhoneMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneMetaData.m; path = libPhoneNumber/NBPhoneMetaData.m; sourceTree = ""; }; + B060A1506CC8105CBE99FF479A7D2EC7 /* SocketRocket.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SocketRocket.framework; path = SocketRocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B0816CFA36316E0074BC7F4D908070FC /* FLEXFileBrowserFileOperationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserFileOperationController.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.m; sourceTree = ""; }; + B09FD1C44FD802E4FD7617353516B993 /* NBPhoneNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumber.m; path = libPhoneNumber/NBPhoneNumber.m; sourceTree = ""; }; + B12CFA1A907987C327E40410996B53FC /* NSCharacterSet+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCharacterSet+HTML.m"; path = "Core/Source/NSCharacterSet+HTML.m"; sourceTree = ""; }; + B13B97D9EFF27FF1A377ACCC52684DC6 /* caching_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = caching_stream.h; path = FreeStreamer/FreeStreamer/caching_stream.h; sourceTree = ""; }; + B2A88DFC8A7171C464E1ACB6ED728482 /* UICKeyChainStore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UICKeyChainStore.framework; path = UICKeyChainStore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; B2BA13ED0348D94FC9708B055025CB77 /* Pods-Jasonette-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Jasonette-acknowledgements.plist"; sourceTree = ""; }; - B2BD6A83828190E5D58EFAA49579288F /* DTCoreGraphicsUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreGraphicsUtils.m; path = Core/Source/DTCoreGraphicsUtils.m; sourceTree = ""; }; - B316970E474EA377575953D5899B249B /* SocketRocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketRocket.h; path = SocketRocket/SocketRocket.h; sourceTree = ""; }; - B3429C41E98A2B27F8DE021FBA0BA492 /* FLEXUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXUtility.m; path = Classes/Utility/FLEXUtility.m; sourceTree = ""; }; - B34AD82E31583B339FFFB96FF12B5DB4 /* Reachability-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Reachability-prefix.pch"; sourceTree = ""; }; - B3939E9C7F1994101A7D3A32CA84EAE6 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; - B46E446380DDE89B5233AEC147E0EF06 /* DTCSSStylesheet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSStylesheet.h; path = Core/Source/DTCSSStylesheet.h; sourceTree = ""; }; + B2D3FAD13DC80C37A4BCE9E219148937 /* FreeStreamer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FreeStreamer-prefix.pch"; sourceTree = ""; }; + B37D6D23BA69C116C5E5F3CB73C29B86 /* stop_recording.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = stop_recording.png; path = IQAudioRecorderController/Resources/stop_recording.png; sourceTree = ""; }; + B3D34AA82B8A05E495821D7983DA906A /* NSMutableArray+SWUtilityButtons.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableArray+SWUtilityButtons.m"; path = "SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.m"; sourceTree = ""; }; + B436D7684F588E961A6D7F30D3D64CE9 /* DTAttributedLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedLabel.m; path = Core/Source/DTAttributedLabel.m; sourceTree = ""; }; B4A8328C532DD00D9AD12F4AED010C8B /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; - B4C9710D667BD9E120B164262E771381 /* FLEXSystemLogTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewCell.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.h; sourceTree = ""; }; - B4CF75719238F597094A0F5082F026B5 /* JDStatusBarNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JDStatusBarNotification-umbrella.h"; sourceTree = ""; }; - B4EDFBA155B2F1F90F2091CDF984E2DF /* PHFComposeBarView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PHFComposeBarView-umbrella.h"; sourceTree = ""; }; - B4F10CB1FFB48A32F54D388C3AE5F4DE /* DTExtendedFileAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTExtendedFileAttributes.h; path = Core/Source/DTExtendedFileAttributes.h; sourceTree = ""; }; - B4F9B214A377B49897194D0790FAAC48 /* FLEXMultilineTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultilineTableViewCell.m; path = Classes/Utility/FLEXMultilineTableViewCell.m; sourceTree = ""; }; - B4FF69C4CBBA83DEDD6A5CA9B4DC48F4 /* DTStylesheetHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTStylesheetHTMLElement.m; path = Core/Source/DTStylesheetHTMLElement.m; sourceTree = ""; }; - B51B448327AE977546591D1D86F2A579 /* APRecordDate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APRecordDate.m; path = Pod/Core/Public/Models/APRecordDate.m; sourceTree = ""; }; - B5BFC1EB32AE6E368BEF8E4C844FCCAE /* CYRTextView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CYRTextView.xcconfig; sourceTree = ""; }; - B5C29FCFB3EE19158EBE4F401178AC6F /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; - B5CFC10C0538EDA36516FD16343D8E24 /* SWTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWTableViewCell.h; path = SWTableViewCell/PodFiles/SWTableViewCell.h; sourceTree = ""; }; - B5D6C1E40EBE740FEC2AC48971177C69 /* UIView+DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DHSmartScreenshot.h"; path = "Classes/UIView+DHSmartScreenshot.h"; sourceTree = ""; }; - B5D822239D5B6D4441933AE04179006E /* IQCropSelectionEndView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQCropSelectionEndView.h; path = IQAudioRecorderController/IQCropSelectionEndView.h; sourceTree = ""; }; - B5DD7A9987F37BF04D3F5C1E6DE2DD3D /* FLEXArgumentInputDateView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputDateView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.m; sourceTree = ""; }; - B5E228D834530598B4322EADA552024F /* SZTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SZTextView.h; path = Classes/SZTextView.h; sourceTree = ""; }; - B6547E0850EDE5D5DC33BBE475EE96BC /* DAKeyboardControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DAKeyboardControl.h; path = DAKeyboardControl/DAKeyboardControl.h; sourceTree = ""; }; - B696F41FB9785CAAAD89F2F9CD37ECC1 /* DTHTMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLWriter.h; path = Core/Source/DTHTMLWriter.h; sourceTree = ""; }; - B71B727300F30374573F92DA9C4FDF0C /* NSHash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSHash-prefix.pch"; sourceTree = ""; }; - B81C859114714EAAFA5510C534E1947D /* FLEX.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLEX.xcconfig; sourceTree = ""; }; - B836D1C3D2427C173AE9C7B69457D85B /* INTULocationManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = INTULocationManager.xcconfig; sourceTree = ""; }; - B84434529E35E73A5E05CF53C99C999B /* DAKeyboardControl-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DAKeyboardControl-umbrella.h"; sourceTree = ""; }; - B8AF31B3B9C9C9215734128DDB02EC1B /* INTUHeadingRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTUHeadingRequest.m; path = LocationManager/INTULocationManager/INTUHeadingRequest.m; sourceTree = ""; }; - B8AF818756769A4486EDB190FC315E3D /* PHFDelegateChain-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PHFDelegateChain-dummy.m"; sourceTree = ""; }; - B8C76C4535C08639F299673C2C3BC033 /* FLEXArgumentInputFontView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h; sourceTree = ""; }; - B8F68DF1960B1CFC7F877E2FF04062E7 /* APRelatedPerson.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APRelatedPerson.m; path = Pod/Core/Public/Models/APRelatedPerson.m; sourceTree = ""; }; - B9AFD97E49C0A5B2D4AFC7F4A07E8279 /* CYRTextView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CYRTextView.framework; path = CYRTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B9FCDC3C909277DBA560800C498C358C /* IQ_FDWaveformView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQ_FDWaveformView.m; path = IQAudioRecorderController/FDWaveformView/IQ_FDWaveformView.m; sourceTree = ""; }; + B5160CAC8E80735A3F56362358B04865 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B52F45F9C921D00B4CD5607586EB48CA /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = ""; }; + B541FCB32651C0D456F5C1A4EAA87EE3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B554318291784CCD16C7E148C5FED09A /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = ""; }; + B5D335958D5A0E717705F38218C04854 /* NBPhoneNumberDesc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumberDesc.h; path = libPhoneNumber/NBPhoneNumberDesc.h; sourceTree = ""; }; + B5D615B5343A1150A2A2208A2E8947F2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B652EB476E08BA61CA4DF6DA180853E2 /* TTTAttributedLabel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TTTAttributedLabel.modulemap; sourceTree = ""; }; + B6CF89B88860049A7E466C497683A2E0 /* SZTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SZTextView.m; path = Classes/SZTextView.m; sourceTree = ""; }; + B73D44FE9039C758BD80FA8925FCDC3D /* SWUtilityButtonView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWUtilityButtonView.m; path = SWTableViewCell/PodFiles/SWUtilityButtonView.m; sourceTree = ""; }; + B7B7944C844092E0A671E7967E9D4019 /* FLEX-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLEX-dummy.m"; sourceTree = ""; }; + B7CD41C180BC03F6B9434D557BF1ED6B /* FLEXArgumentInputSwitchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputSwitchView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h; sourceTree = ""; }; + B7FFE776E7CE7F3ECFBFD1FA1412BDFD /* SCSiriWaveformView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SCSiriWaveformView-prefix.pch"; sourceTree = ""; }; + B8714591AAC9EF71E5F47045BD68A4E0 /* UIView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DTFoundation.m"; path = "Core/Source/iOS/UIView+DTFoundation.m"; sourceTree = ""; }; + B89C3C4C81B7BB3EA6854CB5DD9DFB71 /* stop_recording@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_recording@2x.png"; path = "IQAudioRecorderController/Resources/stop_recording@2x.png"; sourceTree = ""; }; + B8A726239378E2FF00F6CD6F992FCF16 /* DTWeakSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWeakSupport.h; path = Core/Source/DTWeakSupport.h; sourceTree = ""; }; + B8E2552BBBBB9BE2ECB9ECEB1C5788B5 /* audio_record@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "audio_record@3x.png"; path = "IQAudioRecorderController/Resources/audio_record@3x.png"; sourceTree = ""; }; + B93CA6C64630D1F1163C1342CDFAED8E /* NSHash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSHash-dummy.m"; sourceTree = ""; }; + BA1EBBBE5FAC33C33230E961D79F00B7 /* DTTextHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextHTMLElement.h; path = Core/Source/DTTextHTMLElement.h; sourceTree = ""; }; + BA263A3DFFA51B47465209BDB1FD8FDB /* audio_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = audio_stream.cpp; path = FreeStreamer/FreeStreamer/audio_stream.cpp; sourceTree = ""; }; + BA38197D6DE0139D8BF8EA26AF15165F /* FLEX.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FLEX.modulemap; sourceTree = ""; }; BA4037C6688497E1D9D900A30B9A9CFA /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/CoreTelephony.framework; sourceTree = DEVELOPER_DIR; }; - BA519B60E5E20621A384EB8C966DD9B5 /* IQPlaybackDurationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQPlaybackDurationView.h; path = IQAudioRecorderController/IQPlaybackDurationView.h; sourceTree = ""; }; - BA54C48877EF60705261EA85AE05196F /* stop_playing@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_playing@3x.png"; path = "IQAudioRecorderController/Resources/stop_playing@3x.png"; sourceTree = ""; }; - BA56551F5FA28B82CA66A7DC4520361A /* HMSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HMSegmentedControl.m; path = HMSegmentedControl/HMSegmentedControl.m; sourceTree = ""; }; - BA78E1A542FD90911BBC87AB0E0B6938 /* FLEXObjectExplorerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXObjectExplorerFactory.h; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.h; sourceTree = ""; }; - BAB1FFF9C9C70F73AD9FB3FEC835D2AA /* FLEXWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWebViewController.m; path = Classes/GlobalStateExplorers/FLEXWebViewController.m; sourceTree = ""; }; - BAB3C4C04AD6BF1711323155D0A0C89F /* FLEXGlobalsTableViewControllerEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewControllerEntry.m; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.m; sourceTree = ""; }; - BABE6FBA4F5F2244E7CC6B584D54AD13 /* SCSiriWaveformView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SCSiriWaveformView.m; path = SCSiriWaveformView/SCSiriWaveformView.m; sourceTree = ""; }; - BB5632286EF0DF48ECD3EEEF2DC2B136 /* FLEX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEX.h; path = Classes/FLEX.h; sourceTree = ""; }; - BB8978F6FAD7AA07B82DF26583562551 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = ""; }; - BB8C1ED6F4129DAC09273F83BEBF4443 /* DTTextAttachmentHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachmentHTMLElement.m; path = Core/Source/DTTextAttachmentHTMLElement.m; sourceTree = ""; }; - BC3DC8142C82EC1902F80935457E8606 /* DTWebVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTWebVideoView.m; path = Core/Source/DTWebVideoView.m; sourceTree = ""; }; - BC5C9D4724BD1F94C375191144D30727 /* NSAttributedStringRunDelegates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NSAttributedStringRunDelegates.m; path = Core/Source/NSAttributedStringRunDelegates.m; sourceTree = ""; }; - BD0756CEC5E5BAC98BD61F3211E44DBD /* FLEXTableListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableListViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.m; sourceTree = ""; }; - BD816D180F972CC2B40F3B7AA3AFCBDA /* APTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APTypes.h; path = Pod/Core/Public/Models/APTypes.h; sourceTree = ""; }; - BD8FF107C6CA4171C7CB4B5C92BCCFD5 /* CTLineUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CTLineUtils.m; path = Core/Source/CTLineUtils.m; sourceTree = ""; }; - BDEC2E90EE0E9A9C6C17F8D977BEB1B9 /* FLEXViewExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.h; sourceTree = ""; }; - BDECB11C73953FB549645DDED31B9F80 /* APContact.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APContact.m; path = Pod/Core/Public/Models/APContact.m; sourceTree = ""; }; - BE2CE74BE1DF0A68B63D8E0C75194BF3 /* FLEXArrayExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArrayExplorerViewController.m; path = Classes/ObjectExplorers/FLEXArrayExplorerViewController.m; sourceTree = ""; }; - BE52A6666CCB6EF0249C1961BD6A9F01 /* NBMetadataHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataHelper.m; path = libPhoneNumber/NBMetadataHelper.m; sourceTree = ""; }; - BEB9FC8AA195BA5C9CD87215E2093CF4 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; - BED625BAD02B9853AA5FB9C081E45934 /* FLEXNetworkSettingsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkSettingsTableViewController.m; path = Classes/Network/FLEXNetworkSettingsTableViewController.m; sourceTree = ""; }; - BF39BC4989B54B773D3B2399670D27CA /* DTColor+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTColor+Compatibility.h"; path = "Core/Source/DTColor+Compatibility.h"; sourceTree = ""; }; - BFE032E44373EA6A7CC9BBFD5FE504B2 /* DTCoreTextParagraphStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextParagraphStyle.h; path = Core/Source/DTCoreTextParagraphStyle.h; sourceTree = ""; }; - C0463379A6B09C0FC98B8A45C1CDFCF7 /* FLEXFileBrowserFileOperationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserFileOperationController.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.m; sourceTree = ""; }; - C0C05500DEDABD7F10978C7E52008134 /* stream_configuration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_configuration.cpp; path = FreeStreamer/FreeStreamer/stream_configuration.cpp; sourceTree = ""; }; - C0CE5EAFE1C35FD46B9047190604D5EA /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; - C0D3ED3B8811A0ADCAE6456BE8C2C8ED /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - C1082E205F13A7E5154BF5991CDA1635 /* default.css.c */ = {isa = PBXFileReference; includeInIndex = 1; name = default.css.c; path = Core/Source/default.css.c; sourceTree = ""; }; - C1141995EFFC299563004C77BBF9E951 /* SBJson4Writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Writer.h; path = src/main/objc/SBJson4Writer.h; sourceTree = ""; }; - C11D29E365D6515402645C9114731BAA /* HMSegmentedControl.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = HMSegmentedControl.modulemap; sourceTree = ""; }; - C17576B80AFB56F5205F58DF83591155 /* audio_queue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = audio_queue.cpp; path = FreeStreamer/FreeStreamer/audio_queue.cpp; sourceTree = ""; }; - C18064EF11B4E40506A6A4C68EB1AD24 /* audio_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = audio_queue.h; path = FreeStreamer/FreeStreamer/audio_queue.h; sourceTree = ""; }; - C190D867F7B47EF6005B622DF7AF30DE /* JSCoreBom-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSCoreBom-umbrella.h"; sourceTree = ""; }; + BA90A33B9CE96F240C504CDAE123DE9B /* SDWebImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDecoder.m; path = SDWebImage/SDWebImageDecoder.m; sourceTree = ""; }; + BAABE92869F0FA30852EFA9A97A616A9 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BAE4DC3D29EDE1F982127CB5DE84FDD9 /* DTColorFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTColorFunctions.m; path = Core/Source/DTColorFunctions.m; sourceTree = ""; }; + BAF32DF244B0D511C38096C3D8DCA5E0 /* DTCSSStylesheet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSStylesheet.m; path = Core/Source/DTCSSStylesheet.m; sourceTree = ""; }; + BB4C261244B454AAB845275BDB84AD94 /* APAddressBookExternalChangeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookExternalChangeDelegate.h; path = Pod/Core/Private/Routine/APAddressBookExternalChangeDelegate.h; sourceTree = ""; }; + BB84FF09CC0E216C1825A88D09D95498 /* IQAudioCropperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQAudioCropperViewController.m; path = IQAudioRecorderController/IQAudioCropperViewController.m; sourceTree = ""; }; + BBA92A0040CAFDEAE4A4F42F2C2071D7 /* DTIframeTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTIframeTextAttachment.h; path = Core/Source/DTIframeTextAttachment.h; sourceTree = ""; }; + BBA9AA73A6C5E51405370B2506DE5FBC /* NBMetadataCoreTestMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataCoreTestMapper.h; path = libPhoneNumber/NBMetadataCoreTestMapper.h; sourceTree = ""; }; + BC277DD0E1231F39F5D544C7A2B6A66E /* IQCropSelectionEndView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQCropSelectionEndView.h; path = IQAudioRecorderController/IQCropSelectionEndView.h; sourceTree = ""; }; + BC4D711B2D09F23AA5547129BAC38E1D /* FLEXFileBrowserSearchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserSearchOperation.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h; sourceTree = ""; }; + BDE1DC8E722D6F7487DF5DD3D0FD7A71 /* AFOAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFOAuthCredential.m; path = AFOAuth2Manager/AFOAuthCredential.m; sourceTree = ""; }; + BE46C0E810CDA8DF6288461E1F502870 /* DTFolderMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFolderMonitor.m; path = Core/Source/DTFolderMonitor.m; sourceTree = ""; }; + BE6E0EE4ECA673FE1564EDDF0206627B /* FLEXArrayExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArrayExplorerViewController.m; path = Classes/ObjectExplorers/FLEXArrayExplorerViewController.m; sourceTree = ""; }; + BEA21CEB025EACD75757CBAEFC5F3EC4 /* FLEXLibrariesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLibrariesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.m; sourceTree = ""; }; + BEA6CD8C5517DF5EBA497182B19DAEA7 /* FLEXFieldEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorViewController.h; path = Classes/Editing/FLEXFieldEditorViewController.h; sourceTree = ""; }; + BEA83630C7A6FD3CAF16440315E04ACC /* UIImage+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DTFoundation.m"; path = "Core/Source/iOS/UIImage+DTFoundation.m"; sourceTree = ""; }; + BEB30D0DB358DA419B2D880A9E5BE81A /* DTAttributedTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextView.m; path = Core/Source/DTAttributedTextView.m; sourceTree = ""; }; + BECEFED58A9CF585E21571EDD5525482 /* CTLineUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CTLineUtils.m; path = Core/Source/CTLineUtils.m; sourceTree = ""; }; + BF57BFC3FFE384D3DF9B91968B67792A /* FLEXArgumentInputTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputTextView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h; sourceTree = ""; }; + BF7803938136B6DC685CAD4311B52F8F /* DTColor+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTColor+Compatibility.h"; path = "Core/Source/DTColor+Compatibility.h"; sourceTree = ""; }; + BF9C02A41A97CF56338A18248AEC04DC /* DTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVersion.h; path = Core/Source/DTVersion.h; sourceTree = ""; }; + BFEA87D40F82C0D96032B1D5D3D5FB60 /* DTDictationPlaceholderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderView.m; path = Core/Source/DTDictationPlaceholderView.m; sourceTree = ""; }; + C0064A54275A8D636D1BFB900AF1F7EF /* APAddress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddress.m; path = Pod/Core/Public/Models/APAddress.m; sourceTree = ""; }; + C00E9F6014FCC28B097D023841A7DA6D /* CYRTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CYRTextView-dummy.m"; sourceTree = ""; }; + C05622BF2183E6AC4F857F315E496411 /* SBJson.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SBJson.xcconfig; sourceTree = ""; }; + C07F86B0478ED1F02702414465541E52 /* SRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SRWebSocket.m; path = SocketRocket/SRWebSocket.m; sourceTree = ""; }; + C0BAAF100AE61EF2CA5BB366FE577ABB /* SWFrameButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWFrameButton.m; path = SWFrameButton/SWFrameButton.m; sourceTree = ""; }; + C0F1B15F0B3C2C70E94DD9B2080CF9BD /* FLEXGlobalsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.m; sourceTree = ""; }; + C0FC307E45E13AB19C05DC6DADA30CA0 /* IQAudioRecorderController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQAudioRecorderController-umbrella.h"; sourceTree = ""; }; C19AB05D6161C4718CD40B49A57E17A2 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/AudioToolbox.framework; sourceTree = DEVELOPER_DIR; }; - C1AB42506F99F10F05F55CF245549C21 /* MBProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.xcconfig; sourceTree = ""; }; - C1EAC35E4ECAF861BA70D40CFFDE4FB1 /* AHKActionSheetViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AHKActionSheetViewController.m; path = Classes/AHKActionSheetViewController.m; sourceTree = ""; }; - C1FCDD1D2A2D06CBA142DB8AFFA0D4D0 /* Reachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = ""; }; - C2342BC772DBEE8C263FA07ACE2E730E /* icon-success.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-success.png"; path = "Classes/Icons/icon-success.png"; sourceTree = ""; }; - C29D1F0AB3044D3C5B2BA6072D565539 /* APAddress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddress.m; path = Pod/Core/Public/Models/APAddress.m; sourceTree = ""; }; - C2AA973B11A59A0CC2605CE33C7F2475 /* NSGIF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSGIF-dummy.m"; sourceTree = ""; }; - C31B96CAFD0B45F0F04DE811660C61A4 /* TTTAttributedLabel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TTTAttributedLabel-umbrella.h"; sourceTree = ""; }; - C34307AE2CF4D77C04EB4B1A42EEA007 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; - C3A6B11DC9748FD6401F0EDDB0436E9F /* FSPlaylistItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSPlaylistItem.h; path = FreeStreamer/FreeStreamer/FSPlaylistItem.h; sourceTree = ""; }; - C3AE3866EB64927E22F28064B4C2E6AD /* OMGHTTPURLRQ-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OMGHTTPURLRQ-dummy.m"; sourceTree = ""; }; - C3B1AE78637D96133F130F3A87E71AEC /* SBJson4StreamWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriter.m; path = src/main/objc/SBJson4StreamWriter.m; sourceTree = ""; }; - C3D27F3FB22C2404ED7F118DF9C1A6CD /* FLEXArgumentInputColorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputColorView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.m; sourceTree = ""; }; - C4716712447611CA6B253226FBB154EB /* FLEXWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWindow.m; path = Classes/ExplorerInterface/FLEXWindow.m; sourceTree = ""; }; - C49F81674DBEC0B6BE50694C48F31F8D /* FLEXHierarchyTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewCell.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.m; sourceTree = ""; }; - C5347CF99D1C6E577A419258C485BAA0 /* FLEXGlobalsTableViewControllerEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXGlobalsTableViewControllerEntry.h; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.h; sourceTree = ""; }; - C57EAE7B2B3C17C679A60CE421B5815E /* DTHTMLParserTextNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserTextNode.h; path = Core/Source/DTHTMLParserTextNode.h; sourceTree = ""; }; - C5D3C476ABC10FEF974878F734D22BCC /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = ""; }; - C5EBA48F01C00EFFBEBA2824CA0E5AEE /* OMGHTTPURLRQ.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OMGHTTPURLRQ.xcconfig; sourceTree = ""; }; - C663DB6AC96042F184E96971199D94B0 /* SCSiriWaveformView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SCSiriWaveformView.h; path = SCSiriWaveformView/SCSiriWaveformView.h; sourceTree = ""; }; - C6F66A7C0E4211844C41D9B03124EF12 /* libPhoneNumber-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "libPhoneNumber-iOS.xcconfig"; sourceTree = ""; }; - C72420EC8DC8ACED6D9D3FB973CDDE81 /* FLEXImagePreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImagePreviewViewController.m; path = Classes/ViewHierarchy/FLEXImagePreviewViewController.m; sourceTree = ""; }; - C7FD634158E4BF7229C222D881B94D31 /* REMenu-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "REMenu-prefix.pch"; sourceTree = ""; }; - C85DAE33A03BD5102DF3D846DAACBCE7 /* SBJson4StreamParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParser.m; path = src/main/objc/SBJson4StreamParser.m; sourceTree = ""; }; - C87805A7042B335E7040668DC5F60AAD /* FLEXFileBrowserTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserTableViewController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h; sourceTree = ""; }; - C897F582833061FA8E77B6E3C84AD56C /* IQ_FDWaveformView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQ_FDWaveformView.h; path = IQAudioRecorderController/FDWaveformView/IQ_FDWaveformView.h; sourceTree = ""; }; - C8A6F9C48380A2B9C7D99A1AC445BACD /* NSAttributedString+SmallCaps.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+SmallCaps.m"; path = "Core/Source/NSAttributedString+SmallCaps.m"; sourceTree = ""; }; - C9480C10A98DAA7CAE1A98D383A91696 /* DTBreakHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBreakHTMLElement.m; path = Core/Source/DTBreakHTMLElement.m; sourceTree = ""; }; - C9C02160274476B452178414C493D5A9 /* caching_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = caching_stream.h; path = FreeStreamer/FreeStreamer/caching_stream.h; sourceTree = ""; }; - C9FED95F67FCEF9014BE009E21F1B362 /* FLEXLibrariesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLibrariesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h; sourceTree = ""; }; - CA2862CFB145421835FDCD35C88C3D49 /* INTULocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTULocationManager.h; path = LocationManager/INTULocationManager/INTULocationManager.h; sourceTree = ""; }; - CB32D6C0521BA198991B51ABD2851915 /* OMGHTTPURLRQ.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = OMGHTTPURLRQ.framework; path = OMGHTTPURLRQ.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CBAEED838BD1DACB5BDC3A36BA024E24 /* CYRToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRToken.h; path = CYRTextView/CYRToken.h; sourceTree = ""; }; - CBBDCB283EB4F1D4960863D0811EB898 /* AHKActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHKActionSheet-dummy.m"; sourceTree = ""; }; - CC30500E5721C75CE3B9DEA57A9D0A44 /* IQAudioRecorderController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQAudioRecorderController-dummy.m"; sourceTree = ""; }; - CC48EBE6D1023B7A318B639B0CA62F90 /* CYRTextStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRTextStorage.h; path = CYRTextView/CYRTextStorage.h; sourceTree = ""; }; - CC4AA98F85A191E02A1DC1657646247E /* DAKeyboardControl.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DAKeyboardControl.modulemap; sourceTree = ""; }; - CCFEEC940DBC404FAA8D79E69846F571 /* stop_recording.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = stop_recording.png; path = IQAudioRecorderController/Resources/stop_recording.png; sourceTree = ""; }; - CD0DBDBCF2306C67A80BCA834E26BF60 /* libPhoneNumber-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libPhoneNumber-iOS-dummy.m"; sourceTree = ""; }; - CD79947C15915FF20CD66B3FE738259D /* DTFoundation.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DTFoundation.modulemap; sourceTree = ""; }; - CDB7F5EFB884E52F6AB490BAB3E195FF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - CDE1A9D4160D68289E2863097E9CBC43 /* FLEXSystemLogTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewController.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.m; sourceTree = ""; }; - CE6016E2E117CC96E898E68113969A97 /* UIImage+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DTFoundation.m"; path = "Core/Source/iOS/UIImage+DTFoundation.m"; sourceTree = ""; }; - CE6B166FE0F0352C2EC56E65DE12AE26 /* FLEXManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FLEXManager+Private.h"; path = "Classes/Manager/FLEXManager+Private.h"; sourceTree = ""; }; - CEA62D551560CCEF562DD72A66C8F810 /* JSCoreBom.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JSCoreBom.m; path = JSCoreBom/JSCoreBom.m; sourceTree = ""; }; - CF09DC5093F059EDAA975353F2159FBE /* FLEXLiveObjectsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLiveObjectsTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.h; sourceTree = ""; }; - CF8BAAFB815D152B8C2209485E5D0D65 /* FLEXTableColumnHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableColumnHeader.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h; sourceTree = ""; }; - CF8C4857D613CDF3166E2557E5F35A72 /* FLEXKeyboardHelpViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardHelpViewController.m; path = Classes/Utility/FLEXKeyboardHelpViewController.m; sourceTree = ""; }; - CFE1E79B32A754EE56307A40DC61E30C /* DTHTMLParserTextNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserTextNode.m; path = Core/Source/DTHTMLParserTextNode.m; sourceTree = ""; }; - CFE786E2A95E03DB45523D2E7D720A2E /* FLEXSetExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSetExplorerViewController.m; path = Classes/ObjectExplorers/FLEXSetExplorerViewController.m; sourceTree = ""; }; - D0801ADB89B345B644083E3F5DA27F0E /* FLEXArgumentInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.m; sourceTree = ""; }; - D08BDE0EC8D8460F373677430C80C109 /* APAddressBook.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBook.m; path = Pod/Core/Public/APAddressBook.m; sourceTree = ""; }; - D0ADE84C411222AF23DB1BF0D9317C97 /* DTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLog.h; path = Core/Source/DTLog.h; sourceTree = ""; }; - D0AFA6E8877B48AD4B34A3F8DA953EBC /* FLEXDictionaryExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDictionaryExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.m; sourceTree = ""; }; - D11FA20BFA8610CCF8A537429554CC86 /* microphone_access@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "microphone_access@2x.png"; path = "IQAudioRecorderController/Resources/microphone_access@2x.png"; sourceTree = ""; }; - D138290D079884AC1321047B95FB2134 /* FLEXArgumentInputViewFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputViewFactory.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.h; sourceTree = ""; }; - D148B450A3F94C377BE9DC7D5E0007D6 /* APThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APThread.h; path = Pod/Core/Private/Thread/APThread.h; sourceTree = ""; }; - D176B9354BBD8E31B2615D8CAF24DE74 /* audio_record@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "audio_record@2x.png"; path = "IQAudioRecorderController/Resources/audio_record@2x.png"; sourceTree = ""; }; - D1948DD27AF23FE4E029755D9C926C67 /* DTLinkButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLinkButton.m; path = Core/Source/DTLinkButton.m; sourceTree = ""; }; - D1ABBF21C34A317EBB9E8A1AAB8564C3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D1DC99BA66E71030F29ED84A229C7426 /* DAKeyboardControl.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DAKeyboardControl.xcconfig; sourceTree = ""; }; - D2AEB2BAA84C8F0640FF28BAF04E143A /* DTAccessibilityElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityElement.m; path = Core/Source/DTAccessibilityElement.m; sourceTree = ""; }; - D2E3E4AC1C3D019248474E68ABBE231D /* SWUtilityButtonTapGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWUtilityButtonTapGestureRecognizer.m; path = SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.m; sourceTree = ""; }; - D3E6894E91930FAB0EDC269C8152753A /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/NSData+ImageContentType.m"; sourceTree = ""; }; - D4144A220A2219B829EE7C2F2A0CEEC1 /* file_output.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = file_output.cpp; path = FreeStreamer/FreeStreamer/file_output.cpp; sourceTree = ""; }; + C20254DBFECE990B5F190DF8569224C1 /* libPhoneNumber-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "libPhoneNumber-iOS.xcconfig"; sourceTree = ""; }; + C2653460C6784A6742200E0577E292D1 /* JDStatusBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarView.h; path = JDStatusBarNotification/JDStatusBarView.h; sourceTree = ""; }; + C2B3FB6F944236ED0BE18BF803F7E110 /* CYRTextView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CYRTextView.framework; path = CYRTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C32A32AD9DBF6D224A7F32549DD6141F /* FSAudioController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FSAudioController.m; path = FreeStreamer/FreeStreamer/FSAudioController.m; sourceTree = ""; }; + C3300AE7266ED5C0CE5770F1FC59666C /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/NSData+ImageContentType.m"; sourceTree = ""; }; + C3BF7488E1EC2E1A663086C19735244C /* DTTextHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextHTMLElement.m; path = Core/Source/DTTextHTMLElement.m; sourceTree = ""; }; + C3F44B80244405121A2177CC0E173C1C /* DTAccessibilityElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityElement.h; path = Core/Source/DTAccessibilityElement.h; sourceTree = ""; }; + C4040355D4B12AE84625DD2DA8FDF112 /* IQ_FDWaveformView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQ_FDWaveformView.m; path = IQAudioRecorderController/FDWaveformView/IQ_FDWaveformView.m; sourceTree = ""; }; + C41285E55435527CBEA10EA402059864 /* UIWindow+AHKAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+AHKAdditions.h"; path = "Classes/UIWindow+AHKAdditions.h"; sourceTree = ""; }; + C465D2D044E842C8A8CFE39C7D362341 /* DTHTMLAttributedStringBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLAttributedStringBuilder.m; path = Core/Source/DTHTMLAttributedStringBuilder.m; sourceTree = ""; }; + C47F68733CDC7A3371931DBBDA3FD724 /* CYRToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYRToken.h; path = CYRTextView/CYRToken.h; sourceTree = ""; }; + C5529B74BC127EA6F50D55556020316A /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = Classes/Network/FLEXNetworkTransaction.h; sourceTree = ""; }; + C59C9AA16397388F13A2C79A799D42D8 /* JDStatusBarNotification.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JDStatusBarNotification.xcconfig; sourceTree = ""; }; + C5F0832B55BA4F6440B1DB668D9A771D /* FLEXViewControllerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewControllerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.m; sourceTree = ""; }; + C68A8D4A83A675EDFF007143E0AB6B09 /* input_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = input_stream.h; path = FreeStreamer/FreeStreamer/input_stream.h; sourceTree = ""; }; + C6915EC5581399F6D8174CCB3C1F64E3 /* SBJson4Parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Parser.h; path = src/main/objc/SBJson4Parser.h; sourceTree = ""; }; + C6DD99C292B8538A59EC7F1D5D01E926 /* FLEXMultiColumnTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultiColumnTableView.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.h; sourceTree = ""; }; + C6EC0D7F13377F4510C369F273A05D40 /* FLEXMethodCallingViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMethodCallingViewController.m; path = Classes/Editing/FLEXMethodCallingViewController.m; sourceTree = ""; }; + C74663550A52CC7EE1C2CC6491846167 /* HMSegmentedControl-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HMSegmentedControl-dummy.m"; sourceTree = ""; }; + C795792E837F6042927651627A512666 /* SCSiriWaveformView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SCSiriWaveformView-dummy.m"; sourceTree = ""; }; + C7989389EF17A69905AA6ED38B1D60E2 /* DTCoreTextFontCollection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontCollection.m; path = Core/Source/DTCoreTextFontCollection.m; sourceTree = ""; }; + C7AD6ABDA84248120BC5F7C704A2B0AF /* DTTextAttachmentHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachmentHTMLElement.m; path = Core/Source/DTTextAttachmentHTMLElement.m; sourceTree = ""; }; + C7B8C58FB9A762A66E4037F19C8C405A /* NSHash.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NSHash.modulemap; sourceTree = ""; }; + C7E8A5D179C489EB0AEABB97C133C92F /* NBPhoneNumberDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumberDefines.h; path = libPhoneNumber/NBPhoneNumberDefines.h; sourceTree = ""; }; + C85B58040FF1A3C299D45633E045B867 /* NSString+DTURLEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTURLEncoding.m"; path = "Core/Source/NSString+DTURLEncoding.m"; sourceTree = ""; }; + C8C3FB561A4BE5009FB37C03A4044E5B /* UITableView+DHSmartScreenshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+DHSmartScreenshot.m"; path = "Classes/UITableView+DHSmartScreenshot.m"; sourceTree = ""; }; + C924AA1E3318EE8179F3548ADA891EB1 /* IQMessageDisplayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQMessageDisplayView.m; path = IQAudioRecorderController/IQMessageDisplayView.m; sourceTree = ""; }; + C9D5A4010E9671DB8BAAAA7F1565F8B5 /* FLEXTableColumnHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableColumnHeader.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.m; sourceTree = ""; }; + CB9CAA2C99418D090739C3E3A43BFBCB /* FLEXArgumentInputNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNumberView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.m; sourceTree = ""; }; + CBFDC1D6DE779010D4630BD835AB486E /* NSAttributedStringRunDelegates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NSAttributedStringRunDelegates.m; path = Core/Source/NSAttributedStringRunDelegates.m; sourceTree = ""; }; + CC51DDB31015BAAECCB9074DBEC101EC /* icon-error@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-error@2x.png"; path = "Classes/Icons/icon-error@2x.png"; sourceTree = ""; }; + CC693CB498214E9EEC0BDD5BFFC06214 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + CC77D45A652C70665A3BC5583DF80E6F /* SBJson4Writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Writer.h; path = src/main/objc/SBJson4Writer.h; sourceTree = ""; }; + CC780A7FCFCD5D1E0F7181D90535BFBE /* TWMessageBarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TWMessageBarManager.modulemap; sourceTree = ""; }; + CCAC30C4D618E9597D3EF0F7413A9DEB /* CYRTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CYRTextView-prefix.pch"; sourceTree = ""; }; + CCE7B3D9E5E83D11AA75D81D93ACF675 /* CYRLayoutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRLayoutManager.m; path = CYRTextView/CYRLayoutManager.m; sourceTree = ""; }; + CD2DEDB637B163334DB7D5DBC67B5D91 /* SCSiriWaveformView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SCSiriWaveformView.xcconfig; sourceTree = ""; }; + CDC0A1D1D65AEFB1CBA76458D8F180D9 /* SWTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWTableViewCell.h; path = SWTableViewCell/PodFiles/SWTableViewCell.h; sourceTree = ""; }; + CDE63C774E3CBF609B78DD0E8EFB8F8D /* SWFrameButton.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SWFrameButton.framework; path = SWFrameButton.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CE2559F78B7B5D4A2A9B006DE2074FAD /* FLEXViewExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.h; sourceTree = ""; }; + CE7210D6C808C359B57D4B969F0FDD5A /* DTHTMLAttributedStringBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLAttributedStringBuilder.h; path = Core/Source/DTHTMLAttributedStringBuilder.h; sourceTree = ""; }; + CE8E12B6391D0B6BCE23BB2CDB66688E /* NBAsYouTypeFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBAsYouTypeFormatter.h; path = libPhoneNumber/NBAsYouTypeFormatter.h; sourceTree = ""; }; + CEA902333079E87625A6142A43F8B3C8 /* DTTextBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextBlock.m; path = Core/Source/DTTextBlock.m; sourceTree = ""; }; + CFAAE2270285D5E03C9B0CFB801978A6 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; + CFB83BB3A719175A8DCD8484371760F2 /* FLEXTableListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableListViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.h; sourceTree = ""; }; + CFCB03EAE0B05BECA8A052874F3D13BB /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; + D10A44DD09EA9FC9FB8A87129838D49A /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + D1B312BCBA8B3C03080C2E83034A9573 /* DTCoreText.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DTCoreText.modulemap; sourceTree = ""; }; + D1E30E75AD52854772E44CA86776F37D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D1EF18AC15930FA4B62972888B8BAC48 /* JDStatusBarNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JDStatusBarNotification.h; path = JDStatusBarNotification/JDStatusBarNotification.h; sourceTree = ""; }; + D202F98B4FB4530CAFF501A3460F1884 /* FLEXLayerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLayerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.h; sourceTree = ""; }; + D24CFD0681F4BDB2D76EC9E1BBC40B13 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = ""; }; + D25F9981DE31A17093A865BA422E7F0F /* libPhoneNumber_iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = libPhoneNumber_iOS.framework; path = "libPhoneNumber-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + D27045C306E58DBF6DCDC8879B284EBB /* LTHPasscodeViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LTHPasscodeViewController-umbrella.h"; sourceTree = ""; }; + D3173AD2960452B2A857B48480B3A874 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + D334C69FD22C03C6C91D7F26A277CE79 /* DAKeyboardControl.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DAKeyboardControl.modulemap; sourceTree = ""; }; + D38BA3712161BF4A57D294236BC0EC5C /* APAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddress.h; path = Pod/Core/Public/Models/APAddress.h; sourceTree = ""; }; + D39BD5AD164E1E8F26456448DDCD8699 /* FLEXViewExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.m; sourceTree = ""; }; + D40E25E8104F34C39129DC8B86524175 /* BBBadgeBarButtonItem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BBBadgeBarButtonItem-dummy.m"; sourceTree = ""; }; D43C2AC26C2A0F4B9F6588C9A50344DF /* Pods-Jasonette-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Jasonette-umbrella.h"; sourceTree = ""; }; - D4CEC3362541FF919AB84A5783341BDE /* JDStatusBarView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarView.m; path = JDStatusBarNotification/JDStatusBarView.m; sourceTree = ""; }; - D4F68511D11A65C87E86D6CD4F19FFC5 /* NSString+DTURLEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTURLEncoding.m"; path = "Core/Source/NSString+DTURLEncoding.m"; sourceTree = ""; }; - D5310CD4F331E47BFA09A4576EFC40C8 /* DTAnchorHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnchorHTMLElement.m; path = Core/Source/DTAnchorHTMLElement.m; sourceTree = ""; }; - D575A59D3C2EE746BA5E62A403964436 /* APAddressBookAccessRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookAccessRoutine.h; path = Pod/Core/Private/Routine/APAddressBookAccessRoutine.h; sourceTree = ""; }; - D5C43733D9091A0448B2BCE6CDCDE150 /* NBMetadataCoreTestMapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBMetadataCoreTestMapper.m; path = libPhoneNumber/NBMetadataCoreTestMapper.m; sourceTree = ""; }; - D5E45EF6468A60DE19611B6C058E7006 /* DTHorizontalRuleHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHorizontalRuleHTMLElement.m; path = Core/Source/DTHorizontalRuleHTMLElement.m; sourceTree = ""; }; - D619F3963E8D1AFDF235988B1A3E520E /* FLEXRealmDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.h; sourceTree = ""; }; - D66FC5C5460E71FAFE1C79784F7BC489 /* SWFrameButton-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWFrameButton-umbrella.h"; sourceTree = ""; }; - D6E9CFA0932564C2C03539E5C27EEC38 /* IQAudioRecorderController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQAudioRecorderController.framework; path = IQAudioRecorderController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D737E023EF64263717C5A50BF1340BB4 /* NBPhoneNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumber.m; path = libPhoneNumber/NBPhoneNumber.m; sourceTree = ""; }; - D752C10DF605CA2B72F2DD954E91045C /* FLEXLayerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLayerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.m; sourceTree = ""; }; - D75FE1BD9329B7DB614FB7BA4D6B9536 /* PHFComposeBarView_TextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PHFComposeBarView_TextView.m; path = Classes/PHFComposeBarView_TextView.m; sourceTree = ""; }; - D7B66C8A4DB3613F99CFD60E6C279516 /* UIApplication+DTNetworkActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DTNetworkActivity.m"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.m"; sourceTree = ""; }; - D8A34F8D433A1C989C448B177CC11E29 /* PHFDelegateChain.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PHFDelegateChain.framework; path = PHFDelegateChain.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D8BD21D7BB635862F7C639F950D476A7 /* NSArray+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+DTError.h"; path = "Core/Source/NSArray+DTError.h"; sourceTree = ""; }; - D8D6C643D1BA7B3CDF19CAF531197537 /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = ""; }; - DA8708BCD39267CDCEF960EA7B5DC020 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DA97FD74D88F2129AE8F4C10C0D1358C /* FSAudioController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSAudioController.h; path = FreeStreamer/FreeStreamer/FSAudioController.h; sourceTree = ""; }; - DADFDAB5B5A515634B2B8F2202676A3D /* APAddressBookContactsRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookContactsRoutine.m; path = Pod/Core/Private/Routine/APAddressBookContactsRoutine.m; sourceTree = ""; }; - DAEF91E938ADAAF9846D30476713EF80 /* NSMutableArray+DTMoving.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableArray+DTMoving.m"; path = "Core/Source/NSMutableArray+DTMoving.m"; sourceTree = ""; }; + D4AB5A131D60E352C06FC1C0053FF22A /* SWTableViewCell.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SWTableViewCell.modulemap; sourceTree = ""; }; + D4B8363AC506E4A96EEADCBDCA4D448E /* PHFComposeBarView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PHFComposeBarView.m; path = Classes/PHFComposeBarView.m; sourceTree = ""; }; + D52F422281FF43B903A5B90A2F568844 /* NBPhoneNumberDesc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumberDesc.m; path = libPhoneNumber/NBPhoneNumberDesc.m; sourceTree = ""; }; + D53BB20862E68CF0E0E012066C1D5DB5 /* stop_playing@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_playing@2x.png"; path = "IQAudioRecorderController/Resources/stop_playing@2x.png"; sourceTree = ""; }; + D548F682E2F0288EA096802D12CBD53B /* DTCoreGraphicsUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreGraphicsUtils.h; path = Core/Source/DTCoreGraphicsUtils.h; sourceTree = ""; }; + D54E236ED13CE053E1CCE5F7EE33400F /* NSData+DTCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+DTCrypto.m"; path = "Core/Source/NSData+DTCrypto.m"; sourceTree = ""; }; + D566BF6B27D76CA069F74AE5557D3C5B /* FLEXSystemLogTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewCell.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.m; sourceTree = ""; }; + D56EAE05EB0AF4B07CA9E8CCB9400FC3 /* NSGIF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSGIF-dummy.m"; sourceTree = ""; }; + D57504275027323EC3ECD7BC2F4127F0 /* SWCellScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWCellScrollView.m; path = SWTableViewCell/PodFiles/SWCellScrollView.m; sourceTree = ""; }; + D5D4ADC447704F2B782925706F02E9B7 /* INTULocationManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = INTULocationManager.framework; path = INTULocationManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D5D71247BB72FD7A6DAEF443ED651FA5 /* DTCoreTextParagraphStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextParagraphStyle.m; path = Core/Source/DTCoreTextParagraphStyle.m; sourceTree = ""; }; + D5EE5825625C7EF173B1FE5DC9040E6F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D64CF917BF56F6EBF552F05705C4D92B /* INTULocationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTULocationRequest.m; path = LocationManager/INTULocationManager/INTULocationRequest.m; sourceTree = ""; }; + D6B5B6BB32C01184E17017454318A05F /* NSData+NSHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+NSHash.m"; path = "NSHash/NSData+NSHash.m"; sourceTree = ""; }; + D6DD79587A506CBC95FEB8B8B185A556 /* TDOAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TDOAuth-umbrella.h"; sourceTree = ""; }; + D774EA699233126AD4FD8FDAE3030F73 /* INTULocationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTULocationRequest.h; path = LocationManager/INTULocationManager/INTULocationRequest.h; sourceTree = ""; }; + D77C508B6740B808E6C8E8B9EFFDDFD8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D895A820291F395F944E322D490311E7 /* FLEXDefaultEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultEditorViewController.h; path = Classes/Editing/FLEXDefaultEditorViewController.h; sourceTree = ""; }; + D8E62C2CC0113FB1F09248BFE3DE6111 /* FLEXMultilineTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultilineTableViewCell.m; path = Classes/Utility/FLEXMultilineTableViewCell.m; sourceTree = ""; }; + D92A08E6ED04557509EB2373C8730A40 /* TTTAttributedLabel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TTTAttributedLabel-dummy.m"; sourceTree = ""; }; + D99070D6BC5AE08CE279ECD4F9825C2B /* icon-info.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-info.png"; path = "Classes/Icons/icon-info.png"; sourceTree = ""; }; + DA95C157A73324B252B1C58330D0DD87 /* DTCoreTextFontDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontDescriptor.m; path = Core/Source/DTCoreTextFontDescriptor.m; sourceTree = ""; }; + DAB39AA1AF92144D3AE21A7F1DC2C50F /* FLEXSetExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSetExplorerViewController.h; path = Classes/ObjectExplorers/FLEXSetExplorerViewController.h; sourceTree = ""; }; + DAC68BDE25A50808775AFF04841A0881 /* FLEXSystemLogTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewController.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h; sourceTree = ""; }; + DAD6891B1E4091C19B6C3B9435A6B420 /* FLEXArgumentInputFontView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.m; sourceTree = ""; }; DB2133ADBF385E5E0339A9ED19CB8B00 /* DTFoundation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DTFoundation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DB3900FC9045CE79AA8D92CF192EAFBE /* DTBreakHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBreakHTMLElement.h; path = Core/Source/DTBreakHTMLElement.h; sourceTree = ""; }; - DB5ABD14A5414F115624EF5A59DD7797 /* NBAsYouTypeFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBAsYouTypeFormatter.m; path = libPhoneNumber/NBAsYouTypeFormatter.m; sourceTree = ""; }; - DB65166AC5569AB5BF675512F1244C0A /* APAddressBook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBook.h; path = Pod/Core/Public/APAddressBook.h; sourceTree = ""; }; - DBC056F6C050B9A6A4CFF615938B62B0 /* IQAudioRecorderController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQAudioRecorderController.xcconfig; sourceTree = ""; }; - DC55BFE9F2BFB808772DBAC1FF2ED86D /* libPhoneNumber_iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = libPhoneNumber_iOS.framework; path = "libPhoneNumber-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - DC697AB745938E8954332D7AB856E2E2 /* DAKeyboardControl-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DAKeyboardControl-dummy.m"; sourceTree = ""; }; - DC7B54763AD7B027EC78B4C54FFF5F8B /* DHSmartScreenshot.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DHSmartScreenshot.xcconfig; sourceTree = ""; }; - DCA5C80FE65A5CAD734774FC98CBC2F8 /* APAddressBookContactsRoutine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookContactsRoutine.h; path = Pod/Core/Private/Routine/APAddressBookContactsRoutine.h; sourceTree = ""; }; - DCC0B326721C9ECADF094D5F13E21848 /* FLEXFileBrowserTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserTableViewController.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.m; sourceTree = ""; }; - DCF1B208CD652776DBF6E2BD03D94B86 /* FLEXObjectExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerViewController.m; path = Classes/ObjectExplorers/FLEXObjectExplorerViewController.m; sourceTree = ""; }; - DD0C57A215863A760B22670AD1F09C3B /* http_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_stream.h; path = FreeStreamer/FreeStreamer/http_stream.h; sourceTree = ""; }; - DD1BC5A19BE1329AAA657772093768E2 /* SZTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SZTextView.modulemap; sourceTree = ""; }; - DD1F652A8BA3D62026CE5788EA8EDB77 /* FSCheckContentTypeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSCheckContentTypeRequest.h; path = FreeStreamer/FreeStreamer/FSCheckContentTypeRequest.h; sourceTree = ""; }; - DD25DC2EEF262DCA8E74A80B7F5FBC3E /* DTHTMLParserNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserNode.m; path = Core/Source/DTHTMLParserNode.m; sourceTree = ""; }; - DD35BBFA86D7C373E528C7758274C0BE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DD600079B2320B87D93B83FC71C3176A /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; - DD8E80E95CC01161DA3F8F6ACA9441AA /* SWTableViewCell-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWTableViewCell-prefix.pch"; sourceTree = ""; }; - DDC331AB39D8E1643958358F87759E60 /* DHSmartScreenshot.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DHSmartScreenshot.modulemap; sourceTree = ""; }; - DDCD54D9C568D408A69E93089B132B8E /* UIView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DTFoundation.m"; path = "Core/Source/iOS/UIView+DTFoundation.m"; sourceTree = ""; }; + DB86532860DE763E8109799DDB361133 /* audio_queue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = audio_queue.cpp; path = FreeStreamer/FreeStreamer/audio_queue.cpp; sourceTree = ""; }; + DB9F27C280BA0D6E584923AB59E0490E /* RMDateSelectionViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMDateSelectionViewController-umbrella.h"; sourceTree = ""; }; + DBA1AF59165F92A9EB2A768ED90BC11C /* DTHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLElement.h; path = Core/Source/DTHTMLElement.h; sourceTree = ""; }; + DBFD87795E62A3C63B63548D1C19ABDD /* SDWebImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDecoder.h; path = SDWebImage/SDWebImageDecoder.h; sourceTree = ""; }; + DC90916D03181C6661E323F9FB5159B1 /* FLEXHeapEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHeapEnumerator.h; path = Classes/Utility/FLEXHeapEnumerator.h; sourceTree = ""; }; + DCB614C8D2B92A36FEB70FF8E410DA77 /* SBJson.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SBJson.modulemap; sourceTree = ""; }; + DCE8663390B28BAAF90EEC564C343FC7 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; }; + DDAC789391CA676C27B49F7FF833D436 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DDBF987FC8DAAE03804FF9AF0E7168CC /* UICKeyChainStore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICKeyChainStore.xcconfig; sourceTree = ""; }; + DDC1F00676390ADC6D64940A9564991B /* NBPhoneNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneNumber.h; path = libPhoneNumber/NBPhoneNumber.h; sourceTree = ""; }; + DE035DFC4B3CFD9A79865683DADC428B /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = ""; }; + DE10D61E5F491F48E2316DC3E3DE6250 /* DHSmartScreenshot-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DHSmartScreenshot-dummy.m"; sourceTree = ""; }; DE2598C6185BC3CA3370A88D23EF122A /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/AddressBook.framework; sourceTree = DEVELOPER_DIR; }; - DE8E740A15EDBCAA586230157EB2AE24 /* APImageExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APImageExtractor.m; path = Pod/Core/Private/Extractors/APImageExtractor.m; sourceTree = ""; }; - DEDBDF8DAE9FB6AE9BC7CE6D695C0E61 /* DTAttributedTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextView.h; path = Core/Source/DTAttributedTextView.h; sourceTree = ""; }; - DEF243AA454536B04D54B074E4AEA575 /* JDStatusBarNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JDStatusBarNotification-dummy.m"; sourceTree = ""; }; - DF46A167F4D20909D9F0D76AB571C9D1 /* Reachability-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Reachability-umbrella.h"; sourceTree = ""; }; - DF69154FE621A8EAAECA8FB9B3C869DB /* DTColorFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTColorFunctions.m; path = Core/Source/DTColorFunctions.m; sourceTree = ""; }; - DF8063FC00D3DB3442CC23570D673640 /* SBJson4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4.h; path = src/main/objc/SBJson4.h; sourceTree = ""; }; - DFDDA8CC0E525F28BB94226673C5EF29 /* FSParseRssPodcastFeedRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FSParseRssPodcastFeedRequest.h; path = FreeStreamer/FreeStreamer/FSParseRssPodcastFeedRequest.h; sourceTree = ""; }; - DFEABE80C723ED025321FFB73A9A146D /* ModuleXMLHttpRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ModuleXMLHttpRequest.m; path = JSCoreBom/Modules/ModuleXMLHttpRequest.m; sourceTree = ""; }; + DEAD56D77432AE9213BC4ADF2E8BB9C8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DEB1DE77EC9AC79E61674A23C2B501E7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DEDA00C2B3F5938061F0DF4AAAC3233E /* DTCoreTextFontCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontCollection.h; path = Core/Source/DTCoreTextFontCollection.h; sourceTree = ""; }; + DEF9F2C56601D0B98853CA21F4EB5C5A /* RMActionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RMActionController.m; path = RMActionController/RMActionController.m; sourceTree = ""; }; + DFC4AEB0E3B9DD4E09BF0EC3A55E444A /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + DFF091BE4BCACF4F040C1F2BFFBC1636 /* FLEXArgumentInputDateView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputDateView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.m; sourceTree = ""; }; + DFF677B97CC51E8752A9B6768DCFBFB5 /* FLEXFileBrowserTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserTableViewController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h; sourceTree = ""; }; + E04E8E75D637AE2466038AF173BE5F4A /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; E059F68A1EE2127842BA52605D539342 /* Pods-Jasonette.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Jasonette.modulemap"; sourceTree = ""; }; + E0874A0497AD215544CE85B6ACF56C25 /* FLEXClassesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXClassesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.h; sourceTree = ""; }; E0977DDA8AC1208BCA1D4F81C42131E7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - E0CC91A25A4475B540128A157C993B23 /* SBJson4Writer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Writer.m; path = src/main/objc/SBJson4Writer.m; sourceTree = ""; }; - E11DB7AC6960344D9C54E53896FF0756 /* FLEXManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXManager.m; path = Classes/Manager/FLEXManager.m; sourceTree = ""; }; - E12C129ADD9AA593E8E9482A0B22E5F0 /* RMDateSelectionViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RMDateSelectionViewController.h; path = RMDateSelectionViewController/RMDateSelectionViewController.h; sourceTree = ""; }; - E1460E1D84FFC0E3C2FD62AC2FCADD6F /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = ""; }; - E1B956627C8F29346A3228905FB54814 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; - E1C1A4BA29BFAA2788C9B3CD07E8DACD /* APImageExtractor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APImageExtractor.h; path = Pod/Core/Private/Extractors/APImageExtractor.h; sourceTree = ""; }; - E20C30B10ADE4C0D69C1419A16C6F0FC /* FLEXNetworkHistoryTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkHistoryTableViewController.m; path = Classes/Network/FLEXNetworkHistoryTableViewController.m; sourceTree = ""; }; - E22BB8E7E27DCBA01E209B5AC1943AA6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E252D91E905FE8C0D7C180945B7DF4AA /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; }; - E2C4C7CBCEC4F8CCD8171161D1654AFC /* TWMessageBarManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TWMessageBarManager.xcconfig; sourceTree = ""; }; - E3310F435D254B90A7BDC356713C2915 /* NBAsYouTypeFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBAsYouTypeFormatter.h; path = libPhoneNumber/NBAsYouTypeFormatter.h; sourceTree = ""; }; - E467E322017745119BAB96E14950744A /* NSHash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSHash-dummy.m"; sourceTree = ""; }; - E4C34EDA72492ABDF40B79D4E1B2CA8C /* REMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenu.m; path = REMenu/REMenu.m; sourceTree = ""; }; - E5ACEF83BCA1DCE26C8E922AAD68CA28 /* FLEX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLEX.framework; path = FLEX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E5C44503E6F5BB74EF5D3E85152DE4E6 /* NSString+IQTimeIntervalFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+IQTimeIntervalFormatter.h"; path = "IQAudioRecorderController/NSString+IQTimeIntervalFormatter.h"; sourceTree = ""; }; - E692C734D0B5E96957183BA90E14D7B9 /* DTLazyImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLazyImageView.m; path = Core/Source/DTLazyImageView.m; sourceTree = ""; }; - E6C710805DB94E421BDC317F8F9CD074 /* DTCoreGraphicsUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreGraphicsUtils.h; path = Core/Source/DTCoreGraphicsUtils.h; sourceTree = ""; }; - E6CAC8D90E86D922AD68177B7F76619F /* SWCellScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWCellScrollView.h; path = SWTableViewCell/PodFiles/SWCellScrollView.h; sourceTree = ""; }; - E73E73D29C4C034A6506C9B2390FDFCE /* PHFDelegateChain.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PHFDelegateChain.modulemap; sourceTree = ""; }; - E7AE16EEBB5AA229312455B6E8CF1DF1 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; - E7D27A88907CB696B0D6E56C40287459 /* DTSmartPagingScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTSmartPagingScrollView.h; path = Core/Source/iOS/DTSmartPagingScrollView.h; sourceTree = ""; }; - E80CCCAA8A0488742434000C11EC50B3 /* PHFComposeBarView_Button.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PHFComposeBarView_Button.h; path = Classes/PHFComposeBarView_Button.h; sourceTree = ""; }; - E8271D382171F339004BC8F9E86FD3C5 /* APAddressBookExternalChangeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APAddressBookExternalChangeDelegate.h; path = Pod/Core/Private/Routine/APAddressBookExternalChangeDelegate.h; sourceTree = ""; }; - E871DB040F10A91197C3DB6EA71147DE /* INTULocationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = INTULocationRequest.m; path = LocationManager/INTULocationManager/INTULocationRequest.m; sourceTree = ""; }; - E8CF5A72AFADE4B591E1B34C8D856B17 /* SocketRocket.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SocketRocket.modulemap; sourceTree = ""; }; - E8DA5545B8CF42C26A1FDD12668E9B45 /* UICKeyChainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UICKeyChainStore.m; path = Lib/UICKeyChainStore/UICKeyChainStore.m; sourceTree = ""; }; - E8E7CE7E422569FC90CE5499B2F3D6EC /* FLEXPropertyEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXPropertyEditorViewController.m; path = Classes/Editing/FLEXPropertyEditorViewController.m; sourceTree = ""; }; - E94B01BF2AD31C5DA1A523E24D40AAEB /* DTFolderMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFolderMonitor.m; path = Core/Source/DTFolderMonitor.m; sourceTree = ""; }; - E999A0C326C0F9466AAFF8BCF2986B8F /* NSMutableArray+SWUtilityButtons.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableArray+SWUtilityButtons.m"; path = "SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.m"; sourceTree = ""; }; - E9CD907AF42E99BA6EC5C82D31090172 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; - E9E1384D496AAA9B283AEFA30B66EF4C /* APSocialProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APSocialProfile.m; path = Pod/Core/Public/Models/APSocialProfile.m; sourceTree = ""; }; - EAE002CD67E24C8D09D90D9006312545 /* FLEXCookiesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXCookiesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h; sourceTree = ""; }; - EB58037C6EAB5A003CFF8951B361DB17 /* NSHash-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSHash-umbrella.h"; sourceTree = ""; }; - EBAAA2B7C4FA4462C09068943B73551E /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; - EBCFD00C89E3D082AB027C278509DB9E /* SDWebImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDecoder.m; path = SDWebImage/SDWebImageDecoder.m; sourceTree = ""; }; - EC203DAF14A102117BCB16702674984F /* APAddressBookBaseRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookBaseRoutine.m; path = Pod/Core/Private/Routine/Base/APAddressBookBaseRoutine.m; sourceTree = ""; }; - EC2E29A9B88B9164411BC9F3311DDD98 /* FLEXArgumentInputNotSupportedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNotSupportedView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.m; sourceTree = ""; }; - EC832BA8D266ECEB23E447318232D0EE /* RMActionController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMActionController-umbrella.h"; sourceTree = ""; }; - EC8E913C2B01CD194A65E6EB2DF197F4 /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SDWebImage.modulemap; sourceTree = ""; }; - ECAAE8AAB11A172235273D6C57EDBEA7 /* DTHTMLAttributedStringBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLAttributedStringBuilder.h; path = Core/Source/DTHTMLAttributedStringBuilder.h; sourceTree = ""; }; - ECB202715DA2D960A8010216C1580CAD /* FLEXArgumentInputFontsPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontsPickerView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h; sourceTree = ""; }; - ED0D8A1E2C688A21D7CA39ABE0CB941D /* APAddressBookExternalChangeRoutine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBookExternalChangeRoutine.m; path = Pod/Core/Private/Routine/APAddressBookExternalChangeRoutine.m; sourceTree = ""; }; - ED16A76D3BFA8B13D40A88B9CCFF4234 /* SZTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SZTextView.m; path = Classes/SZTextView.m; sourceTree = ""; }; - ED3E9E535678844CED14E4A03AA3B3F8 /* REMenu.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = REMenu.framework; path = REMenu.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - ED48DDEACCE3A6BAAE9FD584B0E1C4A8 /* HMSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMSegmentedControl.h; path = HMSegmentedControl/HMSegmentedControl.h; sourceTree = ""; }; - ED513D23E83420EAC6CE45893A15E20E /* FLEXSQLiteDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSQLiteDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h; sourceTree = ""; }; - ED79A272494E152E6F08482ADDA94961 /* FLEXViewControllerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewControllerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h; sourceTree = ""; }; - ED8D20BD1D73E556A97BBC712084C3B2 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; }; - EE03B2CE21F2452A7DCF2A7871C57946 /* NSURL+DTAppLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTAppLinks.m"; path = "Core/Source/iOS/NSURL+DTAppLinks.m"; sourceTree = ""; }; - EEAA5344180DFB4E2307FFB4D452B78A /* AFHTTPRequestSerializer+OAuth2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "AFHTTPRequestSerializer+OAuth2.m"; path = "AFOAuth2Manager/AFHTTPRequestSerializer+OAuth2.m"; sourceTree = ""; }; - EF8EDA7B79DBE2339D4A925BA5BCF4A4 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = ""; }; - EFB46F44B27F8D89924EA23C45496DA1 /* IQCropSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IQCropSelectionView.m; path = IQAudioRecorderController/IQCropSelectionView.m; sourceTree = ""; }; - EFC70A5FF767A0C4CAFE37F7667BF684 /* IQCropSelectionBeginView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQCropSelectionBeginView.h; path = IQAudioRecorderController/IQCropSelectionBeginView.h; sourceTree = ""; }; - EFE6A52B83F77C6059D15FE25CF7B78E /* APAddressBook-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "APAddressBook-prefix.pch"; sourceTree = ""; }; - F0139B1F8FC1DC26FCB3BC1524726E4C /* TWMessageBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TWMessageBarManager.h; path = Classes/TWMessageBarManager.h; sourceTree = ""; }; - F02172ABD321A56C54B60CD32E788349 /* Reachability-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Reachability-dummy.m"; sourceTree = ""; }; - F0D2869601925785C3D64F6BE1C53D11 /* UICKeyChainStore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICKeyChainStore.xcconfig; sourceTree = ""; }; - F0D5592C9DCA8994EF739DEEE09669FC /* NSString+DTUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTUtilities.h"; path = "Core/Source/NSString+DTUtilities.h"; sourceTree = ""; }; - F0DB0650D8DB7B7CF9E949BFE4CA00BC /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = ""; }; - F0FAFBB02EFDE89577F48D115C59B9BB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F16D10B1AFE67BD601776D379AEA8AD2 /* FreeStreamer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FreeStreamer-umbrella.h"; sourceTree = ""; }; - F17F58F7223DE4D8CB8A3D9939972BDB /* DTVideoTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVideoTextAttachment.m; path = Core/Source/DTVideoTextAttachment.m; sourceTree = ""; }; - F1B8767600094CAED163453B276D1CA6 /* HMSegmentedControl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HMSegmentedControl.framework; path = HMSegmentedControl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F1E31A4D9AC30A5DD9E8B7F9FC197E44 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; - F1E479CAB47AFFACC970AF170087DC9D /* TDOAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TDOAuth-umbrella.h"; sourceTree = ""; }; - F249B86095425A5685500A10D7301CCD /* FLEXHierarchyTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewCell.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.h; sourceTree = ""; }; - F289BFD2091C990A337DF56C6878AEF4 /* JDStatusBarNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarNotification.m; path = JDStatusBarNotification/JDStatusBarNotification.m; sourceTree = ""; }; - F2FFA400E31FFAA930CB1CA6F810DB4D /* NSString+IQTimeIntervalFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+IQTimeIntervalFormatter.m"; path = "IQAudioRecorderController/NSString+IQTimeIntervalFormatter.m"; sourceTree = ""; }; - F317EB4C0CEB689029DA57B335760F5D /* AHKActionSheet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AHKActionSheet.framework; path = AHKActionSheet.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F375EB45AE6A0ABED338DBF85E73E44B /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = ""; }; - F382EDDE6497862B6B7F86E8DE2FE671 /* DTCoreText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DTCoreText-dummy.m"; sourceTree = ""; }; - F3B5DA79BC8E90D694D34FECEC5C9F7C /* DHSmartScreenshot-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DHSmartScreenshot-umbrella.h"; sourceTree = ""; }; - F4618B6CE2DDE6778CAE0721D3322D31 /* UICKeyChainStore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICKeyChainStore-umbrella.h"; sourceTree = ""; }; - F515558612CF3F4389DAEB0FA237FF6B /* SBJson-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SBJson-dummy.m"; sourceTree = ""; }; - F5862181980ECA3CF8DD1EE7B49643D1 /* FLEXArgumentInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.h; sourceTree = ""; }; - F5C87263FE74B0C2FB6E9753E965C680 /* REMenuItemView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REMenuItemView.m; path = REMenu/REMenuItemView.m; sourceTree = ""; }; - F5F06426721B1F4E116E9EAC674B15C7 /* INTULocationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "INTULocationManager+Internal.h"; path = "LocationManager/INTULocationManager/INTULocationManager+Internal.h"; sourceTree = ""; }; - F60BDAA393F4B22881993108134A78FA /* APJob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APJob.m; path = Pod/Core/Public/Models/APJob.m; sourceTree = ""; }; - F611DBD348F74AEDC6F29D991F835D5F /* APContactBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactBuilder.h; path = Pod/Core/Private/Builders/APContactBuilder.h; sourceTree = ""; }; - F614DD58A7DB038D16DE033020A94B0D /* FLEXNetworkRecorder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkRecorder.m; path = Classes/Network/FLEXNetworkRecorder.m; sourceTree = ""; }; - F68347EE7279AA839ADA00FA7EAC8F82 /* NSFileWrapper+DTCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileWrapper+DTCopying.h"; path = "Core/Source/NSFileWrapper+DTCopying.h"; sourceTree = ""; }; - F6849EF8E598E378F7B02473FC6A90EB /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = ""; }; - F702AF0973CB2C1DAC792B14807153CE /* icon-error.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-error.png"; path = "Classes/Icons/icon-error.png"; sourceTree = ""; }; - F71B093A516957C2EF3A4D20CCE60753 /* AHKActionSheetViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AHKActionSheetViewController.h; path = Classes/AHKActionSheetViewController.h; sourceTree = ""; }; - F7516BD863149D036E44FBEA3D601D94 /* REMenuContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenuContainerView.h; path = REMenu/REMenuContainerView.h; sourceTree = ""; }; - F75639BE1F3F4F7217F65F7203D2A963 /* DTListItemHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTListItemHTMLElement.h; path = Core/Source/DTListItemHTMLElement.h; sourceTree = ""; }; - F7BF84DCA7AEE35EB88D3B6A8C1CBBE9 /* FLEXMultiColumnTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultiColumnTableView.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.m; sourceTree = ""; }; - F8048C686915AB3DFB1B6F55D1CCC118 /* DTIframeTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTIframeTextAttachment.h; path = Core/Source/DTIframeTextAttachment.h; sourceTree = ""; }; - F826EE4CBAA0AA591FF1541F320B0DE0 /* UIApplication+DTNetworkActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DTNetworkActivity.h"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.h"; sourceTree = ""; }; - F887D174CFC67DFDDB353FFC5AD1B5DF /* APSocialServiceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APSocialServiceHelper.m; path = Pod/Core/Private/Helpers/APSocialServiceHelper.m; sourceTree = ""; }; - F8BCB7F8EF4BB36051FAE00EE0873C48 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F912D2EBA8D178ED9CF9C0A47ABDAFD0 /* FLEXMultiColumnTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultiColumnTableView.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.h; sourceTree = ""; }; - F9502D6A65C237C3304C64BCFAA141F4 /* DTHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLElement.h; path = Core/Source/DTHTMLElement.h; sourceTree = ""; }; - F956B99B115045FDADA5A63BF3DD8F70 /* NSString+DTPaths.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTPaths.m"; path = "Core/Source/NSString+DTPaths.m"; sourceTree = ""; }; - F9C149D09C71D5544D050C4005FF0690 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F9C2CA7D82D98B83E258571835D0A7AF /* NSCharacterSet+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCharacterSet+HTML.m"; path = "Core/Source/NSCharacterSet+HTML.m"; sourceTree = ""; }; - FA2B93552EF93AE446B3386969889822 /* FLEXTableLeftCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableLeftCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.m; sourceTree = ""; }; - FA3ECD73E7E5CB18CCBD36C8341E00E4 /* FLEXDefaultsExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultsExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.h; sourceTree = ""; }; - FA4506ED74CD60F44DD3914DFF187A5F /* SWTableViewCell-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWTableViewCell-umbrella.h"; sourceTree = ""; }; - FA4A5AFF5147D4C1CD52645A96540193 /* DTHTMLParserNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserNode.h; path = Core/Source/DTHTMLParserNode.h; sourceTree = ""; }; - FA8C062D6B33A1D5AD268E7FDB3D6174 /* UIView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DTFoundation.h"; path = "Core/Source/iOS/UIView+DTFoundation.h"; sourceTree = ""; }; - FAF8F06C0A661799B747053260C6C36A /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = ""; }; - FB2C4A62DFAE43089712370F411B26AF /* APContact.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContact.h; path = Pod/Core/Public/Models/APContact.h; sourceTree = ""; }; - FB38B98E0E47111227A8C1AA9AE811E5 /* FLEXKeyboardHelpViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardHelpViewController.h; path = Classes/Utility/FLEXKeyboardHelpViewController.h; sourceTree = ""; }; - FB3C46DCE0A93092132E2534CC02C4AA /* APSocialServiceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APSocialServiceHelper.h; path = Pod/Core/Private/Helpers/APSocialServiceHelper.h; sourceTree = ""; }; - FB7D889D36CA71F37C9B6769F59AFE7B /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; }; - FB9FF78DB770E31BA12B5BE704980671 /* JDStatusBarStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JDStatusBarStyle.m; path = JDStatusBarNotification/JDStatusBarStyle.m; sourceTree = ""; }; - FBD94048BD51137B6E5EC72CCCCEE232 /* TDOAuth-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TDOAuth-prefix.pch"; sourceTree = ""; }; - FC02B14FB01A964E9E90E8009D0853E8 /* UIWebView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+DTFoundation.m"; path = "Core/Source/iOS/UIWebView+DTFoundation.m"; sourceTree = ""; }; - FC0C3835E53EB462BBCD8D9FAA8E1290 /* HMSegmentedControl-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HMSegmentedControl-umbrella.h"; sourceTree = ""; }; - FC0FD956DE6EA3F6C4DE1857C27E5342 /* scissor.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = scissor.png; path = IQAudioRecorderController/Resources/scissor.png; sourceTree = ""; }; - FC198B8BE79376D1BC8EF929BC01EC38 /* INTUHeadingRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = INTUHeadingRequest.h; path = LocationManager/INTULocationManager/INTUHeadingRequest.h; sourceTree = ""; }; - FC40571C470C456326DE286BB3D61C49 /* FLEXTableListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableListViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.h; sourceTree = ""; }; - FC8F0894C4EDA6BEE359D10E3178699D /* UITableView+DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+DHSmartScreenshot.h"; path = "Classes/UITableView+DHSmartScreenshot.h"; sourceTree = ""; }; - FC9C824683AA33003E4DCE90B4BCCB64 /* IQAudioRecorderConstraints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQAudioRecorderConstraints.h; path = IQAudioRecorderController/IQAudioRecorderConstraints.h; sourceTree = ""; }; - FD939EDE1F0367DE02BF9CE5253E40BD /* DTAnchorHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnchorHTMLElement.h; path = Core/Source/DTAnchorHTMLElement.h; sourceTree = ""; }; - FDB24ADE13239369C8C6C79BF5FC2E9A /* IQAudioRecorderController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQAudioRecorderController-umbrella.h"; sourceTree = ""; }; - FEB80AEF44D04D99D42714632D292AA5 /* NSDictionary+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTCoreText.m"; path = "Core/Source/NSDictionary+DTCoreText.m"; sourceTree = ""; }; - FEEDA2A91600AD02BFE521FF7379DC38 /* FLEXFieldEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorViewController.h; path = Classes/Editing/FLEXFieldEditorViewController.h; sourceTree = ""; }; - FF881926730C6DD9D8F4948FDB6D33FF /* DTListItemHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTListItemHTMLElement.m; path = Core/Source/DTListItemHTMLElement.m; sourceTree = ""; }; - FFCF648B809F47D95DCA03CD3926E604 /* FLEXRealmDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDefines.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDefines.h; sourceTree = ""; }; - FFD42AC426DDDAF6E8037B90C2ECD6C9 /* FLEXNetworkTransactionDetailTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionDetailTableViewController.h; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.h; sourceTree = ""; }; + E0CD6F97C2EE2C2B2F814C5861DAEE8C /* NSMutableString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableString+HTML.h"; path = "Core/Source/NSMutableString+HTML.h"; sourceTree = ""; }; + E0D86EB526105F4F0E76B9B466C3EDDA /* DTBlockFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBlockFunctions.h; path = Core/Source/DTBlockFunctions.h; sourceTree = ""; }; + E10FB53E01E8C852AC96BBAB7D1882C9 /* REMenu.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = REMenu.framework; path = REMenu.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E164EA220B21FC01642A157C4339A5F6 /* DTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVersion.m; path = Core/Source/DTVersion.m; sourceTree = ""; }; + E18D993D0CB98625E6A7F40C1F37B4C0 /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = ""; }; + E1C1F310A365377BC874C5C032FADE4D /* FLEXArgumentInputNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNumberView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.h; sourceTree = ""; }; + E2229DF58B134CF5A7CFD98896FE73B6 /* NSString+DTFormatNumbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTFormatNumbers.h"; path = "Core/Source/NSString+DTFormatNumbers.h"; sourceTree = ""; }; + E229D947F90783F93B55BE665D4E939D /* CYRToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CYRToken.m; path = CYRTextView/CYRToken.m; sourceTree = ""; }; + E25182F03FEACE4E6E9E38A5243E98C1 /* NSMutableArray+DTMoving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableArray+DTMoving.h"; path = "Core/Source/NSMutableArray+DTMoving.h"; sourceTree = ""; }; + E2783A5AE6822735BA77E5C1E937C691 /* audio_record@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "audio_record@2x.png"; path = "IQAudioRecorderController/Resources/audio_record@2x.png"; sourceTree = ""; }; + E2A69D40AE46D6DB5D1E0DD2337EE73F /* APAddressBook.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APAddressBook.m; path = Pod/Core/Public/APAddressBook.m; sourceTree = ""; }; + E2C4C79C0A7DABA88B3EFBF3D9BC75CE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E32EEA145DE8058FBA7AC629120C958A /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = AFNetworking.modulemap; sourceTree = ""; }; + E3C538A95BB762AB96240E4AEB3936DE /* FLEXDefaultEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultEditorViewController.m; path = Classes/Editing/FLEXDefaultEditorViewController.m; sourceTree = ""; }; + E4686A2C51D501851F1C8C8A1B11C53E /* FLEXImagePreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImagePreviewViewController.m; path = Classes/ViewHierarchy/FLEXImagePreviewViewController.m; sourceTree = ""; }; + E4689B56BE90BFC7C6F8AB6F5403DB1C /* NBPhoneNumberDefines.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NBPhoneNumberDefines.m; path = libPhoneNumber/NBPhoneNumberDefines.m; sourceTree = ""; }; + E4B862E7F7FD15E15262F77529380342 /* IQ_FDWaveformView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQ_FDWaveformView.h; path = IQAudioRecorderController/FDWaveformView/IQ_FDWaveformView.h; sourceTree = ""; }; + E54E46808BEE045D6570D56A1646728A /* DTLinkButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLinkButton.h; path = Core/Source/DTLinkButton.h; sourceTree = ""; }; + E639FB91B7A719EE8EDCE6A60285EA49 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; + E677C4C4661DCCF69DEC5274E3928AFC /* NSURL+DTComparing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTComparing.h"; path = "Core/Source/NSURL+DTComparing.h"; sourceTree = ""; }; + E67FEC507086C59AD08767B9B90C97BC /* MBProgressHUD.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MBProgressHUD.framework; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E71B0ACA2B30E4123D4661089B00114F /* APSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APSource.h; path = Pod/Core/Public/Models/APSource.h; sourceTree = ""; }; + E72DE113094FEB300850B7464FECE35B /* DTImage+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTImage+HTML.h"; path = "Core/Source/DTImage+HTML.h"; sourceTree = ""; }; + E7579B5CD6EDC544FF279129A9961977 /* JSCoreBom-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSCoreBom-umbrella.h"; sourceTree = ""; }; + E7CC7D6E818F3F128C1015ED2F2D74C9 /* CYRTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CYRTextView-umbrella.h"; sourceTree = ""; }; + E84301DE95218891F103B59C0D7BC095 /* scissor@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "scissor@3x.png"; path = "IQAudioRecorderController/Resources/scissor@3x.png"; sourceTree = ""; }; + E89E585F590A18027F9E61D85A07A683 /* icon-info@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "icon-info@2x.png"; path = "Classes/Icons/icon-info@2x.png"; sourceTree = ""; }; + E90E238562876143893C530D7D0A72BB /* MBProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.xcconfig; sourceTree = ""; }; + EA24AEC1E9D07B91245B3D0ADC3E562F /* DTStylesheetHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTStylesheetHTMLElement.m; path = Core/Source/DTStylesheetHTMLElement.m; sourceTree = ""; }; + EA2A57908C5C47CF0124C1A832AB67E2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + EA8C7313F87C5C66F2F6B617ADB45A99 /* RMActionController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RMActionController-umbrella.h"; sourceTree = ""; }; + EAFF32048AC640F63721A96CD250A86B /* FLEXUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXUtility.m; path = Classes/Utility/FLEXUtility.m; sourceTree = ""; }; + EB21730A715179C9142B59EF21BBB80D /* SBJson4StreamParserState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParserState.h; path = src/main/objc/SBJson4StreamParserState.h; sourceTree = ""; }; + EBDCB3EEA7B22317525E4C943C6FC3EC /* APName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APName.m; path = Pod/Core/Public/Models/APName.m; sourceTree = ""; }; + EC17319B4532C869AE8BBE3DE4830814 /* FLEXSystemLogMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogMessage.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.m; sourceTree = ""; }; + ECDA1015025D8FE3A1520F9912C82CBF /* IQAudioRecorderController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = IQAudioRecorderController.modulemap; sourceTree = ""; }; + ECECFD0C9E200A437BE64395814BBE28 /* SWLongPressGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWLongPressGestureRecognizer.m; path = SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.m; sourceTree = ""; }; + ED02686A4F4B9FD0BBF1BC30F9E2DDC7 /* SocketRocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketRocket.h; path = SocketRocket/SocketRocket.h; sourceTree = ""; }; + ED271B28633960B441ECFF85DA5A4BDF /* FLEXArgumentInputFontsPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontsPickerView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.m; sourceTree = ""; }; + ED3A91A60864A8FBC865360BA4D036AC /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; + EDB31D781CB10C17EB33B6775082A583 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = ""; }; + EDC414555B8CFF580AC5FB3A551F2EC8 /* stop_recording@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "stop_recording@3x.png"; path = "IQAudioRecorderController/Resources/stop_recording@3x.png"; sourceTree = ""; }; + EE170755AA3535A8539BA3D5BD59E9D7 /* DTVideoTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVideoTextAttachment.m; path = Core/Source/DTVideoTextAttachment.m; sourceTree = ""; }; + EE6D2A7B78F24830CD9F333893CB6D8A /* TDOAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = TDOAuth.modulemap; sourceTree = ""; }; + EEB4793808C0B98E7F0F252D815B57F9 /* UICKeyChainStore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICKeyChainStore-prefix.pch"; sourceTree = ""; }; + EEC8590E90B710885B6110381983F705 /* FLEXLibrariesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLibrariesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h; sourceTree = ""; }; + EF1663BDEE873A9D59EDA97E20EC3858 /* scissor.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = scissor.png; path = IQAudioRecorderController/Resources/scissor.png; sourceTree = ""; }; + EF784C8380A2530002D939DF373AA72F /* DTAnchorHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnchorHTMLElement.h; path = Core/Source/DTAnchorHTMLElement.h; sourceTree = ""; }; + EF8C2251138DD1E6F1DD451A1ECA3118 /* APEmail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APEmail.h; path = Pod/Core/Public/Models/APEmail.h; sourceTree = ""; }; + EFB7172085E1F7DC0070C963988BABB4 /* FLEXGlobalsTableViewControllerEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewControllerEntry.m; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.m; sourceTree = ""; }; + EFD56517E0783443CBE1C01627085520 /* REMenuContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REMenuContainerView.h; path = REMenu/REMenuContainerView.h; sourceTree = ""; }; + F055BF80AC18B8CC51BCE7CDB4F76A73 /* NSString+NSHash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+NSHash.m"; path = "NSHash/NSString+NSHash.m"; sourceTree = ""; }; + F09B4DA8484D8609323F6BF01D0B2989 /* FLEXImageExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImageExplorerViewController.m; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.m; sourceTree = ""; }; + F0ADA995936E9372F536C0626C973B1A /* IQCropSelectionBeginView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IQCropSelectionBeginView.h; path = IQAudioRecorderController/IQCropSelectionBeginView.h; sourceTree = ""; }; + F14FBC9CBF6B7F9831F381D3B13691DA /* INTULocationManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "INTULocationManager-dummy.m"; sourceTree = ""; }; + F247FC3E3BC89DCBED105E31B570D9B7 /* FLEXNetworkTransactionTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionTableViewCell.h; path = Classes/Network/FLEXNetworkTransactionTableViewCell.h; sourceTree = ""; }; + F2F70888C181A6733C9122EC984EBB03 /* Pods_Jasonette.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Jasonette.framework; path = "Pods-Jasonette.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + F32AC9B14ACAF04107AD0FB0B78A6BCD /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; }; + F32C527988899CB267DA1EFED016A6DA /* UIWebView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+DTFoundation.h"; path = "Core/Source/iOS/UIWebView+DTFoundation.h"; sourceTree = ""; }; + F340A9D9204009059FCB7A010BD997FC /* FLEXArgumentInputSwitchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputSwitchView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.m; sourceTree = ""; }; + F3F723596A55FE38FA845A78560B57D4 /* SocketRocket.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SocketRocket.modulemap; sourceTree = ""; }; + F49A7D5713AE62F90AF00904BECEFB22 /* input_stream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = input_stream.cpp; path = FreeStreamer/FreeStreamer/input_stream.cpp; sourceTree = ""; }; + F5049A3905DCE7B8C44BE7F0909F00A8 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.h; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.h; sourceTree = ""; }; + F517F7480D96916528F8CF9663290D46 /* DTCoreText-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DTCoreText-umbrella.h"; sourceTree = ""; }; + F5271B6CED74CCFB9FCF54DC2C447BA3 /* AHKActionSheet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AHKActionSheet.m; path = Classes/AHKActionSheet.m; sourceTree = ""; }; + F590A048DBD51A1CC8C7BB72383B4D8C /* JDStatusBarNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JDStatusBarNotification-prefix.pch"; sourceTree = ""; }; + F5A7C04DC4A039F581DDD97E8A87CE98 /* OMGHTTPURLRQ-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OMGHTTPURLRQ-dummy.m"; sourceTree = ""; }; + F5AC0EBA89145E834FDD462E1E371946 /* RECommonFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RECommonFunctions.h; path = REMenu/RECommonFunctions.h; sourceTree = ""; }; + F5D49FF92C639962C7585F2A12CF31D5 /* APContactListBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APContactListBuilder.h; path = Pod/Core/Private/Builders/APContactListBuilder.h; sourceTree = ""; }; + F60AF1CB36F20C08FA23C1E8CEFB7830 /* microphone_access@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "microphone_access@3x.png"; path = "IQAudioRecorderController/Resources/microphone_access@3x.png"; sourceTree = ""; }; + F62AEEAD3EA1439130930CD5E5F92414 /* id3_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = id3_parser.h; path = FreeStreamer/FreeStreamer/id3_parser.h; sourceTree = ""; }; + F65C240F7969553E416486C1BA83B32D /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + F6DA1D2798AB54B3494C7E09860031F9 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; + F6E24FC69B6876DD5DA8F7E90AE4D7B3 /* DTCoreTextConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextConstants.h; path = Core/Source/DTCoreTextConstants.h; sourceTree = ""; }; + F7202715B80704054230DD0D2E9CA608 /* NSString+DTFormatNumbers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTFormatNumbers.m"; path = "Core/Source/NSString+DTFormatNumbers.m"; sourceTree = ""; }; + F7417F40EF0DD36D675E18488C540CA3 /* OMGUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OMGUserAgent.h; path = Sources/OMGUserAgent.h; sourceTree = ""; }; + F77126AE85DF1A6E1549D9C7DB4461A9 /* APRelatedPerson.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APRelatedPerson.m; path = Pod/Core/Public/Models/APRelatedPerson.m; sourceTree = ""; }; + F795A93F453D6E0112FC448E7033D554 /* NBPhoneMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBPhoneMetaData.h; path = libPhoneNumber/NBPhoneMetaData.h; sourceTree = ""; }; + F79736AAD733083A330A63AF2AB3ACD2 /* FLEXIvarEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXIvarEditorViewController.m; path = Classes/Editing/FLEXIvarEditorViewController.m; sourceTree = ""; }; + F7FF83FB8AFFC070F4DF7B478A211C5E /* JSCoreBom-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSCoreBom-prefix.pch"; sourceTree = ""; }; + F866CFDA767FFDCB7DA39BEEEF9D872A /* DAKeyboardControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DAKeyboardControl.m; path = DAKeyboardControl/DAKeyboardControl.m; sourceTree = ""; }; + F86EA900EDE55310A20FFD48A3574A0C /* SBJson.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SBJson.framework; path = SBJson.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F897AFD78684456027218D3854C15F18 /* FLEXRuntimeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRuntimeUtility.h; path = Classes/Utility/FLEXRuntimeUtility.h; sourceTree = ""; }; + F91D4BF82608B4FAA444A52314BE47C8 /* FLEXNetworkTransactionTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionTableViewCell.m; path = Classes/Network/FLEXNetworkTransactionTableViewCell.m; sourceTree = ""; }; + F9997C1F55EC31E855B89E64FF136150 /* DTHorizontalRuleHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHorizontalRuleHTMLElement.h; path = Core/Source/DTHorizontalRuleHTMLElement.h; sourceTree = ""; }; + F9B03EBC7B36FF31130876471B531990 /* FLEXHeapEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHeapEnumerator.m; path = Classes/Utility/FLEXHeapEnumerator.m; sourceTree = ""; }; + F9BD07D24EA910E09C8AAADF07C1D9C8 /* PHFComposeBarView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PHFComposeBarView.xcconfig; sourceTree = ""; }; + F9CCE8039F770F6070CA7EC0A3D6BE35 /* FLEXRealmDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDefines.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDefines.h; sourceTree = ""; }; + FA016541B294EBBAC0E00265B46FD94C /* PHFComposeBarView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PHFComposeBarView-dummy.m"; sourceTree = ""; }; + FA3493ECA00D2EC4E2AF64FE79E9B734 /* LTHPasscodeViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LTHPasscodeViewController.framework; path = LTHPasscodeViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FAB0D13D52566E1F13D5D9BE60E81396 /* SWLongPressGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWLongPressGestureRecognizer.h; path = SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.h; sourceTree = ""; }; + FB613D5DAB632D6583BC75B72323CA4F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FC16B784236156D246DC5BC09E716CBE /* DTAnimatedGIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnimatedGIF.h; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h; sourceTree = ""; }; + FC29ADB4D94CCA5D79D4FF34E96DA11B /* APAddressBook.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = APAddressBook.xcconfig; sourceTree = ""; }; + FC33C1D4AE5B2A6566C821120002E197 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FC6C9C4A05B31B04D4737CE571B00274 /* APImageExtractor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APImageExtractor.m; path = Pod/Core/Private/Extractors/APImageExtractor.m; sourceTree = ""; }; + FC6CC0895E4CCE79698FCD4BB3BA70DF /* APSocialProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APSocialProfile.h; path = Pod/Core/Public/Models/APSocialProfile.h; sourceTree = ""; }; + FCA0B1D9025BA909439CBCCBD49F7959 /* file_output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_output.h; path = FreeStreamer/FreeStreamer/file_output.h; sourceTree = ""; }; + FD5B4C35B95C35021BC039BD4681A02F /* SocketRocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SocketRocket-prefix.pch"; sourceTree = ""; }; + FD88AA4ED06CEA7929F61C043170F80E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FD8C785533292F63211C1D52D42F36D3 /* FLEXArrayExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArrayExplorerViewController.h; path = Classes/ObjectExplorers/FLEXArrayExplorerViewController.h; sourceTree = ""; }; + FDC402C46DD8863A85404BE4ED4045CA /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + FDFD1AE3EB07DE346341F732901CEBD5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FE41931EA44ADD1B9573324BFC188D6A /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = ""; }; + FE487F298F6F6CC1C1D04CC2E0995237 /* NBMetadataHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NBMetadataHelper.h; path = libPhoneNumber/NBMetadataHelper.h; sourceTree = ""; }; + FE4EA1F513266F2809CB2476652EBAC2 /* TWMessageBarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TWMessageBarManager-dummy.m"; sourceTree = ""; }; + FE8D90DE6B2B11B29511B3D835D1C7D8 /* DHSmartScreenshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DHSmartScreenshot.h; path = Classes/DHSmartScreenshot.h; sourceTree = ""; }; + FF0FF702957B1B7F60E84646B51986E6 /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; + FF35FD574461FBEB569EB1DA54C2616B /* UIFont+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DTCoreText.h"; path = "Core/Source/UIFont+DTCoreText.h"; sourceTree = ""; }; + FFB23751BF316320B574D1556D3E7385 /* FLEXNetworkHistoryTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkHistoryTableViewController.m; path = Classes/Network/FLEXNetworkHistoryTableViewController.m; sourceTree = ""; }; + FFC32087DD1757D089FE0CEEBFC310E9 /* DTCoreText.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DTCoreText.framework; path = DTCoreText.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FFCBCEAD82508B6CAE5F3EB8A7C01D6A /* SBJson4StreamParserState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParserState.m; path = src/main/objc/SBJson4StreamParserState.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 0AFF1245FC8193B44BFC53298C9433FE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 75438EDB74A9610A2EBD948818C000F6 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0C4D71E9A694783861A7F249A1D396DD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2229,6 +2249,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1048B3573DD94516D651C5D3A09FDBA8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4A7607B042190915659DA12D63512466 /* Foundation.framework in Frameworks */, + 90B2B25EB434729F9364E92DDC5B5C62 /* ImageIO.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 12B5DEC77AE23BCD924613A0E64C9F6B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7892E8EB8A93E46E46F5878A55B31E07 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1706571930CAAF4C3990F472F77AF4FF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2267,6 +2304,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2E1747DC9C37ABDAAEC142A36D374F49 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7D74C1E76C060BE257D3FB59C0D1FB5D /* Foundation.framework in Frameworks */, + 37EAA795D67DCFB6CC58ED2EEA225592 /* QuartzCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 318161A821E27744ECBDAD35D76FA987 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2276,6 +2322,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 388B963DC41D0DE562C8A9A5A3BD5E62 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5B31EC5CE021085D4D1E032F44E8B263 /* Foundation.framework in Frameworks */, + 37D7A61F2CADD2523B198FD019023671 /* OMGHTTPURLRQ.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3EF88D050E31367143304CC3EFFCE15E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2324,6 +2379,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4C8DB79252C2F422676B8EFCF29A79FC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DDF2BCA53C99EB1F7105C68960521D2D /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 530E486AF202126BAA222644E52A557F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2332,6 +2395,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 56C871D430389B297A7A2A0D4A313D18 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8AECA01A5ED01585243E84FD4B55DA02 /* Foundation.framework in Frameworks */, + 6B8C732C94D0CB6A0AA0D8A3C2805432 /* QuartzCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 57F44911563C03EE01D7E49B4C1F0D0A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2344,38 +2416,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5EB7C62F2498E970511002E928816CA7 /* Frameworks */ = { + 64BF104C90D8CCBE7187477A60DB2754 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0FEA4584B14641DF2DB60F5BDEFEDDCC /* Foundation.framework in Frameworks */, - 0880FB10FF585D07C1C7D689070B6C29 /* ImageIO.framework in Frameworks */, + BD9B1F791B60C09167FE0AAD32F58A95 /* Foundation.framework in Frameworks */, + 6329F1D371133E1CF406F2BF0A2E4921 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5FF9A10859489516D80E491DBC203F94 /* Frameworks */ = { + 6716169DB3F454597F4A98DAD75B13D8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 918F1678F16678E3DD6EE39F1F712613 /* Foundation.framework in Frameworks */, - D3B77D5F3AF931CDB3E24F9EB30C86B8 /* Security.framework in Frameworks */, + EC7E789DA93764D061C5D7AE6A770FDD /* CoreText.framework in Frameworks */, + CD3B6080D83FF03FDEA2BA262492C049 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6716169DB3F454597F4A98DAD75B13D8 /* Frameworks */ = { + 6DFD02E99A22D17E81A84A6725959B2B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EC7E789DA93764D061C5D7AE6A770FDD /* CoreText.framework in Frameworks */, - CD3B6080D83FF03FDEA2BA262492C049 /* Foundation.framework in Frameworks */, + AFBA4A5EBE2519265805AF7AFF0357E9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6DFD02E99A22D17E81A84A6725959B2B /* Frameworks */ = { + 7AC5C4682FF713D8E07D46D9683446E8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AFBA4A5EBE2519265805AF7AFF0357E9 /* Foundation.framework in Frameworks */, + D74AA782CF98EAF1D26F585CED8952B6 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2397,24 +2468,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 85E132176C46F796FA419981C7FD8EC8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 3458AA64705094FF171A786EA09035C9 /* Foundation.framework in Frameworks */, - 35F4D770534938A92746138FD72030F5 /* RMActionController.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8FFF0ECA8A6C5704A2A5870B514CD737 /* Frameworks */ = { + 8254B084D17792BF3E609496F3ABEF51 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C8488DF664D9CA3052498FB3F8860B65 /* CoreGraphics.framework in Frameworks */, - 33069F6A6CE23D82E811EA1EF9598E19 /* CoreText.framework in Frameworks */, - 97D36B66681871743081A949E7545D88 /* Foundation.framework in Frameworks */, - 55F07E653B48359C2980DA712D38EDAA /* QuartzCore.framework in Frameworks */, - F70FCAD824BC04D9295D742EEDA2A69F /* UIKit.framework in Frameworks */, + 25C930BB76F3136080E34252AFC3F0C8 /* CoreGraphics.framework in Frameworks */, + 271C2DCB59BEFC4391C0412DE0C75B55 /* Foundation.framework in Frameworks */, + 0C8558E2CE6B6A3A883FA0627FCB4C5B /* QuartzCore.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2426,11 +2486,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 954161D8E0430ECDDA119C5D20C99637 /* Frameworks */ = { + AF0A07D884EE8F6CA1D135FB8A4DF43A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EBC89C673C5DD9CC48D4B9619523435E /* Foundation.framework in Frameworks */, + 3111BE400FE649BCDA1F9E99BE0D85D9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2444,12 +2504,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C7038268E75A948889BEED156258E49D /* Frameworks */ = { + C1E942703DB7DB87E54E8521A51FA8A3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 511CD2877F82A4D2FA1FFC2398E48C9C /* Foundation.framework in Frameworks */, - 16B3110415CB468DD256F3BBD951B475 /* QuartzCore.framework in Frameworks */, + D399DF6A4B1DA64F1C112062CFBB42C1 /* Foundation.framework in Frameworks */, + 6554DA670C741EA9617D9DAADF415A0E /* RMActionController.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2463,11 +2523,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CDE8C93142E2C361D1B03E565E128713 /* Frameworks */ = { + CBB93E43166098CEB7983C3BF4F3F369 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D69C576C26D432618430198270E27A50 /* Foundation.framework in Frameworks */, + F7DE2477FE58D6E309F8EC55A5310FF1 /* CoreGraphics.framework in Frameworks */, + D99938E6F80DADE147590B3C2D8E2269 /* CoreText.framework in Frameworks */, + 82CADD92D00B2824248BE05EC4FEF59F /* Foundation.framework in Frameworks */, + C2599F73C78298B87083ED5A34C6E761 /* QuartzCore.framework in Frameworks */, + C006B3A4CE7185B2B1C154CA66BB5456 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2480,34 +2544,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CF31C11EDD53C323BA24F939AB75125E /* Frameworks */ = { + D4A103721DA65913D8B568CE41C20D0E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0E6294102F8325A5396CA8B7942DB45A /* CFNetwork.framework in Frameworks */, - B38386E32527BC54F0F1910B08451130 /* Foundation.framework in Frameworks */, - 19D65AC2E3C1F7E972E64BF6A42C5A47 /* Security.framework in Frameworks */, + 4DD110322F45272F05F40D1E04225A92 /* AVFoundation.framework in Frameworks */, + D1F5DDEB8531305E008FD4E495FF5047 /* Foundation.framework in Frameworks */, + 9396A049E3CDB24CE8208655AC29824F /* SCSiriWaveformView.framework in Frameworks */, + 86C11EDC710D9D5EE0584833105B9E53 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D4A103721DA65913D8B568CE41C20D0E /* Frameworks */ = { + DA09E66E3F23C3588E01C232EA3F4CE6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4DD110322F45272F05F40D1E04225A92 /* AVFoundation.framework in Frameworks */, - D1F5DDEB8531305E008FD4E495FF5047 /* Foundation.framework in Frameworks */, - 9396A049E3CDB24CE8208655AC29824F /* SCSiriWaveformView.framework in Frameworks */, - 86C11EDC710D9D5EE0584833105B9E53 /* UIKit.framework in Frameworks */, + C94BE3440C19241233B45A916920D07D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - DBB6DF3147D0DB1105A98C5EC79F76DA /* Frameworks */ = { + DB065706FFDFC653237B7BEE25E6BEB4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8921B962F49EADA7C697F9048FACC839 /* CoreGraphics.framework in Frameworks */, - 986B417FF4B94DBF2D059BC7986F6B10 /* Foundation.framework in Frameworks */, - DC2A2235BDD2A1ED7E38BFFC83AAF216 /* QuartzCore.framework in Frameworks */, + 0AB81D1D16C62C3714F29189B870DD8E /* CFNetwork.framework in Frameworks */, + 97CA809BF014ED935D8C26B16B52C445 /* Foundation.framework in Frameworks */, + 54BEEAF0C1B5B8C7620C94DBB628795D /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2530,14 +2592,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E3C908A372FE2D242216C788B0908D57 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 2778E912D1B2CFDBAE5865A151A7F6CE /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; EE3C470242D5E1F4DF33AB9E85E7B31C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2546,35 +2600,42 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F46CF6B8265C85E2200FF86C6BD33499 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - FBA3A15BDD556EDFD1CB0771689F1BDB /* Foundation.framework in Frameworks */, - B69FEE6B6EF4C27FAEC2F5146DE271D1 /* OMGHTTPURLRQ.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F81EAA85B3DCCAECF7D155FAF997A1C4 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - C300C738C16B9BCACA15236DDD543FAC /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FE839DF9290F7A57389B0B8294B226D5 /* Frameworks */ = { + F0A3186F00B6D24486223E17D19AD561 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 30396F1D77DA38FB2AEC39F4262251A8 /* Foundation.framework in Frameworks */, - FB42B0A16A90A5ABDBE6DB6F67CE7AE3 /* QuartzCore.framework in Frameworks */, + 2252122E2688E75B741140A8C9A10410 /* Foundation.framework in Frameworks */, + 90878E3F82D2F47845779CD26E4B3BD3 /* QuartzCore.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 0139B3ECF2122EAEF227228A7759D7A1 /* SBJson */ = { + isa = PBXGroup; + children = ( + 59B67B04AD3EA88328409190784CEF75 /* SBJson4.h */, + C6915EC5581399F6D8174CCB3C1F64E3 /* SBJson4Parser.h */, + 2CC92408710C4E25EF2925B2848A3FB3 /* SBJson4Parser.m */, + A464BA27CF561E1F6D8E5AD19C3D1847 /* SBJson4StreamParser.h */, + 73055FEF723FE60F7B917343BDAF58CB /* SBJson4StreamParser.m */, + EB21730A715179C9142B59EF21BBB80D /* SBJson4StreamParserState.h */, + FFCBCEAD82508B6CAE5F3EB8A7C01D6A /* SBJson4StreamParserState.m */, + 774B8E8D3CD7AFD6AFCEBF41C10143E0 /* SBJson4StreamTokeniser.h */, + 227D5DD5A928518CA5266F2CEA3B1A00 /* SBJson4StreamTokeniser.m */, + 40538D7A6C75856324C4D75AF6CF2F01 /* SBJson4StreamWriter.h */, + 53D01632E07765E0EA5A975EFA674F85 /* SBJson4StreamWriter.m */, + 6140F4E1C03D176938B896ACE66D6106 /* SBJson4StreamWriterState.h */, + A4A72C8F0744BF0817294DEC749F6092 /* SBJson4StreamWriterState.m */, + CC77D45A652C70665A3BC5583DF80E6F /* SBJson4Writer.h */, + A2B40BFB1C139F80E7E3A9898173ABBA /* SBJson4Writer.m */, + 1A391173A50373513BC591B10BB47E1A /* Support Files */, + ); + name = SBJson; + path = SBJson; + sourceTree = ""; + }; 038683660677F413F08930768FEC48BE /* iOS */ = { isa = PBXGroup; children = ( @@ -2598,877 +2659,970 @@ name = iOS; sourceTree = ""; }; - 052D14CCA786D0915CD64C3C0AD1CDD7 /* AFOAuth2Manager */ = { + 03AF744A45EE332B81C9E6BF517EFA08 /* Products */ = { isa = PBXGroup; children = ( - 7129E23F534DF026A9B1E84A95154478 /* AFHTTPRequestSerializer+OAuth2.h */, - EEAA5344180DFB4E2307FFB4D452B78A /* AFHTTPRequestSerializer+OAuth2.m */, - 7BCCECF810CA5117F18A62479460DA37 /* AFOAuth2Manager.h */, - 040E201D23C3272382C725C339A9E191 /* AFOAuth2Manager.m */, - 4AD1D507A4AD1ECD578735A89277F610 /* AFOAuthCredential.h */, - 15B07FF1E06C53DCB8B217AA9478784B /* AFOAuthCredential.m */, - C975E2157727365F91391331C4D38ADF /* Support Files */, + 22C3BC44E291AC8290C1025B56A0C2B1 /* AFNetworking.framework */, + ACFF899962289554684873F033F076C1 /* AFOAuth2Manager.framework */, + AB5992C435FE0DDE1DCE18D2AF53B2AF /* AHKActionSheet.framework */, + 24C64E7E0E0C692506D03BDB25C80D12 /* APAddressBook.framework */, + 2BC38246453207C4BC952E92A1B81612 /* BBBadgeBarButtonItem.framework */, + C2B3FB6F944236ED0BE18BF803F7E110 /* CYRTextView.framework */, + A3B962619B145DF4AE167BFD789B2975 /* DAKeyboardControl.framework */, + 7588E258E7A2CCF87E6A64BF45459BDB /* DHSmartScreenshot.framework */, + FFC32087DD1757D089FE0CEEBFC310E9 /* DTCoreText.framework */, + A08F935B263CA1F8086CA56C2BC11A30 /* DTFoundation.framework */, + 4687DC0E23C3EEF3D1FFD4751A637934 /* FLEX.framework */, + 79FC959DE2DA5B4F10D1211077E8B6A9 /* FreeStreamer.framework */, + 2C664D53EF93F49DB4D9187E68434B68 /* HMSegmentedControl.framework */, + D5D4ADC447704F2B782925706F02E9B7 /* INTULocationManager.framework */, + 318AC96F65E92654A559010326F10CC1 /* IQAudioRecorderController.framework */, + 9B48A396A11DD13EFDF053F7B5D1B7C4 /* JDStatusBarNotification.framework */, + 044F1AF47DE76EA6A7D490AA60887169 /* JSCoreBom.framework */, + D25F9981DE31A17093A865BA422E7F0F /* libPhoneNumber_iOS.framework */, + FA3493ECA00D2EC4E2AF64FE79E9B734 /* LTHPasscodeViewController.framework */, + E67FEC507086C59AD08767B9B90C97BC /* MBProgressHUD.framework */, + 3BE2C2EBA25294E08BE7C64C322A1821 /* NSGIF.framework */, + 9756CEF37C77ECE3DF468F4976C4C0EA /* NSHash.framework */, + A4464F1215D4F889A413F33137891B84 /* OMGHTTPURLRQ.framework */, + 33DD6B0BCC1B0F7BF6005B962201F12B /* PHFComposeBarView.framework */, + 5F4395C805E2381CCF475591B581F935 /* PHFDelegateChain.framework */, + F2F70888C181A6733C9122EC984EBB03 /* Pods_Jasonette.framework */, + 25ADA179F3FBB7D731411672C455E934 /* Reachability.framework */, + E10FB53E01E8C852AC96BBAB7D1882C9 /* REMenu.framework */, + 6FBB70CC8091E31DE0EF4D2303B04AED /* RMActionController.framework */, + 0E3885EA2F6F8EA79A02507145466453 /* RMDateSelectionViewController.framework */, + F86EA900EDE55310A20FFD48A3574A0C /* SBJson.framework */, + 5F54A11147FF594982DCD0AC1CB65DCD /* SCSiriWaveformView.framework */, + BAABE92869F0FA30852EFA9A97A616A9 /* SDWebImage.framework */, + B060A1506CC8105CBE99FF479A7D2EC7 /* SocketRocket.framework */, + CDE63C774E3CBF609B78DD0E8EFB8F8D /* SWFrameButton.framework */, + A0C163C09E52CBCF25E87CE2B9C25D2C /* SWTableViewCell.framework */, + 754CBE266AAD49734BB47252C58F72F3 /* SZTextView.framework */, + A3FFA46193FE1A393FCCFFF010090BA2 /* TDOAuth.framework */, + 6E97B8040DC7F1C9A1F2E67333D73785 /* TTTAttributedLabel.framework */, + 12CFE418593A5798C672D683464B13AC /* TWMessageBarManager.framework */, + B2A88DFC8A7171C464E1ACB6ED728482 /* UICKeyChainStore.framework */, ); - name = AFOAuth2Manager; - path = AFOAuth2Manager; + name = Products; sourceTree = ""; }; - 06C8C60BD58FBF9036D3D41B9D1E4BBA /* SBJson */ = { + 03FDDFA0405E9C36E4A408E7BBE37F49 /* Support Files */ = { isa = PBXGroup; children = ( - DF8063FC00D3DB3442CC23570D673640 /* SBJson4.h */, - 8AC44CECF70790D37C22523906367E3F /* SBJson4Parser.h */, - A36C1B435B31C47A8F7343B0C44D8790 /* SBJson4Parser.m */, - 704EEC7FBA274F537A1B0E3C305E5C17 /* SBJson4StreamParser.h */, - C85DAE33A03BD5102DF3D846DAACBCE7 /* SBJson4StreamParser.m */, - A66ADEF14976B895DE158CC7DD17364D /* SBJson4StreamParserState.h */, - 2F3A29D517A509432DECC20B35DF20EB /* SBJson4StreamParserState.m */, - 1ED9F9D880CBDF43B4A25BBA65E0B2A0 /* SBJson4StreamTokeniser.h */, - AE945A64D9FBE9DBBDEE2781AD93D6B6 /* SBJson4StreamTokeniser.m */, - 0895CE05DDD499C7B964F366FE26BD30 /* SBJson4StreamWriter.h */, - C3B1AE78637D96133F130F3A87E71AEC /* SBJson4StreamWriter.m */, - 1D8A700A314F421755581AC645CF78C2 /* SBJson4StreamWriterState.h */, - 3D9E80964F6946FAB689136FAB915E42 /* SBJson4StreamWriterState.m */, - C1141995EFFC299563004C77BBF9E951 /* SBJson4Writer.h */, - E0CC91A25A4475B540128A157C993B23 /* SBJson4Writer.m */, - 68F2A66855F7835E8B52CD108CBD74F8 /* Support Files */, + 6ECD11811F2CF00820E04D708BC691C6 /* DHSmartScreenshot.modulemap */, + 9125EF612DB308ED314686BAFA49024B /* DHSmartScreenshot.xcconfig */, + DE10D61E5F491F48E2316DC3E3DE6250 /* DHSmartScreenshot-dummy.m */, + 41ADEB07384342BC20826DCAB6E93402 /* DHSmartScreenshot-prefix.pch */, + 852B8B3801D70BF5A93BCEC0E7ABCA26 /* DHSmartScreenshot-umbrella.h */, + 06FA7E2DC52A78D8518427E023ACA843 /* Info.plist */, ); - name = SBJson; - path = SBJson; + name = "Support Files"; + path = "../Target Support Files/DHSmartScreenshot"; sourceTree = ""; }; - 0904AC7EC02814224BC0870D25D0AB3C /* SWFrameButton */ = { + 0418287118AA4DA0806CC83B03511234 /* Support Files */ = { isa = PBXGroup; children = ( - 758DF3327724F761D9A897292724B2DF /* SWFrameButton.h */, - 5DBABFC70BDB54438E010E1587B30256 /* SWFrameButton.m */, - 2E87529B3E4361812D26EA01CD933E0F /* Support Files */, + 67369E27045899246642D480355D1F6C /* Info.plist */, + C7B8C58FB9A762A66E4037F19C8C405A /* NSHash.modulemap */, + A45F765165229B44FE6A4E21E7F03827 /* NSHash.xcconfig */, + B93CA6C64630D1F1163C1342CDFAED8E /* NSHash-dummy.m */, + 88860CF95D040E4A3B67CB57285C74D2 /* NSHash-prefix.pch */, + 91411F5984FE0F8A33132B7067035872 /* NSHash-umbrella.h */, ); - name = SWFrameButton; - path = SWFrameButton; + name = "Support Files"; + path = "../Target Support Files/NSHash"; sourceTree = ""; }; - 0B2B0F55AC4C8E37C14B5EC4E95E6DCF /* Security */ = { + 0440B673F8FD23184FBE414887658E9E /* Support Files */ = { isa = PBXGroup; children = ( - 8EB75F3F7FB496FF22E1A5646F2B1F18 /* AFSecurityPolicy.h */, - 28AA7C43FA138C28D6378B41B95B04F1 /* AFSecurityPolicy.m */, + E32EEA145DE8058FBA7AC629120C958A /* AFNetworking.modulemap */, + 3F969855692D534905BAFB22862D5DCC /* AFNetworking.xcconfig */, + CFAAE2270285D5E03C9B0CFB801978A6 /* AFNetworking-dummy.m */, + 6AA8E71A75FB455C2D075FC25CD83B97 /* AFNetworking-prefix.pch */, + 7A07410484672352B55F846C72F00E41 /* AFNetworking-umbrella.h */, + 7FCDB4C83C9D79AADCD295EB518C4B96 /* Info.plist */, ); - name = Security; + name = "Support Files"; + path = "../Target Support Files/AFNetworking"; sourceTree = ""; }; - 1043729DF769A5D50D5743A2EB537CDB /* UICKeyChainStore */ = { + 0509E71F4002A8739DF278F55EBC3906 /* Support Files */ = { isa = PBXGroup; children = ( - B25C0CD0E371D63BB7ABB437B01F618D /* UICKeyChainStore.h */, - E8DA5545B8CF42C26A1FDD12668E9B45 /* UICKeyChainStore.m */, - D97ADD837588D283E4530F0B64E245EC /* Support Files */, + 7CBA1160118ECCD015D40434E6729D8B /* AFOAuth2Manager.modulemap */, + 12351F6D22B6F911A34F3E8D380B83BE /* AFOAuth2Manager.xcconfig */, + 577BE5141CDF425661D1B2324A51AFF2 /* AFOAuth2Manager-dummy.m */, + 2059F1F5054EF62645F91368C0071C99 /* AFOAuth2Manager-prefix.pch */, + 5D42C560F8D879AC83E4CFC77B6EA387 /* AFOAuth2Manager-umbrella.h */, + 452C6FB325C146DC6C494492D22EBE9D /* Info.plist */, ); - name = UICKeyChainStore; - path = UICKeyChainStore; + name = "Support Files"; + path = "../Target Support Files/AFOAuth2Manager"; sourceTree = ""; }; - 13366EE734029FF0783446F36568D440 /* JDStatusBarNotification */ = { + 05274CC953CCEE56D45344019CD50614 /* IQAudioRecorderController */ = { isa = PBXGroup; children = ( - 0549E8B30812A37F8080094C051355C2 /* JDStatusBarNotification.h */, - F289BFD2091C990A337DF56C6878AEF4 /* JDStatusBarNotification.m */, - 8583FFA08DD9B9FB1EBDD5EE7D493DF8 /* JDStatusBarStyle.h */, - FB9FF78DB770E31BA12B5BE704980671 /* JDStatusBarStyle.m */, - 0ADB171941808C54FB2633916A17D08C /* JDStatusBarView.h */, - D4CEC3362541FF919AB84A5783341BDE /* JDStatusBarView.m */, - 3FE354C3381AA7DE5E5575C3048BA40A /* Support Files */, + E4B862E7F7FD15E15262F77529380342 /* IQ_FDWaveformView.h */, + C4040355D4B12AE84625DD2DA8FDF112 /* IQ_FDWaveformView.m */, + 92AFA61C780E4397C0E70A3C7DE6F3D9 /* IQAudioCropperViewController.h */, + BB84FF09CC0E216C1825A88D09D95498 /* IQAudioCropperViewController.m */, + 200CD411BF1E3958D4D64985F2540496 /* IQAudioRecorderConstraints.h */, + 2EFFA87876839553ADA5F9F992BE792D /* IQAudioRecorderConstraints.m */, + A6D7D45A0889F87D57FFB31B36BFAA34 /* IQAudioRecorderViewController.h */, + 5D8E2FC15A1725A98A47D7FD116832C5 /* IQAudioRecorderViewController.m */, + F0ADA995936E9372F536C0626C973B1A /* IQCropSelectionBeginView.h */, + 07F72CCAC5B024234CB3D9359D2ED3F0 /* IQCropSelectionBeginView.m */, + BC277DD0E1231F39F5D544C7A2B6A66E /* IQCropSelectionEndView.h */, + 378DFD4B9D7DA2F44BC1E8DC74D52B9F /* IQCropSelectionEndView.m */, + 1EFBF095FAFB0C824AFA9365E9ABC67A /* IQCropSelectionView.h */, + 570F6313A29B7889ACE2DC9BC076C546 /* IQCropSelectionView.m */, + 23679312AADD262F7CF07411A204017F /* IQMessageDisplayView.h */, + C924AA1E3318EE8179F3548ADA891EB1 /* IQMessageDisplayView.m */, + AA26D99A2BEADE031C12F913E0E034A3 /* IQPlaybackDurationView.h */, + 330E31FFD6A2FF724199EA533BF0D252 /* IQPlaybackDurationView.m */, + 24EE5115B68DEC24DAE20AD5A076BDFF /* NSString+IQTimeIntervalFormatter.h */, + 8826972403B42878B05A692A96BB11E6 /* NSString+IQTimeIntervalFormatter.m */, + 463E97F41430097929570E8B2915874F /* Resources */, + 653C2CF44C6A54ACF996C64251C1DD67 /* Support Files */, ); - name = JDStatusBarNotification; - path = JDStatusBarNotification; + name = IQAudioRecorderController; + path = IQAudioRecorderController; sourceTree = ""; }; - 161F49684D507C3CFA9FADD12A1AE6AC /* FLEX */ = { + 05F8966C1F2E9D6BAE8EAB18954F63D3 /* Support Files */ = { isa = PBXGroup; children = ( - BB5632286EF0DF48ECD3EEEF2DC2B136 /* FLEX.h */, - 9908C2883AF7DCC2AC6E02405487FECD /* FLEXArgumentInputColorView.h */, - C3D27F3FB22C2404ED7F118DF9C1A6CD /* FLEXArgumentInputColorView.m */, - 89F85D5C97DE5ED582AF5864C9BB528B /* FLEXArgumentInputDateView.h */, - B5DD7A9987F37BF04D3F5C1E6DE2DD3D /* FLEXArgumentInputDateView.m */, - ECB202715DA2D960A8010216C1580CAD /* FLEXArgumentInputFontsPickerView.h */, - 5933DC083FA7DA265179CEA5D8FF1571 /* FLEXArgumentInputFontsPickerView.m */, - B8C76C4535C08639F299673C2C3BC033 /* FLEXArgumentInputFontView.h */, - A982AB3D0CD15A5285DE77C49BC3B2A8 /* FLEXArgumentInputFontView.m */, - 5D06EBA5A187145C3218D80A884D2F75 /* FLEXArgumentInputJSONObjectView.h */, - 08940494FC681FDF38E8AD6BF49997FB /* FLEXArgumentInputJSONObjectView.m */, - 38B34D066023DCA4803DAA393C26BBCC /* FLEXArgumentInputNotSupportedView.h */, - EC2E29A9B88B9164411BC9F3311DDD98 /* FLEXArgumentInputNotSupportedView.m */, - 0CD600B2CAF750077BE9ABB830D9473A /* FLEXArgumentInputNumberView.h */, - 75EFBDEAEAAD197E5E9E2B071F48ED0F /* FLEXArgumentInputNumberView.m */, - 283ED54E0D4F086AA2DE16665981244C /* FLEXArgumentInputStringView.h */, - 0A35FB69C15AF0275435E3E7ECB63620 /* FLEXArgumentInputStringView.m */, - 8FB8699A1D8F9ADBE5A02516E01BA8B6 /* FLEXArgumentInputStructView.h */, - 3CE1028B7680E7D5B488E4A7BCD11E01 /* FLEXArgumentInputStructView.m */, - 59DC15EEF5FAF8C06942A1B3C94DC1A7 /* FLEXArgumentInputSwitchView.h */, - 8A5BF4556735174903F93E0A44BEB1C1 /* FLEXArgumentInputSwitchView.m */, - 99D549B2036E0AF736ED85F46598B515 /* FLEXArgumentInputTextView.h */, - 96CB3A507418738284E3A12E18AFCF8D /* FLEXArgumentInputTextView.m */, - F5862181980ECA3CF8DD1EE7B49643D1 /* FLEXArgumentInputView.h */, - D0801ADB89B345B644083E3F5DA27F0E /* FLEXArgumentInputView.m */, - D138290D079884AC1321047B95FB2134 /* FLEXArgumentInputViewFactory.h */, - A685A658CCBAB501BB1A71894C650C31 /* FLEXArgumentInputViewFactory.m */, - 30C5CD375E3DF45C2762A403F0FA2B76 /* FLEXArrayExplorerViewController.h */, - BE2CE74BE1DF0A68B63D8E0C75194BF3 /* FLEXArrayExplorerViewController.m */, - 7B992A85F1FF77DC238DB14EA4B58F9D /* FLEXClassesTableViewController.h */, - AA3AC5A375E2B7A50D09AA46CD8F6606 /* FLEXClassesTableViewController.m */, - A3645F04D3222A0E5FDD8F99718A1CB5 /* FLEXClassExplorerViewController.h */, - 773094A1F8B327B3AA41F5B2B198742B /* FLEXClassExplorerViewController.m */, - EAE002CD67E24C8D09D90D9006312545 /* FLEXCookiesTableViewController.h */, - 834483709EBBBD88AA299AE2C6ECE38E /* FLEXCookiesTableViewController.m */, - 0AAE597B678E628668F66C5BB6873F1F /* FLEXDatabaseManager.h */, - 038C048AEC1AC881BD6542FDA576CCD6 /* FLEXDefaultEditorViewController.h */, - A2FFEA3AD16635C56790FAF39B1B0C61 /* FLEXDefaultEditorViewController.m */, - FA3ECD73E7E5CB18CCBD36C8341E00E4 /* FLEXDefaultsExplorerViewController.h */, - 88781EB58D181337E5CEDDF001A85903 /* FLEXDefaultsExplorerViewController.m */, - 7BA4DD1C4C964A6E72CE72E34B9F402F /* FLEXDictionaryExplorerViewController.h */, - D0AFA6E8877B48AD4B34A3F8DA953EBC /* FLEXDictionaryExplorerViewController.m */, - 12CB3BB53450A1BB7EE3C11C0C980F43 /* FLEXExplorerToolbar.h */, - AA61602D56C97AA1F1A3BF3E2380B6E6 /* FLEXExplorerToolbar.m */, - 82389B09ADD3C59DCBFEC5EF4D619F4B /* FLEXExplorerViewController.h */, - 2443805EDF880CD16C8528CDAE0945BA /* FLEXExplorerViewController.m */, - 4B45E6E9D262DA3DF6CB410EDE6BBCB0 /* FLEXFieldEditorView.h */, - 1AF13900A4EB5916DC5137CBD5F10F89 /* FLEXFieldEditorView.m */, - FEEDA2A91600AD02BFE521FF7379DC38 /* FLEXFieldEditorViewController.h */, - 8AC0A490324CB91E2E66C7A23FCFBD22 /* FLEXFieldEditorViewController.m */, - A04ADC4767E3537C02787EB2A3B24646 /* FLEXFileBrowserFileOperationController.h */, - C0463379A6B09C0FC98B8A45C1CDFCF7 /* FLEXFileBrowserFileOperationController.m */, - 458A2664B88365B18888C48BE7C5245A /* FLEXFileBrowserSearchOperation.h */, - 54017649935CDCA84B98680821423DF0 /* FLEXFileBrowserSearchOperation.m */, - C87805A7042B335E7040668DC5F60AAD /* FLEXFileBrowserTableViewController.h */, - DCC0B326721C9ECADF094D5F13E21848 /* FLEXFileBrowserTableViewController.m */, - 46BD0DE6BDA689B15CA3F97CC3D82BA9 /* FLEXGlobalsTableViewController.h */, - 46202626F5BDBCDC3FBBC7C8887CF65D /* FLEXGlobalsTableViewController.m */, - C5347CF99D1C6E577A419258C485BAA0 /* FLEXGlobalsTableViewControllerEntry.h */, - BAB3C4C04AD6BF1711323155D0A0C89F /* FLEXGlobalsTableViewControllerEntry.m */, - 108A838DA8BB27D43022CDA8610A7B1A /* FLEXHeapEnumerator.h */, - 07E887CCADBD65BDE9E6F3376E81E059 /* FLEXHeapEnumerator.m */, - F249B86095425A5685500A10D7301CCD /* FLEXHierarchyTableViewCell.h */, - C49F81674DBEC0B6BE50694C48F31F8D /* FLEXHierarchyTableViewCell.m */, - 268F104C6B07DEADB10BF8A867035B86 /* FLEXHierarchyTableViewController.h */, - 4FBEBA81009FC82998DE228D8C015564 /* FLEXHierarchyTableViewController.m */, - 3FA172E19DB62263A44ACE13AFA3A5E7 /* FLEXImageExplorerViewController.h */, - 89F78FF4BFF59CFBFCBD86C077269F86 /* FLEXImageExplorerViewController.m */, - A7E8A364EC7E16B403A3DF91B1DA8A27 /* FLEXImagePreviewViewController.h */, - C72420EC8DC8ACED6D9D3FB973CDDE81 /* FLEXImagePreviewViewController.m */, - 79D63F115DB0CC73C61C2286AAEDA20C /* FLEXInstancesTableViewController.h */, - 617A831F012971178ADE21664D234D89 /* FLEXInstancesTableViewController.m */, - 7C40E36BEFE11F09701DC99C30E037A1 /* FLEXIvarEditorViewController.h */, - 9C2E5F0948E406A01AAB2D55A4074808 /* FLEXIvarEditorViewController.m */, - FB38B98E0E47111227A8C1AA9AE811E5 /* FLEXKeyboardHelpViewController.h */, - CF8C4857D613CDF3166E2557E5F35A72 /* FLEXKeyboardHelpViewController.m */, - 7FE1B58702457B81E698A6762A3B8590 /* FLEXKeyboardShortcutManager.h */, - 96721CF43CFFAD91AA7D5607BF63A1A5 /* FLEXKeyboardShortcutManager.m */, - 9A2E9F08ACEA9622FAD9BA829442F742 /* FLEXLayerExplorerViewController.h */, - D752C10DF605CA2B72F2DD954E91045C /* FLEXLayerExplorerViewController.m */, - C9FED95F67FCEF9014BE009E21F1B362 /* FLEXLibrariesTableViewController.h */, - 7AA309B92715047BA2AAB8A6BDD13D56 /* FLEXLibrariesTableViewController.m */, - CF09DC5093F059EDAA975353F2159FBE /* FLEXLiveObjectsTableViewController.h */, - 5FF6D03E41417FBE1FD87B8CCE77A93B /* FLEXLiveObjectsTableViewController.m */, - 98E20FEAAED4BEC28A1DB4452F6D9D10 /* FLEXManager.h */, - E11DB7AC6960344D9C54E53896FF0756 /* FLEXManager.m */, - CE6B166FE0F0352C2EC56E65DE12AE26 /* FLEXManager+Private.h */, - 6DFCCBF52871E3104F750989CE83666B /* FLEXMethodCallingViewController.h */, - 8C2D6E5D3C95863939837A17606F49D0 /* FLEXMethodCallingViewController.m */, - F912D2EBA8D178ED9CF9C0A47ABDAFD0 /* FLEXMultiColumnTableView.h */, - F7BF84DCA7AEE35EB88D3B6A8C1CBBE9 /* FLEXMultiColumnTableView.m */, - 9427F100A5F5ED2DD047E0FEB98B1628 /* FLEXMultilineTableViewCell.h */, - B4F9B214A377B49897194D0790FAAC48 /* FLEXMultilineTableViewCell.m */, - 51AD72C9A8E248687FC0C8A4594E0D63 /* FLEXNetworkCurlLogger.h */, - 9861AD380947ABD6F5F9296A5D7A3BF6 /* FLEXNetworkCurlLogger.m */, - 655F02821609FC8C218546881BD8DF71 /* FLEXNetworkHistoryTableViewController.h */, - E20C30B10ADE4C0D69C1419A16C6F0FC /* FLEXNetworkHistoryTableViewController.m */, - 122C554953A5F7E29573AE46483E12FA /* FLEXNetworkObserver.h */, - 2DDFB7042468918B6D0E4D747137A7AC /* FLEXNetworkObserver.m */, - 7C2D3CA3A4BF8033DFB1BB769F578DDB /* FLEXNetworkRecorder.h */, - F614DD58A7DB038D16DE033020A94B0D /* FLEXNetworkRecorder.m */, - 68A8032D4906C33B0B8B34183EC17B51 /* FLEXNetworkSettingsTableViewController.h */, - BED625BAD02B9853AA5FB9C081E45934 /* FLEXNetworkSettingsTableViewController.m */, - 513F8204794C408B71A330CC932C42A6 /* FLEXNetworkTransaction.h */, - 8B67F1173934F8B0F611F20E40CDD00E /* FLEXNetworkTransaction.m */, - FFD42AC426DDDAF6E8037B90C2ECD6C9 /* FLEXNetworkTransactionDetailTableViewController.h */, - 7CD72105FDD3497C27A833027B98C1D5 /* FLEXNetworkTransactionDetailTableViewController.m */, - 9BCCCA3D6C578B3EF9CAC70727EBDBCA /* FLEXNetworkTransactionTableViewCell.h */, - 9E993EB7E00A1892216ABC551DDAAB85 /* FLEXNetworkTransactionTableViewCell.m */, - BA78E1A542FD90911BBC87AB0E0B6938 /* FLEXObjectExplorerFactory.h */, - 020C7CC239DC1B51AE13D342D0A448E4 /* FLEXObjectExplorerFactory.m */, - A7B0C0364CFC950480692EA8C206E5B5 /* FLEXObjectExplorerViewController.h */, - DCF1B208CD652776DBF6E2BD03D94B86 /* FLEXObjectExplorerViewController.m */, - 89E0C10BD833413844F775BE54F046C4 /* FLEXPropertyEditorViewController.h */, - E8E7CE7E422569FC90CE5499B2F3D6EC /* FLEXPropertyEditorViewController.m */, - D619F3963E8D1AFDF235988B1A3E520E /* FLEXRealmDatabaseManager.h */, - 9337EB2F9DEC064593E6F1156AA4CF7D /* FLEXRealmDatabaseManager.m */, - FFCF648B809F47D95DCA03CD3926E604 /* FLEXRealmDefines.h */, - 9D9F3C82D03331B4C192DA746E7A2742 /* FLEXResources.h */, - 2219BC94EE0F47A3DF3BB88E3FAB8E28 /* FLEXResources.m */, - 4E46F02BF49FE8D3DE26659F8B033DFB /* FLEXRuntimeUtility.h */, - 00CD0096163303089090DBCEBA18B2EB /* FLEXRuntimeUtility.m */, - 4B070DC87062CA61D73E56C9549E2F5E /* FLEXSetExplorerViewController.h */, - CFE786E2A95E03DB45523D2E7D720A2E /* FLEXSetExplorerViewController.m */, - ED513D23E83420EAC6CE45893A15E20E /* FLEXSQLiteDatabaseManager.h */, - 2E2EE6706276D137546D678B9489E08B /* FLEXSQLiteDatabaseManager.m */, - 213EF8ACBC5AB1931A6D5E7861832E9D /* FLEXSystemLogMessage.h */, - 8C77704E508C620E66B06F0437172813 /* FLEXSystemLogMessage.m */, - B4C9710D667BD9E120B164262E771381 /* FLEXSystemLogTableViewCell.h */, - 1317F77FD15006BF5767B04589D3F26A /* FLEXSystemLogTableViewCell.m */, - A9E3D36E2483C3F1448A65E6E4EFF7DD /* FLEXSystemLogTableViewController.h */, - CDE1A9D4160D68289E2863097E9CBC43 /* FLEXSystemLogTableViewController.m */, - CF8BAAFB815D152B8C2209485E5D0D65 /* FLEXTableColumnHeader.h */, - 886F5824D97B60715F7E9E429F988545 /* FLEXTableColumnHeader.m */, - 8293519E7ED69D4E3FAC5AE1AED0C0BF /* FLEXTableContentCell.h */, - 02FB53BD80F9E693CCEFE91A6913631E /* FLEXTableContentCell.m */, - 77B8C1451E189A4F4D32488A015C979B /* FLEXTableContentViewController.h */, - 76B1819579DE793B2B022004E7E6BD41 /* FLEXTableContentViewController.m */, - 36A533E4359D276C4C49321014528217 /* FLEXTableLeftCell.h */, - FA2B93552EF93AE446B3386969889822 /* FLEXTableLeftCell.m */, - FC40571C470C456326DE286BB3D61C49 /* FLEXTableListViewController.h */, - BD0756CEC5E5BAC98BD61F3211E44DBD /* FLEXTableListViewController.m */, - 7997AD3C155253F3C365FE372B32C96F /* FLEXToolbarItem.h */, - 972DA354DDFC8D3B3B86DA7F614CE63A /* FLEXToolbarItem.m */, - 3E4CD72B905A6281C737FB05579D2AE2 /* FLEXUtility.h */, - B3429C41E98A2B27F8DE021FBA0BA492 /* FLEXUtility.m */, - ED79A272494E152E6F08482ADDA94961 /* FLEXViewControllerExplorerViewController.h */, - 3B6CF5A8A27A80C1FCF2BAA7843277D0 /* FLEXViewControllerExplorerViewController.m */, - BDEC2E90EE0E9A9C6C17F8D977BEB1B9 /* FLEXViewExplorerViewController.h */, - 5F8078C98EEF8EF37A6AD6FC25D66DAA /* FLEXViewExplorerViewController.m */, - 92E46C5CB2BDE33EB48F4CF4D42E25F4 /* FLEXWebViewController.h */, - BAB1FFF9C9C70F73AD9FB3FEC835D2AA /* FLEXWebViewController.m */, - 1ED70B0D12F67CBCFF4E17F833FEFB4D /* FLEXWindow.h */, - C4716712447611CA6B253226FBB154EB /* FLEXWindow.m */, - C54D9CF8230C45C93C96B0948FAFFB48 /* Support Files */, - ); - name = FLEX; - path = FLEX; - sourceTree = ""; - }; - 173AFFA48B387ADB874A573771A7D869 /* Support Files */ = { - isa = PBXGroup; - children = ( - 41C3A1F4DED3B3C981E59D91EE9BC190 /* Info.plist */, - 3B498B7622C440E91B6A572854E6758B /* IQAudioRecorderController.modulemap */, - DBC056F6C050B9A6A4CFF615938B62B0 /* IQAudioRecorderController.xcconfig */, - CC30500E5721C75CE3B9DEA57A9D0A44 /* IQAudioRecorderController-dummy.m */, - 4B1EF70C6D7843FA24124E12C84904DD /* IQAudioRecorderController-prefix.pch */, - FDB24ADE13239369C8C6C79BF5FC2E9A /* IQAudioRecorderController-umbrella.h */, + 0303C27468E021F1C12D559DE1756A05 /* HMSegmentedControl.modulemap */, + 4FDC5F8B24D28D85DDE3ACE4AF17B831 /* HMSegmentedControl.xcconfig */, + C74663550A52CC7EE1C2CC6491846167 /* HMSegmentedControl-dummy.m */, + 1ECB61418E8FEE98D648D4FA2317CE13 /* HMSegmentedControl-prefix.pch */, + 0CA0CBA57EF7D73AD6D4EC56947B8874 /* HMSegmentedControl-umbrella.h */, + 4E96F5C0D70D19BEFF036339DD683767 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/IQAudioRecorderController"; + path = "../Target Support Files/HMSegmentedControl"; sourceTree = ""; }; - 182DD150B19C5FA73DA5E0374815DD01 /* Resources */ = { + 0702FE93154D24E482AF43928A38740B /* AHKActionSheet */ = { isa = PBXGroup; children = ( - F702AF0973CB2C1DAC792B14807153CE /* icon-error.png */, - 43E82C46F9229BDE3F63497AFCB5B5E6 /* icon-error@2x.png */, - 7C26784ECA688E60D7AD91B17C992582 /* icon-info.png */, - 053918D19F6788BB4E459863CCC4FFA1 /* icon-info@2x.png */, - C2342BC772DBEE8C263FA07ACE2E730E /* icon-success.png */, - 6C8EAF1BC43D6D89030D45498D0F0107 /* icon-success@2x.png */, + 9D17D20271A122B3A153040D1D89D46B /* AHKActionSheet.h */, + F5271B6CED74CCFB9FCF54DC2C447BA3 /* AHKActionSheet.m */, + 1FBD299F417097202418969D6130D3F1 /* AHKActionSheetViewController.h */, + 6E870F372301A806C7C7606C47340757 /* AHKActionSheetViewController.m */, + 6363F68A57135BA2AF6273BCF054B87F /* UIImage+AHKAdditions.h */, + A2191F395691B194B1EA99D0DA6A3E83 /* UIImage+AHKAdditions.m */, + C41285E55435527CBEA10EA402059864 /* UIWindow+AHKAdditions.h */, + 1E8ED6D54D0068E083E3BAEC35E0CF6D /* UIWindow+AHKAdditions.m */, + 3ACAD6555ADDCF6072244C83EF019C48 /* Support Files */, ); - name = Resources; + name = AHKActionSheet; + path = AHKActionSheet; sourceTree = ""; }; - 1A065D0E5F9FD150D5B9A915F3E21C9D /* Support Files */ = { + 08961B932559CEEADABAFEDCDFB39187 /* NSURLSession */ = { isa = PBXGroup; children = ( - 786396ADC3735A8E3EDB5DCA8278F77F /* Info.plist */, - E8CF5A72AFADE4B591E1B34C8D856B17 /* SocketRocket.modulemap */, - 4432D1BC2191953F645EE0A6D0D451F7 /* SocketRocket.xcconfig */, - 0A2A66B886BF38C867405EE7722AE4B8 /* SocketRocket-dummy.m */, - 5F6D830818B3EDFD26B623D184B565B9 /* SocketRocket-prefix.pch */, - B01A1224EF62025CEA6D9CEE37E4090C /* SocketRocket-umbrella.h */, + 9B3927AE0E8AB10A4E6FA0DB615AD0E2 /* AFHTTPSessionManager.h */, + 332DDAFCB6B10D337A0AF796FA92AED1 /* AFHTTPSessionManager.m */, + ED3A91A60864A8FBC865360BA4D036AC /* AFURLSessionManager.h */, + 0D56F9BF3379327796677C4E9D8145D5 /* AFURLSessionManager.m */, ); - name = "Support Files"; - path = "../Target Support Files/SocketRocket"; + name = NSURLSession; sourceTree = ""; }; - 1DCE35D8706031E0B281AED327342754 /* UIKit */ = { + 09821353E85B991E3AEFF9E1341721E9 /* Support Files */ = { isa = PBXGroup; children = ( - F6849EF8E598E378F7B02473FC6A90EB /* AFAutoPurgingImageCache.h */, - 0F39DC88F75372014C667F99DC67C63C /* AFAutoPurgingImageCache.m */, - D8D6C643D1BA7B3CDF19CAF531197537 /* AFImageDownloader.h */, - E1460E1D84FFC0E3C2FD62AC2FCADD6F /* AFImageDownloader.m */, - 95A5EBF9C1DD299D32F09548DD361688 /* AFNetworkActivityIndicatorManager.h */, - 4814595F006BF65DB8C1B5F46A242220 /* AFNetworkActivityIndicatorManager.m */, - C0CE5EAFE1C35FD46B9047190604D5EA /* UIActivityIndicatorView+AFNetworking.h */, - 10BF0E99CC1D54C413640ED25F21086E /* UIActivityIndicatorView+AFNetworking.m */, - 156494AADBDCE611D5119B5898E1CB3B /* UIButton+AFNetworking.h */, - B3939E9C7F1994101A7D3A32CA84EAE6 /* UIButton+AFNetworking.m */, - 447ED538E85A38EE946A55C5321B2BAC /* UIImage+AFNetworking.h */, - 457C0E5170CE625A3714799F2F6869C1 /* UIImageView+AFNetworking.h */, - 354CCA5A59590E88BE6E7CB64F73D9A5 /* UIImageView+AFNetworking.m */, - EBAAA2B7C4FA4462C09068943B73551E /* UIKit+AFNetworking.h */, - 22A185F4EE5E16981C6737DD4C0F9142 /* UIProgressView+AFNetworking.h */, - AEB4674951FE9F45FAE98D6DD57E82DD /* UIProgressView+AFNetworking.m */, - E1B956627C8F29346A3228905FB54814 /* UIRefreshControl+AFNetworking.h */, - 34526A585D9357885A5529F16862BCF2 /* UIRefreshControl+AFNetworking.m */, - F1E31A4D9AC30A5DD9E8B7F9FC197E44 /* UIWebView+AFNetworking.h */, - 60103F7EC28D7BBA767715BA7A08BCF3 /* UIWebView+AFNetworking.m */, + 80E4832FCA353AD23D59367704CB1436 /* Info.plist */, + 1041C908547991E1675333591F52D6A4 /* SZTextView.modulemap */, + 9075860B3815AC010D330804A0A573A2 /* SZTextView.xcconfig */, + 106C5D3DE116D12C5BAE526145C74EFA /* SZTextView-dummy.m */, + 6C66894C171D704A66D3BF353B6FB680 /* SZTextView-prefix.pch */, + 210FC2773A9B5EF5B349555495284239 /* SZTextView-umbrella.h */, ); - name = UIKit; + name = "Support Files"; + path = "../Target Support Files/SZTextView"; sourceTree = ""; }; - 20362D6008A82E88F30824B247F12534 /* REMenu */ = { + 09BA712C9F8575669FB75B5605139F6E /* PHFDelegateChain */ = { isa = PBXGroup; children = ( - 4D4116FD07B693D49DFCFA61467A084C /* RECommonFunctions.h */, - 9F823D88AFD385AE9090336197E129BD /* RECommonFunctions.m */, - 1A2C70A86A3A3133641EC1644269E85D /* REMenu.h */, - E4C34EDA72492ABDF40B79D4E1B2CA8C /* REMenu.m */, - F7516BD863149D036E44FBEA3D601D94 /* REMenuContainerView.h */, - 7A3EA78277FB608C3B23DD125741673D /* REMenuContainerView.m */, - 12084775717090174509AFC9E241F704 /* REMenuItem.h */, - 5D816DCDFF35B12EB1DADB8ADB543E76 /* REMenuItem.m */, - 21C923CEEAAE9923A5D39EF04BA26A1C /* REMenuItemView.h */, - F5C87263FE74B0C2FB6E9753E965C680 /* REMenuItemView.m */, - F3465F7DB7F053CC529A0B8D1B246D74 /* Support Files */, + 063FEA40204B085789BB6EBF7ED7E193 /* PHFDelegateChain.h */, + 44CD4217846E37AF1CF24CA15ABEF41C /* PHFDelegateChain.m */, + B3951F001E06D73A998CB52D2D287D4E /* Support Files */, ); - name = REMenu; - path = REMenu; + name = PHFDelegateChain; + path = PHFDelegateChain; sourceTree = ""; }; - 232DE01EB3EE90325526827FB9BD3DA7 /* INTULocationManager */ = { + 0AA345CEB1A34C510EB33B771EB0C822 /* OMGHTTPURLRQ */ = { isa = PBXGroup; children = ( - FC198B8BE79376D1BC8EF929BC01EC38 /* INTUHeadingRequest.h */, - B8AF31B3B9C9C9215734128DDB02EC1B /* INTUHeadingRequest.m */, - CA2862CFB145421835FDCD35C88C3D49 /* INTULocationManager.h */, - 21CFBF7711A9BF68C3E00EDBAE356D14 /* INTULocationManager.m */, - F5F06426721B1F4E116E9EAC674B15C7 /* INTULocationManager+Internal.h */, - A4F1BB853CCC6D515A9CA95F777A87BF /* INTULocationRequest.h */, - E871DB040F10A91197C3DB6EA71147DE /* INTULocationRequest.m */, - 03B2F3E108A6144615BB2FE0A1973243 /* INTULocationRequestDefines.h */, - 52FBE7B77A052D705FE51A58137FB726 /* INTURequestIDGenerator.h */, - 3EB40527C12C88DFB4F53D099ABF4115 /* INTURequestIDGenerator.m */, - F69F64DA64504DE96C0556E76BC100E5 /* Support Files */, + E1B1429AD2AB01F11BD0C8034238C822 /* Support Files */, + 7BF7B827EC05357DC9D3D41AE7B48E31 /* UserAgent */, ); - name = INTULocationManager; - path = INTULocationManager; + name = OMGHTTPURLRQ; + path = OMGHTTPURLRQ; sourceTree = ""; }; - 25600E2B0B499AC94CD3AEADDF492ECF /* Support Files */ = { + 0B13C4F4077A3999D75BBCDDB893C97E /* Support Files */ = { isa = PBXGroup; children = ( - 2C15CD804139F0EA3B178981BE3C4B79 /* Info.plist */, - 2246F368E1A7528BDD935FC16592D2F4 /* TTTAttributedLabel.modulemap */, - 15AD98A7601BF79DE9032118EE3C41BD /* TTTAttributedLabel.xcconfig */, - 3C3A02815769BB4E0ED550DB1FBE35F5 /* TTTAttributedLabel-dummy.m */, - 5F4E8A658CDAF3983F2DC7BFD2FD516D /* TTTAttributedLabel-prefix.pch */, - C31B96CAFD0B45F0F04DE811660C61A4 /* TTTAttributedLabel-umbrella.h */, + D77C508B6740B808E6C8E8B9EFFDDFD8 /* Info.plist */, + B652EB476E08BA61CA4DF6DA180853E2 /* TTTAttributedLabel.modulemap */, + 27CA565701F5D8BFB1CC843747490269 /* TTTAttributedLabel.xcconfig */, + D92A08E6ED04557509EB2373C8730A40 /* TTTAttributedLabel-dummy.m */, + 5FB6A062BBDEFD99D304015A4C96A044 /* TTTAttributedLabel-prefix.pch */, + 83AAFE6A312701AD7746B5E0662C1D44 /* TTTAttributedLabel-umbrella.h */, ); name = "Support Files"; path = "../Target Support Files/TTTAttributedLabel"; sourceTree = ""; }; - 29488353E7F554ABEBA0A1A8BC597F2C /* Serialization */ = { + 0FFFA07E45682260CE39EE2EEE86C0DE /* FLEX */ = { isa = PBXGroup; children = ( - 599CF8186B46CFCC72D20F589F789B17 /* AFURLRequestSerialization.h */, - 15289FFA31CB8914A3AA50B2B298581C /* AFURLRequestSerialization.m */, - 1C12D2DB546FE642EDF610F81CEAE486 /* AFURLResponseSerialization.h */, - 3F724259E2332AC82106B9FC1C00DE05 /* AFURLResponseSerialization.m */, + 0261F142359AF289F8D0B1CC57E85295 /* FLEX.h */, + 19322A89ED64434609B19ADB519A5D3C /* FLEXArgumentInputColorView.h */, + 1B23A2EBC56C08DC287AFBAAE1ADD8F1 /* FLEXArgumentInputColorView.m */, + 6187C18B94AA3B665B0393772AB84895 /* FLEXArgumentInputDateView.h */, + DFF091BE4BCACF4F040C1F2BFFBC1636 /* FLEXArgumentInputDateView.m */, + A3295A4A04B814470ACE82F998D9CF8D /* FLEXArgumentInputFontsPickerView.h */, + ED271B28633960B441ECFF85DA5A4BDF /* FLEXArgumentInputFontsPickerView.m */, + 2A70BFDCBC87308B1EDB70CAAD30DA6F /* FLEXArgumentInputFontView.h */, + DAD6891B1E4091C19B6C3B9435A6B420 /* FLEXArgumentInputFontView.m */, + 2DC1C4338124149F44EF80460D79F917 /* FLEXArgumentInputJSONObjectView.h */, + 08D06236C3B63EF5F56EE7B546F81A5F /* FLEXArgumentInputJSONObjectView.m */, + 271E2BCCBBC6BEC8A00972599918C6E3 /* FLEXArgumentInputNotSupportedView.h */, + 593DC7FCD1632C8F7B3D7CBC367DC5DE /* FLEXArgumentInputNotSupportedView.m */, + E1C1F310A365377BC874C5C032FADE4D /* FLEXArgumentInputNumberView.h */, + CB9CAA2C99418D090739C3E3A43BFBCB /* FLEXArgumentInputNumberView.m */, + 73B8C93FDE429E06F8B79FDD60355A77 /* FLEXArgumentInputStringView.h */, + 9392861CEADC3725C4AD993C5EBF5E5B /* FLEXArgumentInputStringView.m */, + 95C520C8169D9AB8BC753B6B22989480 /* FLEXArgumentInputStructView.h */, + 64BED456F39940F3081D2FDF9AA5C51B /* FLEXArgumentInputStructView.m */, + B7CD41C180BC03F6B9434D557BF1ED6B /* FLEXArgumentInputSwitchView.h */, + F340A9D9204009059FCB7A010BD997FC /* FLEXArgumentInputSwitchView.m */, + BF57BFC3FFE384D3DF9B91968B67792A /* FLEXArgumentInputTextView.h */, + 05BA6862886699895DF0966C744DDF6A /* FLEXArgumentInputTextView.m */, + 138BB209C0934ED4E38AA814B0C3EF36 /* FLEXArgumentInputView.h */, + 8395C75BE17899A8AF1DD1CDC2033D66 /* FLEXArgumentInputView.m */, + 3912C0DD3968D90F1C569A9748CADACF /* FLEXArgumentInputViewFactory.h */, + 07D1330B53BC9692892AE7E7E2702790 /* FLEXArgumentInputViewFactory.m */, + FD8C785533292F63211C1D52D42F36D3 /* FLEXArrayExplorerViewController.h */, + BE6E0EE4ECA673FE1564EDDF0206627B /* FLEXArrayExplorerViewController.m */, + E0874A0497AD215544CE85B6ACF56C25 /* FLEXClassesTableViewController.h */, + A31896B63E2CD8BFA5EBEEC79AA5363E /* FLEXClassesTableViewController.m */, + 08F973611268CF1E7B22E5C38A33B87B /* FLEXClassExplorerViewController.h */, + 4F5181D1D065F2217D80D2D8B1E535AE /* FLEXClassExplorerViewController.m */, + 339BE9ECAEE13B22E8C0E44D14D2E399 /* FLEXCookiesTableViewController.h */, + 332D0DCFA816445289CF8C7E446CB78B /* FLEXCookiesTableViewController.m */, + 7C9E3126619208950AE7BAB04A0DD7BA /* FLEXDatabaseManager.h */, + D895A820291F395F944E322D490311E7 /* FLEXDefaultEditorViewController.h */, + E3C538A95BB762AB96240E4AEB3936DE /* FLEXDefaultEditorViewController.m */, + 67E29B0579561131FA620729BA1B31F3 /* FLEXDefaultsExplorerViewController.h */, + AF9FE01ACA5A093039231DCE8B0325E2 /* FLEXDefaultsExplorerViewController.m */, + 5620E858C3F0F2A3B085EC77B6EAF607 /* FLEXDictionaryExplorerViewController.h */, + 8F753EB45A389A945DD508AE8EC07413 /* FLEXDictionaryExplorerViewController.m */, + 215783875A48D538B6E5A5789F790C7E /* FLEXExplorerToolbar.h */, + 3AB57A124A97868CCA3EEC4B50E74691 /* FLEXExplorerToolbar.m */, + 5F8758C641D913288CF42FF3096088AA /* FLEXExplorerViewController.h */, + 887914737DA60A492BFA1EF6810853EB /* FLEXExplorerViewController.m */, + 6C5F1DCD27C374AD7E28CB3A5156392E /* FLEXFieldEditorView.h */, + A9BAB4EAA8FAC7DB5CE514C1F932EB96 /* FLEXFieldEditorView.m */, + BEA6CD8C5517DF5EBA497182B19DAEA7 /* FLEXFieldEditorViewController.h */, + 04993E4F8B9B91BAF64212810C093704 /* FLEXFieldEditorViewController.m */, + A5878868847C4F77C95376071010D002 /* FLEXFileBrowserFileOperationController.h */, + B0816CFA36316E0074BC7F4D908070FC /* FLEXFileBrowserFileOperationController.m */, + BC4D711B2D09F23AA5547129BAC38E1D /* FLEXFileBrowserSearchOperation.h */, + 25CC555EEB5CC998F5E85498B017F9F1 /* FLEXFileBrowserSearchOperation.m */, + DFF677B97CC51E8752A9B6768DCFBFB5 /* FLEXFileBrowserTableViewController.h */, + 978867F7D43DA8B96CBBA4B7172AF315 /* FLEXFileBrowserTableViewController.m */, + 13D6C686C023236F9439EF6F410FB435 /* FLEXGlobalsTableViewController.h */, + C0F1B15F0B3C2C70E94DD9B2080CF9BD /* FLEXGlobalsTableViewController.m */, + 6D15446E5E0831DE23E8CBBB9A634A24 /* FLEXGlobalsTableViewControllerEntry.h */, + EFB7172085E1F7DC0070C963988BABB4 /* FLEXGlobalsTableViewControllerEntry.m */, + DC90916D03181C6661E323F9FB5159B1 /* FLEXHeapEnumerator.h */, + F9B03EBC7B36FF31130876471B531990 /* FLEXHeapEnumerator.m */, + 127F23ED467FC6FA7D2245540EB65EC8 /* FLEXHierarchyTableViewCell.h */, + 56A91F21E0A8CEBD9642772294CD7969 /* FLEXHierarchyTableViewCell.m */, + 8781B518414DD112EAFEAB757E1A2A76 /* FLEXHierarchyTableViewController.h */, + 73729E85264F2C5DBDF7627E6389E9E7 /* FLEXHierarchyTableViewController.m */, + 9095576B6A896DEFCAB89EE8A393E947 /* FLEXImageExplorerViewController.h */, + F09B4DA8484D8609323F6BF01D0B2989 /* FLEXImageExplorerViewController.m */, + 0315FC88AD210D29280B9C332300F900 /* FLEXImagePreviewViewController.h */, + E4686A2C51D501851F1C8C8A1B11C53E /* FLEXImagePreviewViewController.m */, + 7DDEE2C96E5C4F6EAA360C363D5CAC5C /* FLEXInstancesTableViewController.h */, + 454A94A23F8B655043521863DE4566C3 /* FLEXInstancesTableViewController.m */, + 2F261F66683678F4DA7DF8AFF5733BDC /* FLEXIvarEditorViewController.h */, + F79736AAD733083A330A63AF2AB3ACD2 /* FLEXIvarEditorViewController.m */, + 422F3F85F4DFB3ACA5316C82340E1920 /* FLEXKeyboardHelpViewController.h */, + 2F4F1E521CF75EB733E9FEB43BE31C64 /* FLEXKeyboardHelpViewController.m */, + 65D1EA386C8AA06187FA257B63A8885E /* FLEXKeyboardShortcutManager.h */, + 037E3CFE69F8B4B8DF03141564FF8440 /* FLEXKeyboardShortcutManager.m */, + D202F98B4FB4530CAFF501A3460F1884 /* FLEXLayerExplorerViewController.h */, + 302BE759240BFBAE97CB89A1F3895724 /* FLEXLayerExplorerViewController.m */, + EEC8590E90B710885B6110381983F705 /* FLEXLibrariesTableViewController.h */, + BEA21CEB025EACD75757CBAEFC5F3EC4 /* FLEXLibrariesTableViewController.m */, + 553082BDFDAAC608DBC835A88F1A96B5 /* FLEXLiveObjectsTableViewController.h */, + 654B1A98E7531D9BFD46C42E80BEC004 /* FLEXLiveObjectsTableViewController.m */, + 18C5C76A35972C73B3E9598292DED579 /* FLEXManager.h */, + 25C298D4F6B472E7CF5D70B84B779B40 /* FLEXManager.m */, + 96C675DC4D8E414DA5E8B75D6B2538C2 /* FLEXManager+Private.h */, + 703F88EFDCD46F36650733828A10B9A5 /* FLEXMethodCallingViewController.h */, + C6EC0D7F13377F4510C369F273A05D40 /* FLEXMethodCallingViewController.m */, + C6DD99C292B8538A59EC7F1D5D01E926 /* FLEXMultiColumnTableView.h */, + 4D169FFA420A8C418E313FD6BE6AFB77 /* FLEXMultiColumnTableView.m */, + 9D98BE99EE0CE91F51B366F27F825841 /* FLEXMultilineTableViewCell.h */, + D8E62C2CC0113FB1F09248BFE3DE6111 /* FLEXMultilineTableViewCell.m */, + 2167A9843206C5B4AA3E411E690293C2 /* FLEXNetworkCurlLogger.h */, + 653285F40C9C7E00DACCF5DC45AC0CCB /* FLEXNetworkCurlLogger.m */, + A25808084A6644EC16E9824F43531450 /* FLEXNetworkHistoryTableViewController.h */, + FFB23751BF316320B574D1556D3E7385 /* FLEXNetworkHistoryTableViewController.m */, + 57E61DBF2994BBF04C34271543FE1EE7 /* FLEXNetworkObserver.h */, + 063A2EB52BA67037EEFEE3651CF4545F /* FLEXNetworkObserver.m */, + 6732433245E95C3BBD082EA649276BD4 /* FLEXNetworkRecorder.h */, + 2188C3A2C36545CD72E7897D4B35A323 /* FLEXNetworkRecorder.m */, + 489F461B9D627E3F0F59061E0D41B50F /* FLEXNetworkSettingsTableViewController.h */, + 6BF71925FC7FA40A1AA13BA14020AA27 /* FLEXNetworkSettingsTableViewController.m */, + C5529B74BC127EA6F50D55556020316A /* FLEXNetworkTransaction.h */, + 69C945E5C99F2973094DD4F2FF5610BD /* FLEXNetworkTransaction.m */, + 1A29FCD1F6E9D037888CEF089C038AA5 /* FLEXNetworkTransactionDetailTableViewController.h */, + 4652E28BF1AD2AC93965084072F689A6 /* FLEXNetworkTransactionDetailTableViewController.m */, + F247FC3E3BC89DCBED105E31B570D9B7 /* FLEXNetworkTransactionTableViewCell.h */, + F91D4BF82608B4FAA444A52314BE47C8 /* FLEXNetworkTransactionTableViewCell.m */, + 728A8A110C1CA52192626D39E90D7D2A /* FLEXObjectExplorerFactory.h */, + 7FE95EA1C41DF1DBE9C61818A3462A21 /* FLEXObjectExplorerFactory.m */, + 3B8D316585560DC5BF78ABE05F947720 /* FLEXObjectExplorerViewController.h */, + 02CFE55FF8E3E7ED79143682DDC04B4C /* FLEXObjectExplorerViewController.m */, + 6471F2799F9868314CDA3AC12E5B694B /* FLEXPropertyEditorViewController.h */, + 2276569D9668C8365626CB4A11DFF88C /* FLEXPropertyEditorViewController.m */, + 03B39D356EA1720021B827DA504A189D /* FLEXRealmDatabaseManager.h */, + 7E2273DCA4242526BD02106DC7D95022 /* FLEXRealmDatabaseManager.m */, + F9CCE8039F770F6070CA7EC0A3D6BE35 /* FLEXRealmDefines.h */, + 2412B5809F25CF3B3CB590666E1B579B /* FLEXResources.h */, + 225098B70C97648CDF810F5E4C00BBA2 /* FLEXResources.m */, + F897AFD78684456027218D3854C15F18 /* FLEXRuntimeUtility.h */, + 798C415359D2F7554216AB3CB5ED3D3C /* FLEXRuntimeUtility.m */, + DAB39AA1AF92144D3AE21A7F1DC2C50F /* FLEXSetExplorerViewController.h */, + 92969477426475A50AB17D4FE4142B93 /* FLEXSetExplorerViewController.m */, + 4120BC13CD68B0724A8C2B8A166B8344 /* FLEXSQLiteDatabaseManager.h */, + A0F2CC17F6FD007A525579ABF0AC0DB2 /* FLEXSQLiteDatabaseManager.m */, + 2EC909C014043DCCE0969AEC6E894E08 /* FLEXSystemLogMessage.h */, + EC17319B4532C869AE8BBE3DE4830814 /* FLEXSystemLogMessage.m */, + 743E0492969E2A3F6145741BA2B9985F /* FLEXSystemLogTableViewCell.h */, + D566BF6B27D76CA069F74AE5557D3C5B /* FLEXSystemLogTableViewCell.m */, + DAC68BDE25A50808775AFF04841A0881 /* FLEXSystemLogTableViewController.h */, + 62F87E4615491AC90D3964AE96528175 /* FLEXSystemLogTableViewController.m */, + 7CF6B5E42888E4602678565A63358141 /* FLEXTableColumnHeader.h */, + C9D5A4010E9671DB8BAAAA7F1565F8B5 /* FLEXTableColumnHeader.m */, + 1F27B72ABC4CA7AAA0842D63CB954FB4 /* FLEXTableContentCell.h */, + 8E0271C37F7C21A724BD434E04CEFFB9 /* FLEXTableContentCell.m */, + 8F6722242396AF430E81006B5FC88222 /* FLEXTableContentViewController.h */, + 4C623CD6B126AB6F792A4774E384E67D /* FLEXTableContentViewController.m */, + 9581EE899DBBE94740919AEEB6BD5341 /* FLEXTableLeftCell.h */, + AA50134A1713AB12D6D9F686AC7C7D0E /* FLEXTableLeftCell.m */, + CFB83BB3A719175A8DCD8484371760F2 /* FLEXTableListViewController.h */, + 139A19CB7D0AF2B732A85C427EBCFE93 /* FLEXTableListViewController.m */, + 82B41C5EE01396BE3FF9262468DAC7B1 /* FLEXToolbarItem.h */, + 7EF39E6926F6C5991DFF342B698DCB9E /* FLEXToolbarItem.m */, + 46A7C7801EC3F3DDE6862867FEC95916 /* FLEXUtility.h */, + EAFF32048AC640F63721A96CD250A86B /* FLEXUtility.m */, + 05B2B125EE0E97DD13DCF4D63552F278 /* FLEXViewControllerExplorerViewController.h */, + C5F0832B55BA4F6440B1DB668D9A771D /* FLEXViewControllerExplorerViewController.m */, + CE2559F78B7B5D4A2A9B006DE2074FAD /* FLEXViewExplorerViewController.h */, + D39BD5AD164E1E8F26456448DDCD8699 /* FLEXViewExplorerViewController.m */, + 54A7E267A8B2B6EE0AF7881373BCFC6E /* FLEXWebViewController.h */, + 48CD4D54A6BFF316D60EF919A4D12175 /* FLEXWebViewController.m */, + 7468F75F8EC8F6219DEA8FDCD9B9E5BC /* FLEXWindow.h */, + 48C115C187D2955EFF1EB6D0FD09EB74 /* FLEXWindow.m */, + BD71CFDA56EBDB51FA46CC67E3852AB1 /* Support Files */, ); - name = Serialization; + name = FLEX; + path = FLEX; sourceTree = ""; }; - 2D9A5C9DEACEF64CA5A38B1769F025CB /* Support Files */ = { + 132DD9CEFA0B730B6C4A3F6F88E663DB /* Support Files */ = { isa = PBXGroup; children = ( - A6D8AD004FA82E21E3D2EE36DFAEBDCE /* Info.plist */, - 9BAB01E19F1B4EE9905F602AF9AFD60D /* TDOAuth.modulemap */, - 7A0C0F6620CE74DB6BBC2248445D2DCE /* TDOAuth.xcconfig */, - 3BA03D4FCEE4BB6D1E492EAF626E3C50 /* TDOAuth-dummy.m */, - FBD94048BD51137B6E5EC72CCCCEE232 /* TDOAuth-prefix.pch */, - F1E479CAB47AFFACC970AF170087DC9D /* TDOAuth-umbrella.h */, + DEAD56D77432AE9213BC4ADF2E8BB9C8 /* Info.plist */, + 1B8D24FD31809BD7CC80669F0A5EBC98 /* LTHPasscodeViewController.modulemap */, + 6821E29DA867FF0B2A67710FEFFA0830 /* LTHPasscodeViewController.xcconfig */, + 779195A58E69B6ED4A0C9DADC30EA7FD /* LTHPasscodeViewController-dummy.m */, + 1648B28B38DC7C4DD21B6AF3381D8DD9 /* LTHPasscodeViewController-prefix.pch */, + D27045C306E58DBF6DCDC8879B284EBB /* LTHPasscodeViewController-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/TDOAuth"; + path = "../Target Support Files/LTHPasscodeViewController"; sourceTree = ""; }; - 2E87529B3E4361812D26EA01CD933E0F /* Support Files */ = { + 157BDCFAB9BFED091DE64D7CE1283B25 /* Core */ = { isa = PBXGroup; children = ( - A6179AF4553C12DF60BC1A24C95AC1B5 /* Info.plist */, - 4ADA72709FFEA8DBD3A9F7FDB1F27EC8 /* SWFrameButton.modulemap */, - 2F89623B2D19F7305130DD825BB18353 /* SWFrameButton.xcconfig */, - 472467EDD07BF0A73AA57F202CD729E4 /* SWFrameButton-dummy.m */, - AAE67B4C0CB43555A85D6698B4A52E50 /* SWFrameButton-prefix.pch */, - D66FC5C5460E71FAFE1C79784F7BC489 /* SWFrameButton-umbrella.h */, + 0F276140F3A59CE005F1799A31CE5A5B /* NSData+ImageContentType.h */, + C3300AE7266ED5C0CE5770F1FC59666C /* NSData+ImageContentType.m */, + 28F2ACB79333B3B611C1F2FD4169BC88 /* SDImageCache.h */, + EDB31D781CB10C17EB33B6775082A583 /* SDImageCache.m */, + DCE8663390B28BAAF90EEC564C343FC7 /* SDWebImageCompat.h */, + 5E411588639259E7495BF1D18800ACC9 /* SDWebImageCompat.m */, + DBFD87795E62A3C63B63548D1C19ABDD /* SDWebImageDecoder.h */, + BA90A33B9CE96F240C504CDAE123DE9B /* SDWebImageDecoder.m */, + 4B409FF11D750CA4BA50E99F3A5E9DE9 /* SDWebImageDownloader.h */, + B52F45F9C921D00B4CD5607586EB48CA /* SDWebImageDownloader.m */, + 05DCCE465F94E5C9893C80E38E7B8DC6 /* SDWebImageDownloaderOperation.h */, + D10A44DD09EA9FC9FB8A87129838D49A /* SDWebImageDownloaderOperation.m */, + 564FB8B1E2F32AF451C1A5CA67E435CA /* SDWebImageManager.h */, + 255EE026B4E014B685A142131C75E372 /* SDWebImageManager.m */, + 17B1CF4342199C64785EE0088C953764 /* SDWebImageOperation.h */, + 37DD53D7F475DC0B4C60F4E81CE89B31 /* SDWebImagePrefetcher.h */, + D24CFD0681F4BDB2D76EC9E1BBC40B13 /* SDWebImagePrefetcher.m */, + 9EAB4581362A9199223F0146BB0EFF3E /* UIButton+WebCache.h */, + 8EBE38DCD4CA838704AABF1C711DD2C7 /* UIButton+WebCache.m */, + 3F7DD668659E62565F7AC4D0862B5AD4 /* UIImage+GIF.h */, + 80FC2707D403314A29E76CACFCC7E556 /* UIImage+GIF.m */, + F32AC9B14ACAF04107AD0FB0B78A6BCD /* UIImage+MultiFormat.h */, + 2E6092B3E189C1E1AFF57F0696410090 /* UIImage+MultiFormat.m */, + 01D95B644BA56122C1940D6EA857526D /* UIImageView+HighlightedWebCache.h */, + DFC4AEB0E3B9DD4E09BF0EC3A55E444A /* UIImageView+HighlightedWebCache.m */, + B554318291784CCD16C7E148C5FED09A /* UIImageView+WebCache.h */, + DE035DFC4B3CFD9A79865683DADC428B /* UIImageView+WebCache.m */, + 7EC6443161D72C2C76F1F9920132DC00 /* UIView+WebCacheOperation.h */, + 2611D7ED02B1F6B75E8FBB55F53505B1 /* UIView+WebCacheOperation.m */, ); - name = "Support Files"; - path = "../Target Support Files/SWFrameButton"; + name = Core; sourceTree = ""; }; - 33BBDC971B4BBC71700D32A33B1153CF /* Support Files */ = { + 16808506C75C74D61F23798FD1E65882 /* NSGIF */ = { isa = PBXGroup; children = ( - 5EC40F6CABFC086D3DDEEC1E1495B55F /* Info.plist */, - 590E014B3423654B12EA345F0958FA3B /* NSHash.modulemap */, - 1D62F72130DA5FB0010644C5E51B4E81 /* NSHash.xcconfig */, - E467E322017745119BAB96E14950744A /* NSHash-dummy.m */, - B71B727300F30374573F92DA9C4FDF0C /* NSHash-prefix.pch */, - EB58037C6EAB5A003CFF8951B361DB17 /* NSHash-umbrella.h */, + 95ECDC95EE4984C846F621D8F3288207 /* NSGIF.h */, + 614E532273AE81EA05F95ABE1D5D5C5F /* NSGIF.m */, + 3CA76BC34747E6061650E2FECB81F2B6 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/NSHash"; + name = NSGIF; + path = NSGIF; sourceTree = ""; }; - 37A1B591E6D8740DC51B0E1728426942 /* Reachability */ = { + 1A391173A50373513BC591B10BB47E1A /* Support Files */ = { isa = PBXGroup; children = ( - 4539B2AD1B7A2981A63164068A69D371 /* AFNetworkReachabilityManager.h */, - 3759E544FECB7204C85D3663715B009B /* AFNetworkReachabilityManager.m */, + B541FCB32651C0D456F5C1A4EAA87EE3 /* Info.plist */, + DCB614C8D2B92A36FEB70FF8E410DA77 /* SBJson.modulemap */, + C05622BF2183E6AC4F857F315E496411 /* SBJson.xcconfig */, + 5C34848C8DC5AB25B2E7DED0A0AF77E2 /* SBJson-dummy.m */, + 40FF1C41F142F1173DA2A511F629CCF7 /* SBJson-prefix.pch */, + 2CD6B3E6404FB83FD02B77D944AB0F1F /* SBJson-umbrella.h */, ); - name = Reachability; + name = "Support Files"; + path = "../Target Support Files/SBJson"; sourceTree = ""; }; - 38AB758C201B0E5CCF520462AAB52E64 /* DHSmartScreenshot */ = { + 20C0CA9882CAA5280F0AE5B0BD6D3073 /* SocketRocket */ = { isa = PBXGroup; children = ( - B1FED6BB32FCF22B7581089F2F79F96F /* DHSmartScreenshot.h */, - 8A85132B4F4ECA411A9AC7305665CC35 /* UIImage+DHImageAdditions.h */, - 81014B78ECCAEA1A7DA25F40DAE5CFF5 /* UIImage+DHImageAdditions.m */, - 0EEB8EA978E33681A9406C3C9B9BBBEA /* UIScrollView+DHSmartScreenshot.h */, - 3782B740FF13EAFB0F93D537D5B5735D /* UIScrollView+DHSmartScreenshot.m */, - FC8F0894C4EDA6BEE359D10E3178699D /* UITableView+DHSmartScreenshot.h */, - AF3C2E2D5D24E4976B4E92F5360C7DF9 /* UITableView+DHSmartScreenshot.m */, - B5D6C1E40EBE740FEC2AC48971177C69 /* UIView+DHSmartScreenshot.h */, - 58E8D05FA902E7375941CBB53982E09E /* UIView+DHSmartScreenshot.m */, - 7228F6D2AF2753F061FB5B5B46376652 /* Support Files */, + ED02686A4F4B9FD0BBF1BC30F9E2DDC7 /* SocketRocket.h */, + 1056257729341D8053BB57A257C477CD /* SRWebSocket.h */, + C07F86B0478ED1F02702414465541E52 /* SRWebSocket.m */, + F5B98B50EC3FD3AD42D55E2A2114D689 /* Support Files */, ); - name = DHSmartScreenshot; - path = DHSmartScreenshot; + name = SocketRocket; + path = SocketRocket; sourceTree = ""; }; - 38D258C09F5D68C4C6376A8D761BAA23 /* Core */ = { + 243F55F97DB44FC93E3E1CF0BB1D7730 /* SCSiriWaveformView */ = { isa = PBXGroup; children = ( - 080E2B037A44BC16B4F78781D1BA4A09 /* NSData+ImageContentType.h */, - D3E6894E91930FAB0EDC269C8152753A /* NSData+ImageContentType.m */, - 28CC6A8E28E2D09E4300719432A4A3A3 /* SDImageCache.h */, - F0DB0650D8DB7B7CF9E949BFE4CA00BC /* SDImageCache.m */, - FB7D889D36CA71F37C9B6769F59AFE7B /* SDWebImageCompat.h */, - 0878523EEBFED18E36A91E503D2BA72F /* SDWebImageCompat.m */, - 5DF9CEECDC891DC10424F5DF51252A23 /* SDWebImageDecoder.h */, - EBCFD00C89E3D082AB027C278509DB9E /* SDWebImageDecoder.m */, - C5D3C476ABC10FEF974878F734D22BCC /* SDWebImageDownloader.h */, - FAF8F06C0A661799B747053260C6C36A /* SDWebImageDownloader.m */, - 2BC562FBC608AFC6E9E8CFEAA9376C5A /* SDWebImageDownloaderOperation.h */, - 6CB56540951EF36C5E98755E6A042969 /* SDWebImageDownloaderOperation.m */, - 7FFB6970057D1DECB543BE1227FBE931 /* SDWebImageManager.h */, - 95FB0B29582B6B316B7FDF115A309002 /* SDWebImageManager.m */, - 5EF013AD7640EB2FF5D1FDBED5564A57 /* SDWebImageOperation.h */, - 31DFF4C559C490B4B3C4A1E158F300DC /* SDWebImagePrefetcher.h */, - BB8978F6FAD7AA07B82DF26583562551 /* SDWebImagePrefetcher.m */, - ED8D20BD1D73E556A97BBC712084C3B2 /* UIButton+WebCache.h */, - F375EB45AE6A0ABED338DBF85E73E44B /* UIButton+WebCache.m */, - 0FA2AECF983D5FFC3CA773311BF56DF6 /* UIImage+GIF.h */, - 1C3B508E8776DD92B702C42B11FCCDAA /* UIImage+GIF.m */, - E252D91E905FE8C0D7C180945B7DF4AA /* UIImage+MultiFormat.h */, - 9ECA4DFB3BC38760CD4BD4C3121A1129 /* UIImage+MultiFormat.m */, - 436CD1ADDC482ADE71C853AD7F499378 /* UIImageView+HighlightedWebCache.h */, - C0D3ED3B8811A0ADCAE6456BE8C2C8ED /* UIImageView+HighlightedWebCache.m */, - EF8EDA7B79DBE2339D4A925BA5BCF4A4 /* UIImageView+WebCache.h */, - 6D9F5D5ED642958F3F18F0250A7B496F /* UIImageView+WebCache.m */, - 7B737DF2327EA9517E4809C357227AF9 /* UIView+WebCacheOperation.h */, - 33F4EB50E96AB2F8DC4CD05CF183CE31 /* UIView+WebCacheOperation.m */, + 83EDEC70CACBF50BF7CF7F368572C91C /* SCSiriWaveformView.h */, + 84131B04EF0BC7FE5CF4A03430C50F9C /* SCSiriWaveformView.m */, + 99770396DDD385346D629E8925E34723 /* Support Files */, ); - name = Core; + name = SCSiriWaveformView; + path = SCSiriWaveformView; sourceTree = ""; }; - 3E6E8841DA2B62CBFAAA8A7A967BBF31 /* DTFoundation */ = { + 2500D0B2F393CBEBB02F84640339B769 /* SDWebImage */ = { isa = PBXGroup; children = ( - ED4ABD73AF2C8CBE84CBAB8319D92DCF /* Core */, - AE6F9868FC1B6359ED4F44CC2CEC9F2E /* DTAnimatedGIF */, - FC0AFA34726C65DBDD7832F304D0A63B /* DTHTMLParser */, - 5357C6BE39A5A59F551245BDDEBF59A1 /* Support Files */, - B61A955258376E64BF3AD2EF1F5D814E /* UIKit */, + 157BDCFAB9BFED091DE64D7CE1283B25 /* Core */, + 3A310CC6585C32ADDC9CD82EC23353C0 /* Support Files */, ); - name = DTFoundation; - path = DTFoundation; + name = SDWebImage; + path = SDWebImage; sourceTree = ""; }; - 3F3D95D164D3AFC22CED0133D556C710 /* NSHash */ = { + 26C4DC4D24F79B49368CFB7DD181BD15 /* TTTAttributedLabel */ = { isa = PBXGroup; children = ( - 2474DAE9953ADD22699BD66EB632309C /* NSData+NSHash.h */, - 78FD0A2A3B50A34AAEE429D69C2DA98E /* NSData+NSHash.m */, - 366B38CCEAD69FCF0636F6B8026B84B9 /* NSString+NSHash.h */, - 71307B0292B7D17DF506FB8C9D8C21A1 /* NSString+NSHash.m */, - 33BBDC971B4BBC71700D32A33B1153CF /* Support Files */, + 0F86C9C4F05F2541956E658A05E32A4C /* TTTAttributedLabel.h */, + A4DB07331834EE420810ACE5818BA66A /* TTTAttributedLabel.m */, + 0B13C4F4077A3999D75BBCDDB893C97E /* Support Files */, ); - name = NSHash; - path = NSHash; + name = TTTAttributedLabel; + path = TTTAttributedLabel; sourceTree = ""; }; - 3FE354C3381AA7DE5E5575C3048BA40A /* Support Files */ = { + 29098340EB83D7F9387514B747356DF7 /* Support Files */ = { isa = PBXGroup; children = ( - F0FAFBB02EFDE89577F48D115C59B9BB /* Info.plist */, - 42D74E06F875F33B93F9AF41BC839F34 /* JDStatusBarNotification.modulemap */, - 115407352E7C9A00474354765D0ED9CC /* JDStatusBarNotification.xcconfig */, - DEF243AA454536B04D54B074E4AEA575 /* JDStatusBarNotification-dummy.m */, - 5C5F1B44E4AA776DBFF2E9B338A065C1 /* JDStatusBarNotification-prefix.pch */, - B4CF75719238F597094A0F5082F026B5 /* JDStatusBarNotification-umbrella.h */, + 28C34FF88E05FBB571B24BDA44727978 /* Info.plist */, + 77AD935A126F6D6C433363BB4AD75CB4 /* MBProgressHUD.modulemap */, + E90E238562876143893C530D7D0A72BB /* MBProgressHUD.xcconfig */, + 6BA5142C71BB5BEDE7E2BC94DD0DB81D /* MBProgressHUD-dummy.m */, + 030710C35A1C9C2BDE464FFDC0CFD8A3 /* MBProgressHUD-prefix.pch */, + FF0FF702957B1B7F60E84646B51986E6 /* MBProgressHUD-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/JDStatusBarNotification"; + path = "../Target Support Files/MBProgressHUD"; sourceTree = ""; }; - 3FE526AEB2D5C8689AC4EA5C516EEE6A /* OMGHTTPURLRQ */ = { + 2A06E13377AC8CBA50F9D4F43126B770 /* Resources */ = { isa = PBXGroup; children = ( - 65255CE8C089DBAC5B46B958BD4188DF /* Support Files */, - 947DBCB1B694E6B8D1864B3344A1C587 /* UserAgent */, + 694FB132360329F037F4390CFA29D957 /* LTHPasscodeViewController.bundle */, ); - name = OMGHTTPURLRQ; - path = OMGHTTPURLRQ; + name = Resources; sourceTree = ""; }; - 402C2C4F83F5B8D0C559BE370584FD83 /* SocketRocket */ = { + 2B3B4862A889AEDA7B83EA6A4B987ED5 /* INTULocationManager */ = { isa = PBXGroup; children = ( - B316970E474EA377575953D5899B249B /* SocketRocket.h */, - 1892499FF6ABB4BC6ECA5C278874732C /* SRWebSocket.h */, - 12692D9853407786F7ABCDF0D2A6BF9A /* SRWebSocket.m */, - 1A065D0E5F9FD150D5B9A915F3E21C9D /* Support Files */, + 0E3725FE5A9F08FF6DA978D65A4E0147 /* INTUHeadingRequest.h */, + 62E5410520A51BFE20C24BAC455CC4E3 /* INTUHeadingRequest.m */, + 1015A993C8DDA9E33B16E701E2C225E5 /* INTULocationManager.h */, + 65BE6E74959389FC6E039CAFEB17E283 /* INTULocationManager.m */, + A533DF28C707710B043376272DF45DC2 /* INTULocationManager+Internal.h */, + D774EA699233126AD4FD8FDAE3030F73 /* INTULocationRequest.h */, + D64CF917BF56F6EBF552F05705C4D92B /* INTULocationRequest.m */, + 78170FEADEDC8142342FA15AB3ECEE1B /* INTULocationRequestDefines.h */, + 6B349C8FB2ACDCF06B237A4DA48D4DFB /* INTURequestIDGenerator.h */, + 85C9466CE1AFC8FA88435FBD037844EB /* INTURequestIDGenerator.m */, + 663125A722D8D504C487DA9F92C8B640 /* Support Files */, ); - name = SocketRocket; - path = SocketRocket; + name = INTULocationManager; + path = INTULocationManager; sourceTree = ""; }; - 428FE5E529B2670EEC319E841FD3955D /* Support Files */ = { + 2C441C972BF5D9F38CB074546219A94A /* Support Files */ = { isa = PBXGroup; children = ( - 37D92F9A948E07E81E5E1945F3F052D3 /* CYRTextView.modulemap */, - B5BFC1EB32AE6E368BEF8E4C844FCCAE /* CYRTextView.xcconfig */, - 790418510CC343E0B8B2E88D154692C1 /* CYRTextView-dummy.m */, - 98F93BF746088BD08A43B0F898F86047 /* CYRTextView-prefix.pch */, - 44132EBC5255D4397B14E0680BB2F09A /* CYRTextView-umbrella.h */, - F8BCB7F8EF4BB36051FAE00EE0873C48 /* Info.plist */, + 153B529F0D5C7F718F3731D16A95E512 /* Info.plist */, + 1AD3EBA32868169EA6246263F27F5DD1 /* REMenu.modulemap */, + 5013707F6E5C2FACE8D34360174F5063 /* REMenu.xcconfig */, + 2C8E8C270812CB43A578833FE6ED293E /* REMenu-dummy.m */, + 7588ECEA8545180EDFAAB50D390023A1 /* REMenu-prefix.pch */, + 98A00647112E8652A54C2E4F70E2E973 /* REMenu-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/CYRTextView"; + path = "../Target Support Files/REMenu"; sourceTree = ""; }; - 46168195E47C89874289D58B9F516544 /* SCSiriWaveformView */ = { + 2E83341B3A76A7AFB762B48364C9F1AE /* Support Files */ = { isa = PBXGroup; children = ( - C663DB6AC96042F184E96971199D94B0 /* SCSiriWaveformView.h */, - BABE6FBA4F5F2244E7CC6B584D54AD13 /* SCSiriWaveformView.m */, - 8AF8024F3CCA8B9F47999F3BC7B7396B /* Support Files */, + D334C69FD22C03C6C91D7F26A277CE79 /* DAKeyboardControl.modulemap */, + 9BF25E92F5B16C19D47C63220BDB8722 /* DAKeyboardControl.xcconfig */, + 3D9ABEFF734526840FF95C8D4A1A8CD2 /* DAKeyboardControl-dummy.m */, + 8A728CDF8BCE69A5C8F1F4570A020212 /* DAKeyboardControl-prefix.pch */, + 2543F07CDF4DA07ACD25B22E8951717F /* DAKeyboardControl-umbrella.h */, + D1E30E75AD52854772E44CA86776F37D /* Info.plist */, ); - name = SCSiriWaveformView; - path = SCSiriWaveformView; + name = "Support Files"; + path = "../Target Support Files/DAKeyboardControl"; sourceTree = ""; }; - 471DAAA43232CC59DA05D3F7C83E880A /* Products */ = { + 375687566ABAFED4A408B92EDFC93823 /* Reachability */ = { isa = PBXGroup; children = ( - 2D4ADE4C20831039396304AA5EDEF8B7 /* AFNetworking.framework */, - 355A6E0A08133F5F8A1D9D8303199B0B /* AFOAuth2Manager.framework */, - F317EB4C0CEB689029DA57B335760F5D /* AHKActionSheet.framework */, - 06BDE56198FDC500D30CC7B9EDC5603F /* APAddressBook.framework */, - AD2B78C2EB12B739883EC7F070D0A9BB /* BBBadgeBarButtonItem.framework */, - B9AFD97E49C0A5B2D4AFC7F4A07E8279 /* CYRTextView.framework */, - 09DAD75D5B021553010649117A69BE65 /* DAKeyboardControl.framework */, - 72FF62384B3E33CDE26D484E15B77B29 /* DHSmartScreenshot.framework */, - 0E05AE7BBAB418ADA03DE7B6121E2B18 /* DTCoreText.framework */, - 634D56DF8F42A3D41685370E62FE0B00 /* DTFoundation.framework */, - E5ACEF83BCA1DCE26C8E922AAD68CA28 /* FLEX.framework */, - 8362E8A61097038AB09A6B912500A0EA /* FreeStreamer.framework */, - F1B8767600094CAED163453B276D1CA6 /* HMSegmentedControl.framework */, - 33198587ABE4852DB47BFA7D3FE7C1A6 /* INTULocationManager.framework */, - D6E9CFA0932564C2C03539E5C27EEC38 /* IQAudioRecorderController.framework */, - 89DE2F4F4EA8BCB3A5CE47FE3146A7E2 /* JDStatusBarNotification.framework */, - 3518C06CDFD63ED1E96296FDD2DE9074 /* JSCoreBom.framework */, - DC55BFE9F2BFB808772DBAC1FF2ED86D /* libPhoneNumber_iOS.framework */, - 024659C127EE084D75B055A52C405C18 /* MBProgressHUD.framework */, - 9E13FBB39ED29F5574AB95FD177106E1 /* NSGIF.framework */, - A34BDD0A87FC15E9743D3210DA0849B1 /* NSHash.framework */, - CB32D6C0521BA198991B51ABD2851915 /* OMGHTTPURLRQ.framework */, - 6FDACA53B2B908A55FD35F4EBEDE7288 /* PHFComposeBarView.framework */, - D8A34F8D433A1C989C448B177CC11E29 /* PHFDelegateChain.framework */, - 103498FC5695C98428B1A54FE6F0D0DE /* Pods_Jasonette.framework */, - 1DA4A73EB8718A06D9A4AC73EBC93614 /* Reachability.framework */, - ED3E9E535678844CED14E4A03AA3B3F8 /* REMenu.framework */, - 5D068FDBA33E6700A79536DF6A8598DB /* RMActionController.framework */, - 81224D24B35ADC5B54004248915DB727 /* RMDateSelectionViewController.framework */, - 531FCE527913ABF88780A90E846F9E48 /* SBJson.framework */, - 326F3D8F95FEAEC57AF94540AB534A59 /* SCSiriWaveformView.framework */, - 4537BCF6D84551EE9D3E4EBE373BCF15 /* SDWebImage.framework */, - 045B91A5BF5EEDBF372D283B73191454 /* SocketRocket.framework */, - 0C90C4CAF67B763BB603C833E56D32AA /* SWFrameButton.framework */, - 664C1E4D0D8CC1723D0A4FFE4F706103 /* SWTableViewCell.framework */, - 991A13C0F86862C917F24BB671F468D5 /* SZTextView.framework */, - 76C5650E8AD0E719C8914D41DB24051C /* TDOAuth.framework */, - 3C0B1E93A438105E594BCEAAD7B3D886 /* TTTAttributedLabel.framework */, - 5B6CF5190869B64E3F80E9F06ADC2A42 /* TWMessageBarManager.framework */, - 36D8A103FD7C2C537051BAB6E2CC944A /* UICKeyChainStore.framework */, + 8982FB84582984831579D2E314460861 /* Reachability.h */, + 9F37F960C46352D28F46DF9C2ACDC484 /* Reachability.m */, + F78C883724DD806FDD0AF8D1A43DEC55 /* Support Files */, ); - name = Products; + name = Reachability; + path = Reachability; sourceTree = ""; }; - 4749C346758DC7440B301AA1AC0D4C59 /* NSURLSession */ = { + 39AE040940E27B02D23FC0E2BDFE4AFB /* RMActionController */ = { isa = PBXGroup; children = ( - E9CD907AF42E99BA6EC5C82D31090172 /* AFHTTPSessionManager.h */, - 4C53801A01823DC1DE30867CEDA6F360 /* AFHTTPSessionManager.m */, - 0BC48019E000E5DD480ADCD47F8A9033 /* AFURLSessionManager.h */, - 833F7DD3D68BBA748A38508A3E074106 /* AFURLSessionManager.m */, + 6271826907CD8597A4FDB9CA56887C4C /* RMActionController.h */, + DEF9F2C56601D0B98853CA21F4EB5C5A /* RMActionController.m */, + 8BA84C4B08BFE449855370B70D73EF82 /* Support Files */, ); - name = NSURLSession; + name = RMActionController; + path = RMActionController; sourceTree = ""; }; - 4C5C0E8D0E5D05EAAAE5CAACD0F4189D /* HMSegmentedControl */ = { + 39E713E4154E7BD022C9A04B9969FE77 /* SWTableViewCell */ = { isa = PBXGroup; children = ( - ED48DDEACCE3A6BAAE9FD584B0E1C4A8 /* HMSegmentedControl.h */, - BA56551F5FA28B82CA66A7DC4520361A /* HMSegmentedControl.m */, - E52BCF13B56EB2B97BE61E1B453E35AA /* Support Files */, + 2147E07A49D43AC9D8BE9F2579E2AF5E /* NSMutableArray+SWUtilityButtons.h */, + B3D34AA82B8A05E495821D7983DA906A /* NSMutableArray+SWUtilityButtons.m */, + 5A218A487C09296FD7C4E83D305DA7BE /* SWCellScrollView.h */, + D57504275027323EC3ECD7BC2F4127F0 /* SWCellScrollView.m */, + FAB0D13D52566E1F13D5D9BE60E81396 /* SWLongPressGestureRecognizer.h */, + ECECFD0C9E200A437BE64395814BBE28 /* SWLongPressGestureRecognizer.m */, + CDC0A1D1D65AEFB1CBA76458D8F180D9 /* SWTableViewCell.h */, + A411C2A65F0D437713432504EEFE1B6C /* SWTableViewCell.m */, + 4FE471E282BDC6D9C3252D480850BE4D /* SWUtilityButtonTapGestureRecognizer.h */, + 4E56B8BFA4A4729166C37E4CF17EF4D0 /* SWUtilityButtonTapGestureRecognizer.m */, + 98E9B9D6D6A8F36C8AAF9C87491EA5BB /* SWUtilityButtonView.h */, + B73D44FE9039C758BD80FA8925FCDC3D /* SWUtilityButtonView.m */, + 3D7D432D2F8891D087BA9AF89364BEDB /* Support Files */, ); - name = HMSegmentedControl; - path = HMSegmentedControl; + name = SWTableViewCell; + path = SWTableViewCell; sourceTree = ""; }; - 4DA8D008410619A7D067BD1D096E0C28 /* Support Files */ = { + 3A310CC6585C32ADDC9CD82EC23353C0 /* Support Files */ = { isa = PBXGroup; children = ( - 0757AA60C7AFE8F5B0E623F05C99D58A /* APAddressBook.modulemap */, - 6880352DF326EFEA2022BF3B98EA7DD1 /* APAddressBook.xcconfig */, - 7428F379FCB715DBF9A1D3CCC796F985 /* APAddressBook-dummy.m */, - EFE6A52B83F77C6059D15FE25CF7B78E /* APAddressBook-prefix.pch */, - 5052A06269C37B342C6F225A934E7AF6 /* APAddressBook-umbrella.h */, - 13A03E87547620D3250671D51406E42C /* Info.plist */, + 9A07424D37B583059CE25570D35B5925 /* Info.plist */, + 2309D345E02AA9A88A8DA0592F35004F /* SDWebImage.modulemap */, + 0A9D4D1C84F647FF9C12D7E78C4B2C22 /* SDWebImage.xcconfig */, + 8FAEBB2DF09EDB2D825312977565370D /* SDWebImage-dummy.m */, + D3173AD2960452B2A857B48480B3A874 /* SDWebImage-prefix.pch */, + 9763D8BB7F39DFBE29FEC33E126EBE17 /* SDWebImage-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/APAddressBook"; + path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 4F23C2CB2ADA1AD4C2B7E9DAC7176E9A /* AHKActionSheet */ = { + 3ACAD6555ADDCF6072244C83EF019C48 /* Support Files */ = { isa = PBXGroup; children = ( - 672606C10EFC966911E712E8D2B588DA /* AHKActionSheet.h */, - 05E51E2B41499156289712F0F5CB1FE4 /* AHKActionSheet.m */, - F71B093A516957C2EF3A4D20CCE60753 /* AHKActionSheetViewController.h */, - C1EAC35E4ECAF861BA70D40CFFDE4FB1 /* AHKActionSheetViewController.m */, - 33E1639F29E79EC064ABDC66F03C8EBB /* UIImage+AHKAdditions.h */, - 7ADE36751F4B590C3B6E54FA9031CA50 /* UIImage+AHKAdditions.m */, - 62129851FDC81D7C3A56EE96A8B471F0 /* UIWindow+AHKAdditions.h */, - 73B597B24FDB45F7B4BD7987A6BADF89 /* UIWindow+AHKAdditions.m */, - 51C672ABF6C7FEC5206B98B497C34401 /* Support Files */, + 5D09E6314A859A92AC55D716BDE2739E /* AHKActionSheet.modulemap */, + 5BBF1A1DC3395406A18DCB8D4E729576 /* AHKActionSheet.xcconfig */, + 4820F0BD63DF533050D468F50D0E5B86 /* AHKActionSheet-dummy.m */, + 184565290E400D5F1669ED087A84498F /* AHKActionSheet-prefix.pch */, + 017F628317263E52AABBD26A3B49351B /* AHKActionSheet-umbrella.h */, + EA2A57908C5C47CF0124C1A832AB67E2 /* Info.plist */, ); - name = AHKActionSheet; - path = AHKActionSheet; + name = "Support Files"; + path = "../Target Support Files/AHKActionSheet"; sourceTree = ""; }; - 4F3F54376D9389A55DDE316FD33FDBBC /* Support Files */ = { + 3CA76BC34747E6061650E2FECB81F2B6 /* Support Files */ = { isa = PBXGroup; children = ( - 81D7C066C8E87C289D5146BD0B1DAE33 /* Info.plist */, - 674E955E6A75AA3AF8D87B5AD1B623FF /* SWTableViewCell.modulemap */, - 556377BE586B30F75EAB70F380FA8524 /* SWTableViewCell.xcconfig */, - 6090165E4696F02B1C8BA332A928E3AD /* SWTableViewCell-dummy.m */, - DD8E80E95CC01161DA3F8F6ACA9441AA /* SWTableViewCell-prefix.pch */, - FA4506ED74CD60F44DD3914DFF187A5F /* SWTableViewCell-umbrella.h */, + 12A37A05811BA7B0470FF6C03F050AFF /* Info.plist */, + 7DDC90671F94452B365B5453DA02995A /* NSGIF.modulemap */, + 85C23800018D25D157D61484A002149E /* NSGIF.xcconfig */, + D56EAE05EB0AF4B07CA9E8CCB9400FC3 /* NSGIF-dummy.m */, + 22E78B19E5000DB6B54D9801EF2807C2 /* NSGIF-prefix.pch */, + 695E80B1F8540EB5CA8C8C9429B3D62C /* NSGIF-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/SWTableViewCell"; + path = "../Target Support Files/NSGIF"; sourceTree = ""; }; - 51C672ABF6C7FEC5206B98B497C34401 /* Support Files */ = { + 3D7D432D2F8891D087BA9AF89364BEDB /* Support Files */ = { isa = PBXGroup; children = ( - 19BCF56C866E8F0E31FB2A393998DE88 /* AHKActionSheet.modulemap */, - 1B890BDB0CF573A2D22AA397765D0DA9 /* AHKActionSheet.xcconfig */, - CBBDCB283EB4F1D4960863D0811EB898 /* AHKActionSheet-dummy.m */, - A8C5534175BD2E595317637BF04F7001 /* AHKActionSheet-prefix.pch */, - 3E86741A5D440F0D0B46888ACACC1C46 /* AHKActionSheet-umbrella.h */, - 88A05779D34FDC3E3AB940E5C6F8840C /* Info.plist */, + 8F259B5763EF5FD9D339417B394253D8 /* Info.plist */, + D4AB5A131D60E352C06FC1C0053FF22A /* SWTableViewCell.modulemap */, + 07949F7B287782EC782E9871C85CEC94 /* SWTableViewCell.xcconfig */, + 4A69EF5BD3D103526F96A3165A459EAC /* SWTableViewCell-dummy.m */, + 323FBA96675D2B9FB343A1B1393CF319 /* SWTableViewCell-prefix.pch */, + 1024CC01CA67B22B6C50F2231D39A0A4 /* SWTableViewCell-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/AHKActionSheet"; + path = "../Target Support Files/SWTableViewCell"; sourceTree = ""; }; - 52188600683AAD080DEFCABE556BD071 /* Support Files */ = { + 3E4A8C48A1EF3AB9DCF437F58A371FAA /* Core */ = { isa = PBXGroup; children = ( - 21B9F97FFBB51D2E82A965156858DBF2 /* BBBadgeBarButtonItem.modulemap */, - 1C7D7A5CB8757D7E775CBCD5252CB541 /* BBBadgeBarButtonItem.xcconfig */, - 076729FF1E116C658D7E8A5D4FA4E203 /* BBBadgeBarButtonItem-dummy.m */, - 8574804AF19D4AAC1CAD6651AC5D33D6 /* BBBadgeBarButtonItem-prefix.pch */, - 3A32273B0CF52F47D61C1ED261D938C3 /* BBBadgeBarButtonItem-umbrella.h */, - 81E7012CB39F3F168A92DF16D51BD675 /* Info.plist */, + D38BA3712161BF4A57D294236BC0EC5C /* APAddress.h */, + C0064A54275A8D636D1BFB900AF1F7EF /* APAddress.m */, + 9CC1D34A7D4F261D66486CA9E7900166 /* APAddressBook.h */, + E2A69D40AE46D6DB5D1E0DD2337EE73F /* APAddressBook.m */, + 09601A063C8FAF8E78B9CE3F57E326A6 /* APAddressBookAccessRoutine.h */, + 5B30A048113079408DAB2EE5C967390E /* APAddressBookAccessRoutine.m */, + 50AF61407797889ABF209BF3C55700F1 /* APAddressBookBaseRoutine.h */, + 0A5A0308174AF310E81EF277B06D095D /* APAddressBookBaseRoutine.m */, + 73038E606132697A47EE5EE7A5F165C4 /* APAddressBookContactsRoutine.h */, + 4984916CAFB76DFB6EAE1F7A5FAF504C /* APAddressBookContactsRoutine.m */, + BB4C261244B454AAB845275BDB84AD94 /* APAddressBookExternalChangeDelegate.h */, + ADFEB64414941B0DE0EFA00C4A76124F /* APAddressBookExternalChangeRoutine.h */, + 52AD87B607C15FFB79D35B21337E7CF9 /* APAddressBookExternalChangeRoutine.m */, + 1C51BD85D38D34971F30C792EAC79B4B /* APAddressBookRefWrapper.h */, + 482174E714D9BE843D0737D31C5A7163 /* APAddressBookRefWrapper.m */, + 8CBCDC6CB3508A350B3A6136CC530D1D /* APContact.h */, + 2DA4876D4B7F207A38AC762A2DBF526F /* APContact.m */, + 794CDDCD33CA229E71632CB3D445E2A4 /* APContactBuilder.h */, + 29349CA4C191898DEF42643D8B58CAD2 /* APContactBuilder.m */, + 8A81F0367B7ACE95B5516A357966189C /* APContactDataExtractor.h */, + 55DC1E074695630DFE328A922DFEFF65 /* APContactDataExtractor.m */, + 2D0E9859152CE536EBC95C4CC1F751B3 /* APContactDate.h */, + 40BB9F9D8CDCFD669BC9A375047477E9 /* APContactDate.m */, + F5D49FF92C639962C7585F2A12CF31D5 /* APContactListBuilder.h */, + 5E4FE1C7CF095483DBCE1A75448879DD /* APContactListBuilder.m */, + 78530D09E660F0440BEC54E9D39164D7 /* APDeprecated.h */, + EF8C2251138DD1E6F1DD451A1ECA3118 /* APEmail.h */, + 31C713021DCD8B9CA1EA9B20C7C5B793 /* APEmail.m */, + 9870EF3654C1FC1D5B117FAE0EE223F6 /* APImageExtractor.h */, + FC6C9C4A05B31B04D4737CE571B00274 /* APImageExtractor.m */, + 17DA5D3EE0388C64C8C7138166C1FC95 /* APJob.h */, + B0275973A544E586721DF5BE05257135 /* APJob.m */, + ADAA126CDA90404DA3029703D7A79870 /* APName.h */, + EBDCB3EEA7B22317525E4C943C6FC3EC /* APName.m */, + 0AD72999DD51572F0D84637685DC7124 /* APPhone.h */, + 40A5FF347055CB51A779565A6F402594 /* APPhone.m */, + 07D8F0B43B5B32E5781B4A4539F13DD7 /* APRecordDate.h */, + 4DB6CC249710222131F70489B6162BEA /* APRecordDate.m */, + 85ABCB43A9FF16DA56D00E75C5307E06 /* APRelatedPerson.h */, + F77126AE85DF1A6E1549D9C7DB4461A9 /* APRelatedPerson.m */, + FC6CC0895E4CCE79698FCD4BB3BA70DF /* APSocialProfile.h */, + 60478A58028459547F02E6B26B7E2C2C /* APSocialProfile.m */, + 805A151F5373EBABAB36EE8DA6500DED /* APSocialServiceHelper.h */, + 349B39BDB7252DECC35C89A81170303A /* APSocialServiceHelper.m */, + E71B0ACA2B30E4123D4661089B00114F /* APSource.h */, + 6F4B46B72B504CFECC519FDDDE4F6A2D /* APSource.m */, + 70F51C6B9E85DCB98DD2E434D934BF12 /* APThread.h */, + A5F95B98AD8FB3A3BCFB481C73F97BAC /* APThread.m */, + 2FC7B5090402E1DA0EB7CF4E3C212012 /* APTypes.h */, ); - name = "Support Files"; - path = "../Target Support Files/BBBadgeBarButtonItem"; + name = Core; sourceTree = ""; }; - 5296FDF8313AA894AD1AC4C4AF1D2A6E /* TWMessageBarManager */ = { + 3EFFC09C74A3552F98FB6816E3F4DCE3 /* libPhoneNumber-iOS */ = { isa = PBXGroup; children = ( - F0139B1F8FC1DC26FCB3BC1524726E4C /* TWMessageBarManager.h */, - 516E62C5BC8A17EE6E1E4B882C90A370 /* TWMessageBarManager.m */, - 182DD150B19C5FA73DA5E0374815DD01 /* Resources */, - 9741125A0F838F2CCB2011AD84BC86B9 /* Support Files */, + CE8E12B6391D0B6BCE23BB2CDB66688E /* NBAsYouTypeFormatter.h */, + AD1B9F1C95313C9A6FC1C2DAE3905768 /* NBAsYouTypeFormatter.m */, + 376203E3DFDADFAF96F4032CF52B1CDA /* NBMetadataCore.h */, + 6E67A83BFA89BCD7CDEDD41A12CE9801 /* NBMetadataCore.m */, + 392CDEB4285C42E05FBCB4C09FE56CA5 /* NBMetadataCoreMapper.h */, + 9B620094280C6723FABBDEC73B62AFFC /* NBMetadataCoreMapper.m */, + 00635D15C733B60A45B76861727DFAB3 /* NBMetadataCoreTest.h */, + 5E95882FCEA987F6F4933E34F413EF3E /* NBMetadataCoreTest.m */, + BBA9AA73A6C5E51405370B2506DE5FBC /* NBMetadataCoreTestMapper.h */, + 755F349E2504D991FBDCD3837903D3F0 /* NBMetadataCoreTestMapper.m */, + FE487F298F6F6CC1C1D04CC2E0995237 /* NBMetadataHelper.h */, + 0248E1832D8E07DFC0F5F428DE729CFE /* NBMetadataHelper.m */, + 0DF8A3876241814FDB93899B1FB843B4 /* NBNumberFormat.h */, + 221173971C9314BAA95602EBCAE6A3C3 /* NBNumberFormat.m */, + F795A93F453D6E0112FC448E7033D554 /* NBPhoneMetaData.h */, + B02815F7F6CF3FA1C35A346B1DD2161D /* NBPhoneMetaData.m */, + DDC1F00676390ADC6D64940A9564991B /* NBPhoneNumber.h */, + B09FD1C44FD802E4FD7617353516B993 /* NBPhoneNumber.m */, + C7E8A5D179C489EB0AEABB97C133C92F /* NBPhoneNumberDefines.h */, + E4689B56BE90BFC7C6F8AB6F5403DB1C /* NBPhoneNumberDefines.m */, + B5D335958D5A0E717705F38218C04854 /* NBPhoneNumberDesc.h */, + D52F422281FF43B903A5B90A2F568844 /* NBPhoneNumberDesc.m */, + 40F92C3A3453B80D668E5AB6D671CEFB /* NBPhoneNumberUtil.h */, + 31015D9F0C7755A222DFF450F7763191 /* NBPhoneNumberUtil.m */, + 6AE499D5D484644909B3C570EEFA757F /* Support Files */, ); - name = TWMessageBarManager; - path = TWMessageBarManager; + name = "libPhoneNumber-iOS"; + path = "libPhoneNumber-iOS"; sourceTree = ""; }; - 5357C6BE39A5A59F551245BDDEBF59A1 /* Support Files */ = { + 43B31827795A7A9E0E4B2824CD342D69 /* REMenu */ = { isa = PBXGroup; children = ( - CD79947C15915FF20CD66B3FE738259D /* DTFoundation.modulemap */, - B02164BA2FE1F57D804FD9C7CCAEA9E7 /* DTFoundation.xcconfig */, - 979C34194C0854F49DDCFBB45F2947B0 /* DTFoundation-dummy.m */, - 2A894CE4911CE5D96BC453472EF26DF5 /* DTFoundation-prefix.pch */, - 3A441A91BEAF123061F281AD3DD364EF /* DTFoundation-umbrella.h */, - 78422E2DD00017E562EB0A5F4B2BC9AC /* Info.plist */, + F5AC0EBA89145E834FDD462E1E371946 /* RECommonFunctions.h */, + A54728737D3A3FC64508F01A44AFCC6B /* RECommonFunctions.m */, + 678DFE0E2B1C7EC758239E2F4F269ACE /* REMenu.h */, + 5D6ECB224FE365BD811DF49436D9FC30 /* REMenu.m */, + EFD56517E0783443CBE1C01627085520 /* REMenuContainerView.h */, + 87D696F13E4BDEBD206521DF6A96FB22 /* REMenuContainerView.m */, + 048E5131C8FC71A9F30BD933711391B1 /* REMenuItem.h */, + 5587581B5F87FFD668818031AC672E8E /* REMenuItem.m */, + 7F2A8055F721F91735290112D1A4918A /* REMenuItemView.h */, + 50E5D5A3402AA2DBA32B47A02A8D0598 /* REMenuItemView.m */, + 2C441C972BF5D9F38CB074546219A94A /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/DTFoundation"; + name = REMenu; + path = REMenu; sourceTree = ""; }; - 5C7DF89942AB7D7A1E869C78D5C3571D /* SZTextView */ = { + 463E97F41430097929570E8B2915874F /* Resources */ = { isa = PBXGroup; children = ( - B5E228D834530598B4322EADA552024F /* SZTextView.h */, - ED16A76D3BFA8B13D40A88B9CCFF4234 /* SZTextView.m */, - F55D420BBCA3C4C005F8DDB08C4D94CF /* Support Files */, + 168507772F60842626535B6D314E37BD /* audio_record.png */, + E2783A5AE6822735BA77E5C1E937C691 /* audio_record@2x.png */, + B8E2552BBBBB9BE2ECB9ECEB1C5788B5 /* audio_record@3x.png */, + 3AC9554B161D682C70E994D30D718960 /* microphone_access.png */, + 0C6218A4CDA1B7FBFE4E1507FD1BF471 /* microphone_access@2x.png */, + F60AF1CB36F20C08FA23C1E8CEFB7830 /* microphone_access@3x.png */, + EF1663BDEE873A9D59EDA97E20EC3858 /* scissor.png */, + 0DE792381F1478293331396A5487E1FD /* scissor@2x.png */, + E84301DE95218891F103B59C0D7BC095 /* scissor@3x.png */, + 246217D71F2D60547E00155028A97DDF /* stop_playing.png */, + D53BB20862E68CF0E0E012066C1D5DB5 /* stop_playing@2x.png */, + 7582CDC7053ADDEFAAA3CE47D8505FDB /* stop_playing@3x.png */, + B37D6D23BA69C116C5E5F3CB73C29B86 /* stop_recording.png */, + B89C3C4C81B7BB3EA6854CB5DD9DFB71 /* stop_recording@2x.png */, + EDC414555B8CFF580AC5FB3A551F2EC8 /* stop_recording@3x.png */, ); - name = SZTextView; - path = SZTextView; + name = Resources; sourceTree = ""; }; - 5EDA3EF3E9A7980978B1A849AAE70986 /* Support Files */ = { + 4F5782ED6D8D0504E5616E4002B4B551 /* AFNetworking */ = { isa = PBXGroup; children = ( - 0F616AFDD8846E1B508E4F9BF690E1DD /* Info.plist */, - 649ED2EEA951D5CD1FF9A425A980690D /* MBProgressHUD.modulemap */, - C1AB42506F99F10F05F55CF245549C21 /* MBProgressHUD.xcconfig */, - B5C29FCFB3EE19158EBE4F401178AC6F /* MBProgressHUD-dummy.m */, - BEB9FC8AA195BA5C9CD87215E2093CF4 /* MBProgressHUD-prefix.pch */, - DD600079B2320B87D93B83FC71C3176A /* MBProgressHUD-umbrella.h */, + 79DBBAC472BD4A3B9101CDB81FFF1C16 /* AFNetworking.h */, + 08961B932559CEEADABAFEDCDFB39187 /* NSURLSession */, + FB75E8778C5D44FFCE88C60B501AF65E /* Reachability */, + EB2ABBA888B8EAA49D617F71FC01AA0E /* Security */, + EE60D7394EBB648778E3C238FCDF15B9 /* Serialization */, + 0440B673F8FD23184FBE414887658E9E /* Support Files */, + FA9C430FAE91218839B0EC61CFDDAF69 /* UIKit */, ); - name = "Support Files"; - path = "../Target Support Files/MBProgressHUD"; + name = AFNetworking; + path = AFNetworking; sourceTree = ""; }; - 5F3AE7238CF78219F61F4383356A1FF4 /* APAddressBook */ = { + 5569E39D6BC052014723B1B2362F39F5 /* AFOAuth2Manager */ = { isa = PBXGroup; children = ( - BF64FA95FF6C8D3F2EC118789AB940AD /* Core */, - 4DA8D008410619A7D067BD1D096E0C28 /* Support Files */, + 8894CC95DC567B22858CF7F456DE636D /* AFHTTPRequestSerializer+OAuth2.h */, + 6EA318FBCB10AE0CEAAD863E8B17AE68 /* AFHTTPRequestSerializer+OAuth2.m */, + 2A2332B1A108E631336028CCF4F04484 /* AFOAuth2Manager.h */, + 0101CFD9A46B816F8AC07A639D46C7EB /* AFOAuth2Manager.m */, + A65D1ADB19477D7A39CFCBBA4CA0DB0D /* AFOAuthCredential.h */, + BDE1DC8E722D6F7487DF5DD3D0FD7A71 /* AFOAuthCredential.m */, + 0509E71F4002A8739DF278F55EBC3906 /* Support Files */, ); - name = APAddressBook; - path = APAddressBook; + name = AFOAuth2Manager; + path = AFOAuth2Manager; sourceTree = ""; }; - 65255CE8C089DBAC5B46B958BD4188DF /* Support Files */ = { + 5620CF8AB84F78A61D4CE13CF29A7E51 /* Support Files */ = { isa = PBXGroup; children = ( - 2D944285744A054AC92C647AD7FB74EA /* Info.plist */, - 3F7A6EC129EA3F778879AC4371DF2666 /* OMGHTTPURLRQ.modulemap */, - C5EBA48F01C00EFFBEBA2824CA0E5AEE /* OMGHTTPURLRQ.xcconfig */, - C3AE3866EB64927E22F28064B4C2E6AD /* OMGHTTPURLRQ-dummy.m */, - 80CA22DA3DAB36CAC64A39D7F050E194 /* OMGHTTPURLRQ-prefix.pch */, - 245F58EAF5658C585E051045F4ED7E73 /* OMGHTTPURLRQ-umbrella.h */, + 9B37394FA7DFA3437416C98B98668D06 /* CYRTextView.modulemap */, + 31D15B14A2E200202AE6ECA04232D10E /* CYRTextView.xcconfig */, + C00E9F6014FCC28B097D023841A7DA6D /* CYRTextView-dummy.m */, + CCAC30C4D618E9597D3EF0F7413A9DEB /* CYRTextView-prefix.pch */, + E7CC7D6E818F3F128C1015ED2F2D74C9 /* CYRTextView-umbrella.h */, + 899EE599A207EB60D2EDF7867726CCF3 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/OMGHTTPURLRQ"; + path = "../Target Support Files/CYRTextView"; sourceTree = ""; }; - 68328A9A6E3063C75A93126CD652E60F /* JSCoreBom */ = { + 59390D5BDA70C3F1C656CFE832D01EBF /* Resources */ = { isa = PBXGroup; children = ( - 95238CDB6D9A985E03040C605CEB404E /* JSCoreBom.h */, - CEA62D551560CCEF562DD72A66C8F810 /* JSCoreBom.m */, - 1BE5DAA3DB03B6727463F8E26C96116A /* ModuleConsole.h */, - 5583539C417F6E02604380624B1BEA32 /* ModuleConsole.m */, - 4FA8422868CB7BC4E3C6A4A9DF12C144 /* ModuleXMLHttpRequest.h */, - DFEABE80C723ED025321FFB73A9A146D /* ModuleXMLHttpRequest.m */, - F1B8347B00996AD2F037703A0A7FDA14 /* Support Files */, + 60AB17D9A77BFA09F5D1C7A10CBDDB3E /* icon-error.png */, + CC51DDB31015BAAECCB9074DBEC101EC /* icon-error@2x.png */, + D99070D6BC5AE08CE279ECD4F9825C2B /* icon-info.png */, + E89E585F590A18027F9E61D85A07A683 /* icon-info@2x.png */, + 8D2B58DE2D1CAABE41C4C289ACD8EDDA /* icon-success.png */, + 134A5AEF25827855A883D162D3546180 /* icon-success@2x.png */, ); - name = JSCoreBom; - path = JSCoreBom; + name = Resources; sourceTree = ""; }; - 683B50654C46124A3DB134F8A618B3EF /* Support Files */ = { + 63FFC7F8055D4482B90826BF7AC4C5B5 /* JSCoreBom */ = { isa = PBXGroup; children = ( - E22BB8E7E27DCBA01E209B5AC1943AA6 /* Info.plist */, - 42A3A03E40B32AAEC3B45CA8B70C62A0 /* RMActionController.modulemap */, - A6747A1839A074695EC82680B73A704D /* RMActionController.xcconfig */, - AD3ABFD948A06BEE96A317BC5C6F3325 /* RMActionController-dummy.m */, - 5D744BB84890F39B0BE3E3E4661DFB57 /* RMActionController-prefix.pch */, - EC832BA8D266ECEB23E447318232D0EE /* RMActionController-umbrella.h */, + 613A2363EEA4D8E47505978617ACEE48 /* JSCoreBom.h */, + 8438F32AB8EB13FBA3BABCA85DA37DF9 /* JSCoreBom.m */, + 22276A8CCAE53313E22A86E0D3C0CF36 /* ModuleConsole.h */, + 1E6AEB325029526A1F166DB71339CB5A /* ModuleConsole.m */, + 0C033C0EE41ADEDE3D36C8F2EB2877C5 /* ModuleXMLHttpRequest.h */, + 2816EF34DFAAD096EFDD337040AB4DE2 /* ModuleXMLHttpRequest.m */, + 842FFA4DB92195FD8AD9E17C29A2F5CA /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/RMActionController"; + name = JSCoreBom; + path = JSCoreBom; sourceTree = ""; }; - 68F2A66855F7835E8B52CD108CBD74F8 /* Support Files */ = { + 651DF5DACC7E6B57E4C93224B742ABB6 /* Pods */ = { isa = PBXGroup; children = ( - 8239E5E097FD3A86DD51E4F2A51AE1C6 /* Info.plist */, - 11A7A22D734B142B99B50995F207F8FC /* SBJson.modulemap */, - 9115628985DF424176D95B62BF9257AF /* SBJson.xcconfig */, - F515558612CF3F4389DAEB0FA237FF6B /* SBJson-dummy.m */, - 0FCBDF21DF6C15FF900AE4FE424D35B0 /* SBJson-prefix.pch */, - 0B6EB2B5A346C307DFA2BD04E436D592 /* SBJson-umbrella.h */, + 4F5782ED6D8D0504E5616E4002B4B551 /* AFNetworking */, + 5569E39D6BC052014723B1B2362F39F5 /* AFOAuth2Manager */, + 0702FE93154D24E482AF43928A38740B /* AHKActionSheet */, + D765D746A786D72BD8A625A2C3937ABF /* APAddressBook */, + D340EF0C51B71489E8E808B989CAA03A /* BBBadgeBarButtonItem */, + D0252CC7C733C670347475C861812D19 /* CYRTextView */, + 75C2B3399A95F6A732E8E87E0B5CBBCA /* DAKeyboardControl */, + DA92D2D57A855CFCAD41EC4BE8686D57 /* DHSmartScreenshot */, + 9C18A29CC7C97E96AD7275ADAECFF0A4 /* DTCoreText */, + ABF8586956CF2415FE568299EDAD1948 /* DTFoundation */, + 0FFFA07E45682260CE39EE2EEE86C0DE /* FLEX */, + CA403A968765A7137A6304141D912334 /* FreeStreamer */, + 74EF6D27A30F3ADF59E74602287BDC82 /* HMSegmentedControl */, + 2B3B4862A889AEDA7B83EA6A4B987ED5 /* INTULocationManager */, + 05274CC953CCEE56D45344019CD50614 /* IQAudioRecorderController */, + E138AC5EC643CC2653BB0A5FC8A55031 /* JDStatusBarNotification */, + 63FFC7F8055D4482B90826BF7AC4C5B5 /* JSCoreBom */, + 3EFFC09C74A3552F98FB6816E3F4DCE3 /* libPhoneNumber-iOS */, + F8BB21EA8D3E835F9E8F6DC0FF22516F /* LTHPasscodeViewController */, + DBD561C58FEC7BD1DC68B7D75B9E4043 /* MBProgressHUD */, + 16808506C75C74D61F23798FD1E65882 /* NSGIF */, + 9B150DEF9DA182A4E0904B110CA3F8CA /* NSHash */, + 0AA345CEB1A34C510EB33B771EB0C822 /* OMGHTTPURLRQ */, + 8AACDDE3B274F177FDA1C9DCEBC60F1E /* PHFComposeBarView */, + 09BA712C9F8575669FB75B5605139F6E /* PHFDelegateChain */, + 375687566ABAFED4A408B92EDFC93823 /* Reachability */, + 43B31827795A7A9E0E4B2824CD342D69 /* REMenu */, + 39AE040940E27B02D23FC0E2BDFE4AFB /* RMActionController */, + 769197C7CA9D5B635A6075F146B7471A /* RMDateSelectionViewController */, + 0139B3ECF2122EAEF227228A7759D7A1 /* SBJson */, + 243F55F97DB44FC93E3E1CF0BB1D7730 /* SCSiriWaveformView */, + 2500D0B2F393CBEBB02F84640339B769 /* SDWebImage */, + 20C0CA9882CAA5280F0AE5B0BD6D3073 /* SocketRocket */, + 9B5790D4399A73AD8D488B749D000AEF /* SWFrameButton */, + 39E713E4154E7BD022C9A04B9969FE77 /* SWTableViewCell */, + A713A9B2AD24F86C75C2D0EA0C6B8612 /* SZTextView */, + F11CE8492282A754E4B04594A44BF111 /* TDOAuth */, + 26C4DC4D24F79B49368CFB7DD181BD15 /* TTTAttributedLabel */, + 876742E70C08C2D434E73B3A7E2CD54C /* TWMessageBarManager */, + B88E860738CDEE5187B0ABED7D1EEE5C /* UICKeyChainStore */, ); - name = "Support Files"; - path = "../Target Support Files/SBJson"; + name = Pods; sourceTree = ""; }; - 6AB08CAD8037E59E8BD3FFB1AA350BB3 /* Support Files */ = { + 653C2CF44C6A54ACF996C64251C1DD67 /* Support Files */ = { isa = PBXGroup; children = ( - D1ABBF21C34A317EBB9E8A1AAB8564C3 /* Info.plist */, - 383C55A404CF6A91B8AE0492E62FB43B /* libPhoneNumber-iOS.modulemap */, - C6F66A7C0E4211844C41D9B03124EF12 /* libPhoneNumber-iOS.xcconfig */, - CD0DBDBCF2306C67A80BCA834E26BF60 /* libPhoneNumber-iOS-dummy.m */, - 780FC90F87FC7C30BF88659E3D400925 /* libPhoneNumber-iOS-prefix.pch */, - 57ADDD9E9288B4121285062A40F73485 /* libPhoneNumber-iOS-umbrella.h */, + 65F59A28B3C679028EE7A4992AC1E2A6 /* Info.plist */, + ECDA1015025D8FE3A1520F9912C82CBF /* IQAudioRecorderController.modulemap */, + 2589EB1541CB9624374C36FFC2C134D0 /* IQAudioRecorderController.xcconfig */, + 5F82ACB03D312133103ADC240BCCA2BB /* IQAudioRecorderController-dummy.m */, + 4C5C73E9A8C79E739DFDC19B125EF936 /* IQAudioRecorderController-prefix.pch */, + C0FC307E45E13AB19C05DC6DADA30CA0 /* IQAudioRecorderController-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/libPhoneNumber-iOS"; + path = "../Target Support Files/IQAudioRecorderController"; sourceTree = ""; }; - 6AEAE603E32C6E8632EE82035F50979B /* Support Files */ = { + 663125A722D8D504C487DA9F92C8B640 /* Support Files */ = { isa = PBXGroup; children = ( - 67F343B8ED9CEFC0E602CA7B4AEC9B9B /* AFNetworking.modulemap */, - 89F70EA775E359EE4B7B043E871EBEB7 /* AFNetworking.xcconfig */, - 34747BC19DBFD60C90B347005AB40E37 /* AFNetworking-dummy.m */, - 7FC885ED63FBF400F5939ED02BA9F23B /* AFNetworking-prefix.pch */, - 9BE938E822026C09880ED03B182D2C42 /* AFNetworking-umbrella.h */, - 9E3844335506890CC277A48128A2450C /* Info.plist */, + 337E5A84CE7EE0A171D717025CE463F9 /* Info.plist */, + 86F24541836558841E9E279F814ACA51 /* INTULocationManager.modulemap */, + 301B750AA42773362113D91FE5674112 /* INTULocationManager.xcconfig */, + F14FBC9CBF6B7F9831F381D3B13691DA /* INTULocationManager-dummy.m */, + A02D0A7FF876F2A2706039618FDBAACB /* INTULocationManager-prefix.pch */, + 6F8980ED07065D80AD44DAE17CDBC0A7 /* INTULocationManager-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/AFNetworking"; + path = "../Target Support Files/INTULocationManager"; sourceTree = ""; }; - 7228F6D2AF2753F061FB5B5B46376652 /* Support Files */ = { + 6AE499D5D484644909B3C570EEFA757F /* Support Files */ = { isa = PBXGroup; children = ( - DDC331AB39D8E1643958358F87759E60 /* DHSmartScreenshot.modulemap */, - DC7B54763AD7B027EC78B4C54FFF5F8B /* DHSmartScreenshot.xcconfig */, - 6DEB3EC1A514A50F3A3170E32CFA587E /* DHSmartScreenshot-dummy.m */, - 223F4D7E435DF8582A45848BADE80F8C /* DHSmartScreenshot-prefix.pch */, - F3B5DA79BC8E90D694D34FECEC5C9F7C /* DHSmartScreenshot-umbrella.h */, - DA8708BCD39267CDCEF960EA7B5DC020 /* Info.plist */, + 315088D18F9BFD753BA9A78F582841B6 /* Info.plist */, + 652AA6410E90991554C0C8C45869BA3B /* libPhoneNumber-iOS.modulemap */, + C20254DBFECE990B5F190DF8569224C1 /* libPhoneNumber-iOS.xcconfig */, + 685BCAADB43947AE22DD9F31C42F9C24 /* libPhoneNumber-iOS-dummy.m */, + 8DD9897A3B24D92F67B74AA6A8A5109E /* libPhoneNumber-iOS-prefix.pch */, + 9F383B19C72795CE40C19266C6F243EF /* libPhoneNumber-iOS-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/DHSmartScreenshot"; + path = "../Target Support Files/libPhoneNumber-iOS"; sourceTree = ""; }; 7493301B84A41C710381956274B71060 /* Pods-Jasonette */ = { @@ -3489,940 +3643,856 @@ path = "Target Support Files/Pods-Jasonette"; sourceTree = ""; }; - 7DB346D0F39D3F0E887471402A8071AB = { + 74EF6D27A30F3ADF59E74602287BDC82 /* HMSegmentedControl */ = { isa = PBXGroup; children = ( - 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, - BF7EB1125F9D4084A52AB14FAA0B1B2A /* Frameworks */, - A3934B7E7F774551143529DD766C39EC /* Pods */, - 471DAAA43232CC59DA05D3F7C83E880A /* Products */, - FBDCEE903C81E7CC0B612C2B31723CEF /* Targets Support Files */, + 1CDB95DA868100191585DA899E92326B /* HMSegmentedControl.h */, + 01552A9BA705169CFDB6D9F4770184F7 /* HMSegmentedControl.m */, + 05F8966C1F2E9D6BAE8EAB18954F63D3 /* Support Files */, + ); + name = HMSegmentedControl; + path = HMSegmentedControl; + sourceTree = ""; + }; + 75C2B3399A95F6A732E8E87E0B5CBBCA /* DAKeyboardControl */ = { + isa = PBXGroup; + children = ( + A4D28E280BD0127321A29B6772F5483F /* DAKeyboardControl.h */, + F866CFDA767FFDCB7DA39BEEEF9D872A /* DAKeyboardControl.m */, + 2E83341B3A76A7AFB762B48364C9F1AE /* Support Files */, ); + name = DAKeyboardControl; + path = DAKeyboardControl; sourceTree = ""; }; - 7DE7A42D099711997B903B1D3DCEFFC1 /* RMDateSelectionViewController */ = { + 769197C7CA9D5B635A6075F146B7471A /* RMDateSelectionViewController */ = { isa = PBXGroup; children = ( - E12C129ADD9AA593E8E9482A0B22E5F0 /* RMDateSelectionViewController.h */, - 2FA01886DA914A69FAD9559FF3CD4841 /* RMDateSelectionViewController.m */, - DD7C259D3A86ECB75ADDC014C92B785E /* Support Files */, + 5F68603B8A3B9E15A40A10B7DB9F9B79 /* RMDateSelectionViewController.h */, + 2BC85BD8EE9E4A6E0558FE3FCA909D70 /* RMDateSelectionViewController.m */, + 8A0DAABC18FB8B2D0B6CBE6ACDBC788C /* Support Files */, ); name = RMDateSelectionViewController; path = RMDateSelectionViewController; sourceTree = ""; }; - 829E8E3D6D25F3F7933D6A212A0C516C /* Support Files */ = { + 76A59C5EE947BFCB4C34584147881A7F /* Support Files */ = { isa = PBXGroup; children = ( - 76760E7024B3ED61A1ECDF59FEE665D3 /* Info.plist */, - 3FDF5BD2CDFD100A591D94B953419D19 /* PHFComposeBarView.modulemap */, - 4A1666E3A5115BBE7B34F0BC70139A82 /* PHFComposeBarView.xcconfig */, - 82DDADAFC8FF296BB4404E78C0C2176B /* PHFComposeBarView-dummy.m */, - A9FB2E9CA07E892E0BFF4588804D6829 /* PHFComposeBarView-prefix.pch */, - B4EDFBA155B2F1F90F2091CDF984E2DF /* PHFComposeBarView-umbrella.h */, + DDAC789391CA676C27B49F7FF833D436 /* Info.plist */, + CC780A7FCFCD5D1E0F7181D90535BFBE /* TWMessageBarManager.modulemap */, + 2727907CCE3FA95D64310F86D4EC3C0C /* TWMessageBarManager.xcconfig */, + FE4EA1F513266F2809CB2476652EBAC2 /* TWMessageBarManager-dummy.m */, + 31F43DDBEEDAEB239BDA893C2784EBE2 /* TWMessageBarManager-prefix.pch */, + A6ABDB66718B75B55D17E534456D15A2 /* TWMessageBarManager-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/PHFComposeBarView"; + path = "../Target Support Files/TWMessageBarManager"; sourceTree = ""; }; - 888617F137BF6745C412A9F02F51BC16 /* IQAudioRecorderController */ = { + 7AAF1A13318BC6F9B7089C316B52BC6A /* Support Files */ = { isa = PBXGroup; children = ( - C897F582833061FA8E77B6E3C84AD56C /* IQ_FDWaveformView.h */, - B9FCDC3C909277DBA560800C498C358C /* IQ_FDWaveformView.m */, - 3D238117BF0AE0095D53AD46682F887E /* IQAudioCropperViewController.h */, - 2FF5D73B67ABD0B32A29AD04D7B2E51C /* IQAudioCropperViewController.m */, - FC9C824683AA33003E4DCE90B4BCCB64 /* IQAudioRecorderConstraints.h */, - 40ADE6B0D7B3C182841E61FF8499599D /* IQAudioRecorderConstraints.m */, - 258E40080201A6A1610D4C2092E2B0CA /* IQAudioRecorderViewController.h */, - 7548DFEBC1E1B7EF0FA46886357DBF9F /* IQAudioRecorderViewController.m */, - EFC70A5FF767A0C4CAFE37F7667BF684 /* IQCropSelectionBeginView.h */, - 7669C15CF12C14B966CBCA761B04279A /* IQCropSelectionBeginView.m */, - B5D822239D5B6D4441933AE04179006E /* IQCropSelectionEndView.h */, - A25B0F17B3E27C10356E64026A3CC271 /* IQCropSelectionEndView.m */, - 1C7511B5F96F22674085EDB2EE767FCE /* IQCropSelectionView.h */, - EFB46F44B27F8D89924EA23C45496DA1 /* IQCropSelectionView.m */, - 2631777D82F1E25DDBF32BEBF471BD43 /* IQMessageDisplayView.h */, - 287CD09B15EFB5F954E425912E5CF073 /* IQMessageDisplayView.m */, - BA519B60E5E20621A384EB8C966DD9B5 /* IQPlaybackDurationView.h */, - 81BABFD8B3E32DB263D450658A19B476 /* IQPlaybackDurationView.m */, - E5C44503E6F5BB74EF5D3E85152DE4E6 /* NSString+IQTimeIntervalFormatter.h */, - F2FFA400E31FFAA930CB1CA6F810DB4D /* NSString+IQTimeIntervalFormatter.m */, - 9529588AFBF11D921B0936F01C063A51 /* Resources */, - 173AFFA48B387ADB874A573771A7D869 /* Support Files */, + 0AE80EDFD79B622C8177FCA186601515 /* BBBadgeBarButtonItem.modulemap */, + 5BCD45784DF8550AAB0DD6DB67BFE3DE /* BBBadgeBarButtonItem.xcconfig */, + D40E25E8104F34C39129DC8B86524175 /* BBBadgeBarButtonItem-dummy.m */, + 37130D6BEBCAAE6EF6A56304934D5D37 /* BBBadgeBarButtonItem-prefix.pch */, + 9B7C10701364ABFBD5216CC27CFD4AFA /* BBBadgeBarButtonItem-umbrella.h */, + DEB1DE77EC9AC79E61674A23C2B501E7 /* Info.plist */, ); - name = IQAudioRecorderController; - path = IQAudioRecorderController; + name = "Support Files"; + path = "../Target Support Files/BBBadgeBarButtonItem"; sourceTree = ""; }; - 89FF6F4FD9187E162A314E120EBA1EE6 /* FreeStreamer */ = { + 7BF7B827EC05357DC9D3D41AE7B48E31 /* UserAgent */ = { isa = PBXGroup; children = ( - C17576B80AFB56F5205F58DF83591155 /* audio_queue.cpp */, - C18064EF11B4E40506A6A4C68EB1AD24 /* audio_queue.h */, - 44753609F59E1F3234DEC6ACFFEDBFD9 /* audio_stream.cpp */, - 50F16E57C4E1C94A93877457E946A650 /* audio_stream.h */, - 2ECECEE29899EC55AE00604EA4E8F1C2 /* caching_stream.cpp */, - C9C02160274476B452178414C493D5A9 /* caching_stream.h */, - D4144A220A2219B829EE7C2F2A0CEEC1 /* file_output.cpp */, - 3735FBC4E804E40917EA59896D4F78CF /* file_output.h */, - 23D37A3E043B6F7D27FF0AF1D062D0BA /* file_stream.cpp */, - 957747C16F150CA097C088E30CEDDC6B /* file_stream.h */, - DA97FD74D88F2129AE8F4C10C0D1358C /* FSAudioController.h */, - 9BED521576A0C8901D9BEB5DF5A753F0 /* FSAudioController.m */, - 63CF4504CF839991AA06FDC5BF836C63 /* FSAudioStream.h */, - 234DA41CC469CC71332648FB615BCB5E /* FSAudioStream.mm */, - DD1F652A8BA3D62026CE5788EA8EDB77 /* FSCheckContentTypeRequest.h */, - 40A578ABC0BE2EB6763B8D53A148583D /* FSCheckContentTypeRequest.m */, - 9392750CF54642F63111ACBECC55036F /* FSParsePlaylistRequest.h */, - 2C2388A1207E457C97DD0E4DB74EFF0B /* FSParsePlaylistRequest.m */, - DFDDA8CC0E525F28BB94226673C5EF29 /* FSParseRssPodcastFeedRequest.h */, - 6F4E51636078614B39192813EEA77055 /* FSParseRssPodcastFeedRequest.m */, - C3A6B11DC9748FD6401F0EDDB0436E9F /* FSPlaylistItem.h */, - 5C6D986F663250767FAA1395B17DECF9 /* FSPlaylistItem.m */, - 1A25E4D2337CDEF01767C153CE059BF2 /* FSXMLHttpRequest.h */, - 3062D16346CDAE15D35B8012329D67CB /* FSXMLHttpRequest.m */, - A5047F39496DDF7609EDAFF9BFADA2C0 /* http_stream.cpp */, - DD0C57A215863A760B22670AD1F09C3B /* http_stream.h */, - 9724CFA63331F84730D457E59915E46D /* id3_parser.cpp */, - 9EFE46D6EBE39C57DF71C86E72B9B960 /* id3_parser.h */, - 611B11604E291C2C381F178E4282CD21 /* input_stream.cpp */, - 25FE2B0FC3BDF80A65BAC018520C6BA5 /* input_stream.h */, - C0C05500DEDABD7F10978C7E52008134 /* stream_configuration.cpp */, - 12156D6239503B7873705ADBF2CC3E76 /* stream_configuration.h */, - 9EF4952820D97F7D5421D888874C3F3D /* Support Files */, + F7417F40EF0DD36D675E18488C540CA3 /* OMGUserAgent.h */, + 81C93C95C4D21E06FB0D18CD81584549 /* OMGUserAgent.m */, ); - name = FreeStreamer; - path = FreeStreamer; + name = UserAgent; sourceTree = ""; }; - 8AF8024F3CCA8B9F47999F3BC7B7396B /* Support Files */ = { + 7DB346D0F39D3F0E887471402A8071AB = { isa = PBXGroup; children = ( - 7C0271D4ED29DAE68D0346A22B3962CE /* Info.plist */, - 36E546F5F8A7FDE643A4E7EA2BAC959D /* SCSiriWaveformView.modulemap */, - 2AB8EE900429EFAD412550DE153BD128 /* SCSiriWaveformView.xcconfig */, - 23F6924A6AC5F0E81B1678CFC98E6CC4 /* SCSiriWaveformView-dummy.m */, - AAE4207668E5E64C6B15CC359984C41C /* SCSiriWaveformView-prefix.pch */, - 4719FAA71CC6413C284B31F9255DCB4D /* SCSiriWaveformView-umbrella.h */, + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + BF7EB1125F9D4084A52AB14FAA0B1B2A /* Frameworks */, + 651DF5DACC7E6B57E4C93224B742ABB6 /* Pods */, + 03AF744A45EE332B81C9E6BF517EFA08 /* Products */, + FBDCEE903C81E7CC0B612C2B31723CEF /* Targets Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/SCSiriWaveformView"; sourceTree = ""; }; - 901966F8B15FEB8D91CCDD7E52BBE10B /* PHFComposeBarView */ = { + 819908341BEB485A773D0AD297FEF591 /* Support Files */ = { isa = PBXGroup; children = ( - 8A6D84D37E96B0463387F75CCEAF7146 /* PHFComposeBarView.h */, - AFD8EC039100E64D2114E8481C8538BE /* PHFComposeBarView.m */, - E80CCCAA8A0488742434000C11EC50B3 /* PHFComposeBarView_Button.h */, - 15C6050D05882AAFB317DEF59F504E2C /* PHFComposeBarView_Button.m */, - 2CA7EC0188DF5B8FBF343D95703F32E9 /* PHFComposeBarView_TextView.h */, - D75FE1BD9329B7DB614FB7BA4D6B9536 /* PHFComposeBarView_TextView.m */, - 829E8E3D6D25F3F7933D6A212A0C516C /* Support Files */, + 58D580F8C5CBDF3D4B53254168EDB5F0 /* APAddressBook.modulemap */, + FC29ADB4D94CCA5D79D4FF34E96DA11B /* APAddressBook.xcconfig */, + 888D5413CDAF7C079B15F75C5A808015 /* APAddressBook-dummy.m */, + 614ABA1DFFD832A8EEC1596645172070 /* APAddressBook-prefix.pch */, + 88D68F4FB0930B290609B4C9035A7CA6 /* APAddressBook-umbrella.h */, + FB613D5DAB632D6583BC75B72323CA4F /* Info.plist */, ); - name = PHFComposeBarView; - path = PHFComposeBarView; + name = "Support Files"; + path = "../Target Support Files/APAddressBook"; sourceTree = ""; }; - 947DBCB1B694E6B8D1864B3344A1C587 /* UserAgent */ = { + 842FFA4DB92195FD8AD9E17C29A2F5CA /* Support Files */ = { isa = PBXGroup; children = ( - 3F1BCFB8B7EF6B3C8CF4601733B1C3A7 /* OMGUserAgent.h */, - 1F37F30A7564A654146F3BF2A838B31F /* OMGUserAgent.m */, + 3A8C8CA84579D482B98EDF23FAEC5E1D /* Info.plist */, + A14D81EA17AB791F0D734DE85546A9BC /* JSCoreBom.modulemap */, + 4AFEB6C702C25BD126FF9644049E318C /* JSCoreBom.xcconfig */, + 1ADFA8E8A10AE28983E43456E577907C /* JSCoreBom-dummy.m */, + F7FF83FB8AFFC070F4DF7B478A211C5E /* JSCoreBom-prefix.pch */, + E7579B5CD6EDC544FF279129A9961977 /* JSCoreBom-umbrella.h */, ); - name = UserAgent; + name = "Support Files"; + path = "../Target Support Files/JSCoreBom"; sourceTree = ""; }; - 9529588AFBF11D921B0936F01C063A51 /* Resources */ = { + 876742E70C08C2D434E73B3A7E2CD54C /* TWMessageBarManager */ = { isa = PBXGroup; children = ( - 1536793F3F8EE667AEE062528C222BAD /* audio_record.png */, - D176B9354BBD8E31B2615D8CAF24DE74 /* audio_record@2x.png */, - 90372249797F0E16B52FE46C4814F890 /* audio_record@3x.png */, - 122A931C5F2B9DCCA1BF7D53ED48C94C /* microphone_access.png */, - D11FA20BFA8610CCF8A537429554CC86 /* microphone_access@2x.png */, - 93D5A3B53B8A0AB694B41A89E063189C /* microphone_access@3x.png */, - FC0FD956DE6EA3F6C4DE1857C27E5342 /* scissor.png */, - 48544A42A4857102CA2541266B0A7C4F /* scissor@2x.png */, - 860C9A20BC4538FDC56921F22E23764F /* scissor@3x.png */, - 58FD328AB69605257D88B5C6850CF2D4 /* stop_playing.png */, - 7D06540118748F906429C464F5168B08 /* stop_playing@2x.png */, - BA54C48877EF60705261EA85AE05196F /* stop_playing@3x.png */, - CCFEEC940DBC404FAA8D79E69846F571 /* stop_recording.png */, - 4EB1AFC0F0BB5EBA3119A05F31FBA2E7 /* stop_recording@2x.png */, - 04C37143C60B15F7D3623A979BA03682 /* stop_recording@3x.png */, + 979EF9C89DAEDD5BFC6569D2A516C5FF /* TWMessageBarManager.h */, + 5BB1539A6FB302C1E72E972FDF08FFDC /* TWMessageBarManager.m */, + 59390D5BDA70C3F1C656CFE832D01EBF /* Resources */, + 76A59C5EE947BFCB4C34584147881A7F /* Support Files */, ); - name = Resources; + name = TWMessageBarManager; + path = TWMessageBarManager; sourceTree = ""; }; - 9741125A0F838F2CCB2011AD84BC86B9 /* Support Files */ = { + 8A0DAABC18FB8B2D0B6CBE6ACDBC788C /* Support Files */ = { isa = PBXGroup; children = ( - 548BF6570B96285AB977EDDD41EDCE7F /* Info.plist */, - 5CC7DCEBD1ABBED086D7F1F493A3F866 /* TWMessageBarManager.modulemap */, - E2C4C7CBCEC4F8CCD8171161D1654AFC /* TWMessageBarManager.xcconfig */, - 761151C232859083642EACDDC74A9ACB /* TWMessageBarManager-dummy.m */, - 5C6A5C0A8B9AED5E7308099137C1AE29 /* TWMessageBarManager-prefix.pch */, - A9E0B998B5AB50343A77AB46611BD8CF /* TWMessageBarManager-umbrella.h */, + 8E98519FDA18376C24D75E5A7D01BB87 /* Info.plist */, + 804547545DB4A9516092B6747A0A4984 /* RMDateSelectionViewController.modulemap */, + 997638DBD299FE77041713720E657263 /* RMDateSelectionViewController.xcconfig */, + 6573E32250A1E1BBB80E30AA4ED0FAB0 /* RMDateSelectionViewController-dummy.m */, + 15D45D910259C556D344D0D5700110A5 /* RMDateSelectionViewController-prefix.pch */, + DB9F27C280BA0D6E584923AB59E0490E /* RMDateSelectionViewController-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/TWMessageBarManager"; + path = "../Target Support Files/RMDateSelectionViewController"; sourceTree = ""; }; - 98E577DF5CCE89FE987161DC2C71ADFA /* RMActionController */ = { + 8AACDDE3B274F177FDA1C9DCEBC60F1E /* PHFComposeBarView */ = { isa = PBXGroup; children = ( - 8B44DC08BAE20CAF9BEBCC7190F8C390 /* RMActionController.h */, - 6FFBC11643DF2BFF23696BEF0F7BD794 /* RMActionController.m */, - 683B50654C46124A3DB134F8A618B3EF /* Support Files */, + 68B9374ED36DC0284C46266DAD35C07C /* PHFComposeBarView.h */, + D4B8363AC506E4A96EEADCBDCA4D448E /* PHFComposeBarView.m */, + 95BEC4DE01641F1474D8EC021E93BDB5 /* PHFComposeBarView_Button.h */, + 5EBA09EEECA89B358424CB47C3DDE359 /* PHFComposeBarView_Button.m */, + 1E32F7417A1FB40B1CAB52C92F7A1DBD /* PHFComposeBarView_TextView.h */, + 09BB601B0BA8D6785F279BEF89D6AAC7 /* PHFComposeBarView_TextView.m */, + DA32180DFEE582DA5A9C75E1A7180E4B /* Support Files */, ); - name = RMActionController; - path = RMActionController; + name = PHFComposeBarView; + path = PHFComposeBarView; sourceTree = ""; }; - 98E8A31A779C3B60F1AC221806901E8C /* DTCoreText */ = { + 8BA84C4B08BFE449855370B70D73EF82 /* Support Files */ = { isa = PBXGroup; children = ( - 7F298E0AF4BB6545EF3BFE80AA17FB8B /* CTLineUtils.h */, - BD8FF107C6CA4171C7CB4B5C92BCCFD5 /* CTLineUtils.m */, - C1082E205F13A7E5154BF5991CDA1635 /* default.css.c */, - 95958F2AA1E42C86C885FDA2C182FE37 /* DTAccessibilityElement.h */, - D2AEB2BAA84C8F0640FF28BAF04E143A /* DTAccessibilityElement.m */, - 7A86F145F2A8D79099D7CE5777ABBE80 /* DTAccessibilityViewProxy.h */, - 8277C25A212E1067F8735004E2EB94A7 /* DTAccessibilityViewProxy.m */, - FD939EDE1F0367DE02BF9CE5253E40BD /* DTAnchorHTMLElement.h */, - D5310CD4F331E47BFA09A4576EFC40C8 /* DTAnchorHTMLElement.m */, - 1EAD34DFC67E1B8795F900627C74E1F8 /* DTAttributedLabel.h */, - 49D1290477FFB589F2B6DE72441808F9 /* DTAttributedLabel.m */, - 98AB2AD162F93E42D476BD54B2595967 /* DTAttributedTextCell.h */, - 95D0490C4BC92E693341332AD7EE961C /* DTAttributedTextCell.m */, - 5B011FEBF6AA11BFB7319447EAB044BC /* DTAttributedTextContentView.h */, - 82BBF8D11EEE36288A6BF684021D8B05 /* DTAttributedTextContentView.m */, - DEDBDF8DAE9FB6AE9BC7CE6D695C0E61 /* DTAttributedTextView.h */, - 60907D72F03DD35F791A69FFAB18EB61 /* DTAttributedTextView.m */, - DB3900FC9045CE79AA8D92CF192EAFBE /* DTBreakHTMLElement.h */, - C9480C10A98DAA7CAE1A98D383A91696 /* DTBreakHTMLElement.m */, - BF39BC4989B54B773D3B2399670D27CA /* DTColor+Compatibility.h */, - 62AE830DFB41FD3A391C5C34D70C710D /* DTColor+Compatibility.m */, - 9287BA7D5F8EDBFF48649C5851DC245B /* DTColorFunctions.h */, - DF69154FE621A8EAAECA8FB9B3C869DB /* DTColorFunctions.m */, - 7549A74B8B08B27B68A034AEDAA4BF35 /* DTCompatibility.h */, - 67430B51A7293173BC199C0E349D394A /* DTCoreText.h */, - 2E481CD749FDA0512A86F61A3F3DB394 /* DTCoreTextConstants.h */, - 28AB6334E8E6AB1C20D7C79E57A906F2 /* DTCoreTextConstants.m */, - 1641FD8BEFD082B0968380956D839205 /* DTCoreTextFontCollection.h */, - 5CA18D0B3413173A93E1B55F7AE9ED0C /* DTCoreTextFontCollection.m */, - 47569B86D1DE6E9617577D9A7F61F7BD /* DTCoreTextFontDescriptor.h */, - A3CEF9B4A30D29B183A9579C96C0E55A /* DTCoreTextFontDescriptor.m */, - 7947DDC82A70B40CCEEBBB07A23E5CA4 /* DTCoreTextFunctions.h */, - 3783E61F3D435370A7D4BDA41C068FD6 /* DTCoreTextFunctions.m */, - 84FA955B9C8CC142C90D35B73249EC5A /* DTCoreTextGlyphRun.h */, - 54C2BCA7AA57DFB65489D711C0C0D954 /* DTCoreTextGlyphRun.m */, - A60EDBA871E31DC8716F78AB5FD62DE7 /* DTCoreTextLayouter.h */, - 6E35634647948F892A5535CC1B07B461 /* DTCoreTextLayouter.m */, - 2FBDC184EE47A24CE121FF68F122C835 /* DTCoreTextLayoutFrame.h */, - 51DBB0AD842D2C57418199D24F35F776 /* DTCoreTextLayoutFrame.m */, - 81FB61E8DF1BB41220DBA702E28EB2DF /* DTCoreTextLayoutFrame+Cursor.h */, - 0E355C6423D3D40D0AEA2368BB53BC3F /* DTCoreTextLayoutFrame+Cursor.m */, - 8113E6E2996C83C0AFA53072670D5520 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */, - 5E80D88F50972E97CB6E2A8F5DA924AE /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */, - 4B39054E39C64AA60D4B973796F732FB /* DTCoreTextLayoutLine.h */, - 0A015FA5487709777444D151C8254BE4 /* DTCoreTextLayoutLine.m */, - 70BB5A3087ED9C81DD22C1770C2D6E8D /* DTCoreTextMacros.h */, - BFE032E44373EA6A7CC9BBFD5FE504B2 /* DTCoreTextParagraphStyle.h */, - 3219654C0241A06534B3F96160D1D385 /* DTCoreTextParagraphStyle.m */, - 158DCCD09FF240D89E85FBD2D08761E1 /* DTCSSListStyle.h */, - 034FC560852D843D7EE74446572B1500 /* DTCSSListStyle.m */, - B46E446380DDE89B5233AEC147E0EF06 /* DTCSSStylesheet.h */, - 85FAB40F966CB04375CD54F523A81E89 /* DTCSSStylesheet.m */, - A113F09C004CF7677C6E4E197443D325 /* DTDictationPlaceholderTextAttachment.h */, - 8AD8AA828CF85FB9E76D090924F47B82 /* DTDictationPlaceholderTextAttachment.m */, - 7EA0765D3AFE479009B2F4E22737C821 /* DTDictationPlaceholderView.h */, - 949FCF4810A5441478133475CFB1A517 /* DTDictationPlaceholderView.m */, - 58F79B105BDF17D949E5716F1C4E09DE /* DTHorizontalRuleHTMLElement.h */, - D5E45EF6468A60DE19611B6C058E7006 /* DTHorizontalRuleHTMLElement.m */, - ECAAE8AAB11A172235273D6C57EDBEA7 /* DTHTMLAttributedStringBuilder.h */, - B274C31A7B2573DB7031CD38514336CE /* DTHTMLAttributedStringBuilder.m */, - F9502D6A65C237C3304C64BCFAA141F4 /* DTHTMLElement.h */, - 38C02AD7756BBFF96A791ECF6D5B43E6 /* DTHTMLElement.m */, - FA4A5AFF5147D4C1CD52645A96540193 /* DTHTMLParserNode.h */, - DD25DC2EEF262DCA8E74A80B7F5FBC3E /* DTHTMLParserNode.m */, - C57EAE7B2B3C17C679A60CE421B5815E /* DTHTMLParserTextNode.h */, - CFE1E79B32A754EE56307A40DC61E30C /* DTHTMLParserTextNode.m */, - B696F41FB9785CAAAD89F2F9CD37ECC1 /* DTHTMLWriter.h */, - 62D0381A8642B882F4912C978248FBEE /* DTHTMLWriter.m */, - F8048C686915AB3DFB1B6F55D1CCC118 /* DTIframeTextAttachment.h */, - 180A153A5ABC25A4499EA583C1F5DCFB /* DTIframeTextAttachment.m */, - 40BC86F13120001C51F3AC419EC8EE44 /* DTImage+HTML.h */, - 7B38C4CD08902B568D9EFA0C7F74E406 /* DTImage+HTML.m */, - 8B2AC64538C7E467406417B13C7B37D9 /* DTImageTextAttachment.h */, - 93B8DC279A0EA70BDA821F5BEC138E4D /* DTImageTextAttachment.m */, - 99EA497FEC7B3CF2BEDD2C745818BC05 /* DTLazyImageView.h */, - E692C734D0B5E96957183BA90E14D7B9 /* DTLazyImageView.m */, - 1C4536B36BA69FB7F8C32354B67E1F04 /* DTLinkButton.h */, - D1948DD27AF23FE4E029755D9C926C67 /* DTLinkButton.m */, - F75639BE1F3F4F7217F65F7203D2A963 /* DTListItemHTMLElement.h */, - FF881926730C6DD9D8F4948FDB6D33FF /* DTListItemHTMLElement.m */, - 2D8161CAFCF67C4B2D360D35C572B84A /* DTObjectTextAttachment.h */, - 8165A5B9124BB8241DD1740F819503BF /* DTObjectTextAttachment.m */, - AB1361BE48688FACA82DCDDEEE90F8C5 /* DTStylesheetHTMLElement.h */, - B4FF69C4CBBA83DEDD6A5CA9B4DC48F4 /* DTStylesheetHTMLElement.m */, - 5CD4C39A6EC0674744537D4134D10BE7 /* DTTextAttachment.h */, - 2F90D6FD8EC78BE5C62F1553F6BC4DB8 /* DTTextAttachment.m */, - 3604F2892C9CBCAE45CC2ED18A93E43F /* DTTextAttachmentHTMLElement.h */, - BB8C1ED6F4129DAC09273F83BEBF4443 /* DTTextAttachmentHTMLElement.m */, - 34CF455E565B73240EDA62E43F19734D /* DTTextBlock.h */, - 65576D8B919226BC5A96337F21206ACF /* DTTextBlock.m */, - 9A6E71BF433A699710DD93E80F140334 /* DTTextHTMLElement.h */, - 241FA73D8783FA06F773D0B3CAB920AE /* DTTextHTMLElement.m */, - 497AB26AF52D76E9D1217050E3ABDC36 /* DTVideoTextAttachment.h */, - F17F58F7223DE4D8CB8A3D9939972BDB /* DTVideoTextAttachment.m */, - 803A7847D0F6D9F7595F07710EDE3EBC /* DTWeakSupport.h */, - 11D0EE7F78AF196294BD0F7B51774F5B /* DTWebVideoView.h */, - BC3DC8142C82EC1902F80935457E8606 /* DTWebVideoView.m */, - 2B077DE6D6868BC938D09404A4C249BF /* NSAttributedString+DTCoreText.h */, - 4BB5070AB48DFD5D2ECD6629C9BFCD04 /* NSAttributedString+DTCoreText.m */, - 6AEEBB3577342B19CBD08214BACDC205 /* NSAttributedString+DTDebug.h */, - 20B61BCA965C8112291518550A425E53 /* NSAttributedString+DTDebug.m */, - 84F1BD6C9C3A8C55975F130D3D930076 /* NSAttributedString+HTML.h */, - 344F4158CF80A5108A8E261D50F8627B /* NSAttributedString+HTML.m */, - 5821002FEE7E586AFC2C8B275701E2B8 /* NSAttributedString+SmallCaps.h */, - C8A6F9C48380A2B9C7D99A1AC445BACD /* NSAttributedString+SmallCaps.m */, - 06C75C23F252BB51915F65B3ECF70673 /* NSAttributedStringRunDelegates.h */, - BC5C9D4724BD1F94C375191144D30727 /* NSAttributedStringRunDelegates.m */, - 39C07CD7CF71E88B2188BD21F06A2D14 /* NSCharacterSet+HTML.h */, - F9C2CA7D82D98B83E258571835D0A7AF /* NSCharacterSet+HTML.m */, - 6A076248B1B018C677DF241DBE2E362A /* NSCoder+DTCompatibility.h */, - A1EDC91DC918486140EBFA96AA2518D9 /* NSCoder+DTCompatibility.m */, - 3B6C2C9535560AE320B53381413BFFA2 /* NSDictionary+DTCoreText.h */, - FEB80AEF44D04D99D42714632D292AA5 /* NSDictionary+DTCoreText.m */, - 2A65A55ED3E4DDB8B88E7221CA07C6FF /* NSMutableAttributedString+HTML.h */, - 1D43754D9C3D62AA088AD266E9F399A4 /* NSMutableAttributedString+HTML.m */, - 77CD42BE41A454731972965BC7D286DE /* NSMutableString+HTML.h */, - A08437EC839FA4A95324A757BCBDE309 /* NSMutableString+HTML.m */, - 80BCA8699920B9B7171BE369FA6205A6 /* NSScanner+HTML.h */, - 5AC0328B204DD6C7FCD8A5F994E3B38A /* NSScanner+HTML.m */, - 19C5C9A1E685649D00865BE009078CF1 /* NSString+CSS.h */, - 08E8C62C8C05873DC8732649A266DD92 /* NSString+CSS.m */, - 4D1D518438B58E0824DD0135F01846CC /* NSString+HTML.h */, - 04D7FCA56D9DBBFCA31D8B8876ADDB75 /* NSString+HTML.m */, - ADD6EBFA093B627EE05DD27A668D7F6F /* NSString+Paragraphs.h */, - 493E26B10F2816C87308A8BC0A6261FD /* NSString+Paragraphs.m */, - 0D8BDD174D97C75E751A93105DB96A98 /* UIFont+DTCoreText.h */, - 2A6BDF8D520B0F82F3D53A2D3B24E16A /* UIFont+DTCoreText.m */, - CEF8D2718358A9BF70416CB8273206D9 /* Support Files */, + 0FA4142B1C3E1E90AB6F51F9551C82C1 /* Info.plist */, + 1FCE7F1D03ED7081825C462932209DCC /* RMActionController.modulemap */, + 5D1823A50EBBD1FDCB55D891A94A567D /* RMActionController.xcconfig */, + 605CC95266D6BFE9108CAF84AF9FAE43 /* RMActionController-dummy.m */, + 3CEF2D551134721C1A15202711FE372D /* RMActionController-prefix.pch */, + EA8C7313F87C5C66F2F6B617ADB45A99 /* RMActionController-umbrella.h */, ); - name = DTCoreText; - path = DTCoreText; + name = "Support Files"; + path = "../Target Support Files/RMActionController"; sourceTree = ""; }; - 9A7AE838FE69ED63EAE806706BFB0F17 /* PHFDelegateChain */ = { + 9175CAD0861E6AEC660AE7D9F9322074 /* DTHTMLParser */ = { isa = PBXGroup; children = ( - 2F4995C56241F18B27E7F3B7872F97DC /* PHFDelegateChain.h */, - 73F78DA5E56BC5F28442876D67B582C5 /* PHFDelegateChain.m */, - CA13A5C654E50DCAE8B4A10484DC4BE6 /* Support Files */, + 946058C9292996D038C7D1186ADC96B1 /* DTHTMLParser.h */, + 9A0DE6039BDF5FDD55443EF0528FEA9A /* DTHTMLParser.m */, ); - name = PHFDelegateChain; - path = PHFDelegateChain; + name = DTHTMLParser; sourceTree = ""; }; - 9E426F7075ECDF8E797CC3D05577DE95 /* Support Files */ = { + 99770396DDD385346D629E8925E34723 /* Support Files */ = { isa = PBXGroup; children = ( - A4ED7FEBABF8C665DFAEE1DF0EC8EF3E /* Info.plist */, - 59FF6E9F173093956EBFAFAB702D3162 /* NSGIF.modulemap */, - 70C57ABA10C903C6FA0C97A236DBA0A1 /* NSGIF.xcconfig */, - C2AA973B11A59A0CC2605CE33C7F2475 /* NSGIF-dummy.m */, - 96B3F7571D28CB5196E66610168BE4EF /* NSGIF-prefix.pch */, - 291990B570B209965538F3530C8A9241 /* NSGIF-umbrella.h */, + 2CADA442074671E19239A93E4CD6C053 /* Info.plist */, + 06B3A4DACC1099D885AB05799096E109 /* SCSiriWaveformView.modulemap */, + CD2DEDB637B163334DB7D5DBC67B5D91 /* SCSiriWaveformView.xcconfig */, + C795792E837F6042927651627A512666 /* SCSiriWaveformView-dummy.m */, + B7FFE776E7CE7F3ECFBFD1FA1412BDFD /* SCSiriWaveformView-prefix.pch */, + 8581CFC7D5E9532318A1D6167348A3C1 /* SCSiriWaveformView-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/NSGIF"; + path = "../Target Support Files/SCSiriWaveformView"; sourceTree = ""; }; - 9EF4952820D97F7D5421D888874C3F3D /* Support Files */ = { + 99A4BD1B9B58D622386F8ADC7322083E /* Support Files */ = { isa = PBXGroup; children = ( - 50A2B72C4F9BB58D69A45B08CB27C03E /* FreeStreamer.modulemap */, - 902E28B157DA3A8069732433544E3211 /* FreeStreamer.xcconfig */, - 882A7AD2F7F89826B2C2A6E3C710C058 /* FreeStreamer-dummy.m */, - 960A9DEC5DF1A7DAE5DB08F0F2E755F0 /* FreeStreamer-prefix.pch */, - F16D10B1AFE67BD601776D379AEA8AD2 /* FreeStreamer-umbrella.h */, - DD35BBFA86D7C373E528C7758274C0BE /* Info.plist */, + 6EC4F5C79F807E5FB0F53623E0A2BC77 /* Info.plist */, + 5C65E5F39A9EAA05F158D30B010C7802 /* SWFrameButton.modulemap */, + 7CCD9D60DEA54BB8CD99988B32D4E418 /* SWFrameButton.xcconfig */, + 4AD8CF1859545D02370A32CB07C1F721 /* SWFrameButton-dummy.m */, + 9812DEC03771E93FD3DFA40C2B0C06A2 /* SWFrameButton-prefix.pch */, + 87304C8EF2A0BA37B04757A16FBB91C7 /* SWFrameButton-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/FreeStreamer"; + path = "../Target Support Files/SWFrameButton"; sourceTree = ""; }; - A3934B7E7F774551143529DD766C39EC /* Pods */ = { + 9B150DEF9DA182A4E0904B110CA3F8CA /* NSHash */ = { isa = PBXGroup; children = ( - F1F924BB65235532995D12410332867F /* AFNetworking */, - 052D14CCA786D0915CD64C3C0AD1CDD7 /* AFOAuth2Manager */, - 4F23C2CB2ADA1AD4C2B7E9DAC7176E9A /* AHKActionSheet */, - 5F3AE7238CF78219F61F4383356A1FF4 /* APAddressBook */, - FA254A2F0F9D78FD4DACD6688EB2C277 /* BBBadgeBarButtonItem */, - E92B6C71C41EBB2F9BC999CD4A9009F1 /* CYRTextView */, - CFA7A308334305226A643DE15E465683 /* DAKeyboardControl */, - 38AB758C201B0E5CCF520462AAB52E64 /* DHSmartScreenshot */, - 98E8A31A779C3B60F1AC221806901E8C /* DTCoreText */, - 3E6E8841DA2B62CBFAAA8A7A967BBF31 /* DTFoundation */, - 161F49684D507C3CFA9FADD12A1AE6AC /* FLEX */, - 89FF6F4FD9187E162A314E120EBA1EE6 /* FreeStreamer */, - 4C5C0E8D0E5D05EAAAE5CAACD0F4189D /* HMSegmentedControl */, - 232DE01EB3EE90325526827FB9BD3DA7 /* INTULocationManager */, - 888617F137BF6745C412A9F02F51BC16 /* IQAudioRecorderController */, - 13366EE734029FF0783446F36568D440 /* JDStatusBarNotification */, - 68328A9A6E3063C75A93126CD652E60F /* JSCoreBom */, - FB7FA6C3AF788EE9538FFFD7749B32B4 /* libPhoneNumber-iOS */, - E9E6DE2F70AB39F3D46DDB86C0927DF9 /* MBProgressHUD */, - D4AED59E69A036A85ADE8C908C8C57E8 /* NSGIF */, - 3F3D95D164D3AFC22CED0133D556C710 /* NSHash */, - 3FE526AEB2D5C8689AC4EA5C516EEE6A /* OMGHTTPURLRQ */, - 901966F8B15FEB8D91CCDD7E52BBE10B /* PHFComposeBarView */, - 9A7AE838FE69ED63EAE806706BFB0F17 /* PHFDelegateChain */, - B0395BDEA77A9B0B3C98A2A89EFCE092 /* Reachability */, - 20362D6008A82E88F30824B247F12534 /* REMenu */, - 98E577DF5CCE89FE987161DC2C71ADFA /* RMActionController */, - 7DE7A42D099711997B903B1D3DCEFFC1 /* RMDateSelectionViewController */, - 06C8C60BD58FBF9036D3D41B9D1E4BBA /* SBJson */, - 46168195E47C89874289D58B9F516544 /* SCSiriWaveformView */, - F0FBBF791519D631BA5534B64869389F /* SDWebImage */, - 402C2C4F83F5B8D0C559BE370584FD83 /* SocketRocket */, - 0904AC7EC02814224BC0870D25D0AB3C /* SWFrameButton */, - EF7E1B8C693F5DAA988862A681616638 /* SWTableViewCell */, - 5C7DF89942AB7D7A1E869C78D5C3571D /* SZTextView */, - E69F4788CCE43C017E2170E5CA87A480 /* TDOAuth */, - A8A36BB53FB638B604825E497DCEE254 /* TTTAttributedLabel */, - 5296FDF8313AA894AD1AC4C4AF1D2A6E /* TWMessageBarManager */, - 1043729DF769A5D50D5743A2EB537CDB /* UICKeyChainStore */, + 47E56B5B2A00809D9FF7A2EB441DF2DB /* NSData+NSHash.h */, + D6B5B6BB32C01184E17017454318A05F /* NSData+NSHash.m */, + 39D2D87777778F5F517895B10EC15487 /* NSString+NSHash.h */, + F055BF80AC18B8CC51BCE7CDB4F76A73 /* NSString+NSHash.m */, + 0418287118AA4DA0806CC83B03511234 /* Support Files */, ); - name = Pods; + name = NSHash; + path = NSHash; sourceTree = ""; }; - A8A36BB53FB638B604825E497DCEE254 /* TTTAttributedLabel */ = { + 9B5790D4399A73AD8D488B749D000AEF /* SWFrameButton */ = { isa = PBXGroup; children = ( - 6F99FB59527E073D47C4CB48C98FD83C /* TTTAttributedLabel.h */, - 0C2070FA75E79BD3EED3558F5EE498DA /* TTTAttributedLabel.m */, - 25600E2B0B499AC94CD3AEADDF492ECF /* Support Files */, + 2B45281E3C47C5608A016CE831931C6C /* SWFrameButton.h */, + C0BAAF100AE61EF2CA5BB366FE577ABB /* SWFrameButton.m */, + 99A4BD1B9B58D622386F8ADC7322083E /* Support Files */, ); - name = TTTAttributedLabel; - path = TTTAttributedLabel; + name = SWFrameButton; + path = SWFrameButton; sourceTree = ""; }; - AE6F9868FC1B6359ED4F44CC2CEC9F2E /* DTAnimatedGIF */ = { + 9C18A29CC7C97E96AD7275ADAECFF0A4 /* DTCoreText */ = { isa = PBXGroup; children = ( - 2381F03E9A497517BFA043F6B632CB6B /* DTAnimatedGIF.h */, - 80261FA1A228BFB45CCA5B911EF21E50 /* DTAnimatedGIF.m */, + 7D1D4C746E7113D94A93F9F8AB40DE44 /* CTLineUtils.h */, + BECEFED58A9CF585E21571EDD5525482 /* CTLineUtils.m */, + 26E1FD96BFF2AF674209E073FBEF15E0 /* default.css.c */, + C3F44B80244405121A2177CC0E173C1C /* DTAccessibilityElement.h */, + 4225CA8087B99AF61544FD89FC6B5C95 /* DTAccessibilityElement.m */, + A3B9683E70E90590C748A965AA0A20BB /* DTAccessibilityViewProxy.h */, + 087EA7C286CC34A7F91AC04CD4CBF5C0 /* DTAccessibilityViewProxy.m */, + EF784C8380A2530002D939DF373AA72F /* DTAnchorHTMLElement.h */, + ACBC186AFEF40E8819E50064E6517FA7 /* DTAnchorHTMLElement.m */, + 8DD18199334D02693F838A01630051C1 /* DTAttributedLabel.h */, + B436D7684F588E961A6D7F30D3D64CE9 /* DTAttributedLabel.m */, + 7930A212ECF1B513839B4A653787BF83 /* DTAttributedTextCell.h */, + 014C2620DD4AC153C3D4ED69A32B30B2 /* DTAttributedTextCell.m */, + 51F387A2409441008AA9F753581CB6F9 /* DTAttributedTextContentView.h */, + 34F5AAA165A4CD7B0826A03741773E06 /* DTAttributedTextContentView.m */, + 6CCB537225BC2F88E672800536A596EC /* DTAttributedTextView.h */, + BEB30D0DB358DA419B2D880A9E5BE81A /* DTAttributedTextView.m */, + 564E65A8928275F77EA5A5048D9EF45F /* DTBreakHTMLElement.h */, + 6F052E918D6F0D585B6BCF83DC4A28DF /* DTBreakHTMLElement.m */, + BF7803938136B6DC685CAD4311B52F8F /* DTColor+Compatibility.h */, + 7E7E4CCF99755FEA618847EC6E8DB7FC /* DTColor+Compatibility.m */, + AAF8863732BA0423DFF57ED96CF2DB24 /* DTColorFunctions.h */, + BAE4DC3D29EDE1F982127CB5DE84FDD9 /* DTColorFunctions.m */, + 5196D76F66EAA1348488180E0BE0D355 /* DTCompatibility.h */, + 6ACA9A5A7132A51B48CE4A7AB31CAC7D /* DTCoreText.h */, + F6E24FC69B6876DD5DA8F7E90AE4D7B3 /* DTCoreTextConstants.h */, + 11E599127B18318C230AE43EEE505203 /* DTCoreTextConstants.m */, + DEDA00C2B3F5938061F0DF4AAAC3233E /* DTCoreTextFontCollection.h */, + C7989389EF17A69905AA6ED38B1D60E2 /* DTCoreTextFontCollection.m */, + 7CA9FC195B3428F36C378CBC2532EE8B /* DTCoreTextFontDescriptor.h */, + DA95C157A73324B252B1C58330D0DD87 /* DTCoreTextFontDescriptor.m */, + 2B4093F01B01941844C46FBDF9D45218 /* DTCoreTextFunctions.h */, + 85EFEBFF67EE9580614111D45D61834E /* DTCoreTextFunctions.m */, + 7CADE16C4B3FC2CCA56DE0F17E29013C /* DTCoreTextGlyphRun.h */, + 6BFFE24D4142EEF50560CD5F2070042F /* DTCoreTextGlyphRun.m */, + 6B13271F8F29575381B785849FE4B125 /* DTCoreTextLayouter.h */, + 926A11F9E79566E000C84C27AE4E4F76 /* DTCoreTextLayouter.m */, + 48E23398080F3AF06D20AEF9C9D86232 /* DTCoreTextLayoutFrame.h */, + 39C47FA1164D94E45DD14BD1BC269231 /* DTCoreTextLayoutFrame.m */, + 188393816F1A6E8BBB18E975382CB3DC /* DTCoreTextLayoutFrame+Cursor.h */, + 89E6949E82E53745F75A8965A29B1761 /* DTCoreTextLayoutFrame+Cursor.m */, + F5049A3905DCE7B8C44BE7F0909F00A8 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */, + 5ABBEC10375556DB8696C376DD6915FD /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */, + A04749A01AC511C442A1769FC21933BA /* DTCoreTextLayoutLine.h */, + A0AD63521FC84FDD28A736A0C1D07143 /* DTCoreTextLayoutLine.m */, + 0A42920D8678261E0DD0A28DD10B827A /* DTCoreTextMacros.h */, + 9078DF86D999C8B64E182DB0F65BDF78 /* DTCoreTextParagraphStyle.h */, + D5D71247BB72FD7A6DAEF443ED651FA5 /* DTCoreTextParagraphStyle.m */, + 4610A99A1E58884E3FC9EA3E49B39F56 /* DTCSSListStyle.h */, + 5785B155E5A5F677B026C834297B5091 /* DTCSSListStyle.m */, + 5489F29389A263D10F7CBCF2EFD7D60E /* DTCSSStylesheet.h */, + BAF32DF244B0D511C38096C3D8DCA5E0 /* DTCSSStylesheet.m */, + 8748E06B3E0F95B7ECF0D20ABCE1FFE7 /* DTDictationPlaceholderTextAttachment.h */, + AB9360939C3514BDF46FD4827A9B9773 /* DTDictationPlaceholderTextAttachment.m */, + 474A91D3F930308C6A14D3BF24C7A145 /* DTDictationPlaceholderView.h */, + BFEA87D40F82C0D96032B1D5D3D5FB60 /* DTDictationPlaceholderView.m */, + F9997C1F55EC31E855B89E64FF136150 /* DTHorizontalRuleHTMLElement.h */, + 76FC889AE35CC79391EEAE006EE28766 /* DTHorizontalRuleHTMLElement.m */, + CE7210D6C808C359B57D4B969F0FDD5A /* DTHTMLAttributedStringBuilder.h */, + C465D2D044E842C8A8CFE39C7D362341 /* DTHTMLAttributedStringBuilder.m */, + DBA1AF59165F92A9EB2A768ED90BC11C /* DTHTMLElement.h */, + A7B462D434CE0514E9D3C3B27B7C0114 /* DTHTMLElement.m */, + 7F92EEB1282B11D949744F6BA21338AF /* DTHTMLParserNode.h */, + 146C205745CA0ABD5D476BF3250E9A5D /* DTHTMLParserNode.m */, + 068981582F1C670B8C42584C5A3CDEED /* DTHTMLParserTextNode.h */, + 95C83E07D36273D1B428D328F2E219CF /* DTHTMLParserTextNode.m */, + 751D7A4C5DBBF42238A7169412A9C4BE /* DTHTMLWriter.h */, + 03FFD43406C8ECAB2130F23067CE1EE6 /* DTHTMLWriter.m */, + BBA92A0040CAFDEAE4A4F42F2C2071D7 /* DTIframeTextAttachment.h */, + 2F0E4286FB7CEC6340FA93A1176FF559 /* DTIframeTextAttachment.m */, + E72DE113094FEB300850B7464FECE35B /* DTImage+HTML.h */, + 868E8F88147EFAE87E28ABE76B0C51E0 /* DTImage+HTML.m */, + 9D9D90FAC899744D21ADE3FDB7446793 /* DTImageTextAttachment.h */, + A650009084237AC7497A865E3F7856AE /* DTImageTextAttachment.m */, + 705B09325DA2AF9192E0DD5FAE2547A8 /* DTLazyImageView.h */, + 19E3E5E5C1A179B8DF88D9FBE1DA7AD9 /* DTLazyImageView.m */, + E54E46808BEE045D6570D56A1646728A /* DTLinkButton.h */, + 5EE768E016D759EFFE6C9D3917786B9B /* DTLinkButton.m */, + 325A8EBD34DDAEC2C1B9E67EED2945F8 /* DTListItemHTMLElement.h */, + 710C3AC1AC85D7979FB4C796EED60613 /* DTListItemHTMLElement.m */, + 160F4330B53A80491CD4DFE1F77F0FDB /* DTObjectTextAttachment.h */, + 53565D4F8B8DC8995B788CA5AD568F47 /* DTObjectTextAttachment.m */, + 014DF03FEFCDAFD9C5E325D32DC9BBA4 /* DTStylesheetHTMLElement.h */, + EA24AEC1E9D07B91245B3D0ADC3E562F /* DTStylesheetHTMLElement.m */, + 07B1272DD6790F6324EE3D1928904137 /* DTTextAttachment.h */, + 62E85831B2DF52A0C5B84A1D78E7107B /* DTTextAttachment.m */, + 7BA4E4C6FA2B857347563BBD25310D3E /* DTTextAttachmentHTMLElement.h */, + C7AD6ABDA84248120BC5F7C704A2B0AF /* DTTextAttachmentHTMLElement.m */, + 7165479F925226D8F39C718E098DCAB9 /* DTTextBlock.h */, + CEA902333079E87625A6142A43F8B3C8 /* DTTextBlock.m */, + BA1EBBBE5FAC33C33230E961D79F00B7 /* DTTextHTMLElement.h */, + C3BF7488E1EC2E1A663086C19735244C /* DTTextHTMLElement.m */, + 4CF80A71043EF71E4A51A9856CA81EAB /* DTVideoTextAttachment.h */, + EE170755AA3535A8539BA3D5BD59E9D7 /* DTVideoTextAttachment.m */, + 110A659F0FD6F837104237CD578A5849 /* DTWeakSupport.h */, + 69335B5BAA7BAD225C247D4874564B81 /* DTWebVideoView.h */, + 285E0A867D0CC302190087C677BEB63D /* DTWebVideoView.m */, + 70057D8DD7907913BABEC3B5B4CFAC2B /* NSAttributedString+DTCoreText.h */, + 637C79F4C883D018947722FAE52C0F60 /* NSAttributedString+DTCoreText.m */, + 0162F9D4B37A3556A11153E4A686C39C /* NSAttributedString+DTDebug.h */, + 91F015A443603C8BD96BF6847A8D1DB6 /* NSAttributedString+DTDebug.m */, + 9463435FB4536536510483B4E3A30F55 /* NSAttributedString+HTML.h */, + 0CC7436C6FC16CFE94217D3CA14B25B3 /* NSAttributedString+HTML.m */, + 9CE788C5004CDC426B5D3B407B9420C4 /* NSAttributedString+SmallCaps.h */, + 887CAF11E4CC02F23B2BD1E92204AF3A /* NSAttributedString+SmallCaps.m */, + AFEFCACBAAFFCDB3AE6FFCD94D090DEE /* NSAttributedStringRunDelegates.h */, + CBFDC1D6DE779010D4630BD835AB486E /* NSAttributedStringRunDelegates.m */, + 9DFCD1AE923868D5FD383CC0E636B6DE /* NSCharacterSet+HTML.h */, + B12CFA1A907987C327E40410996B53FC /* NSCharacterSet+HTML.m */, + 4BF3706313C9F7B04AB33987689C6563 /* NSCoder+DTCompatibility.h */, + 5DDC194FD012415DE371E97259AEA5D4 /* NSCoder+DTCompatibility.m */, + 66888B5CD2DC5881B95241E8C4E4394F /* NSDictionary+DTCoreText.h */, + ADF0EDF35CC5FA518DF211EC9C49D330 /* NSDictionary+DTCoreText.m */, + 6B0450C90F44CEC5ABF55E73D9F11780 /* NSMutableAttributedString+HTML.h */, + 9DC346A072B569BDC778ABD171896037 /* NSMutableAttributedString+HTML.m */, + E0CD6F97C2EE2C2B2F814C5861DAEE8C /* NSMutableString+HTML.h */, + AD983AC5FAE9B1709564960190A1A25F /* NSMutableString+HTML.m */, + 5AE9C4267310C59A5C302AB6BFA6EAB9 /* NSScanner+HTML.h */, + 45F545C0FADE6E19CB0C6F9EBC50B576 /* NSScanner+HTML.m */, + 642BC7C776669AED65D56835C4E4C158 /* NSString+CSS.h */, + 012EF796BD8A73567E1F91ECF8EA5CCD /* NSString+CSS.m */, + 8FB74696F35DFAD8EE375F19678DE650 /* NSString+HTML.h */, + 69ED8497AFF3ECFCCEAE4DA08F7E47B2 /* NSString+HTML.m */, + 090AD8191C338EC210B300BBD100044A /* NSString+Paragraphs.h */, + 8637A118F783FCE9956EAB9AEAA1DA77 /* NSString+Paragraphs.m */, + FF35FD574461FBEB569EB1DA54C2616B /* UIFont+DTCoreText.h */, + 9046081948B7DC160E2768C37F0540DB /* UIFont+DTCoreText.m */, + E5F02860F8BC3B2F2172040936BDA4BE /* Support Files */, ); - name = DTAnimatedGIF; + name = DTCoreText; + path = DTCoreText; sourceTree = ""; }; - B0395BDEA77A9B0B3C98A2A89EFCE092 /* Reachability */ = { + 9D4FB97046E3FF74DD34B7E75CBDA8A7 /* Support Files */ = { isa = PBXGroup; children = ( - 64DB399656ADE8ABC93CCFC742753A81 /* Reachability.h */, - C1FCDD1D2A2D06CBA142DB8AFFA0D4D0 /* Reachability.m */, - C350A1E9E9841D26E54F89C886A04A07 /* Support Files */, + 31A2A8518220CA34E8A3E99AA917DDF5 /* Info.plist */, + EE6D2A7B78F24830CD9F333893CB6D8A /* TDOAuth.modulemap */, + 8011E27165BDEAD5C2950F03382DA603 /* TDOAuth.xcconfig */, + 1F0781CD14A7D62953AA8240BDC06B7C /* TDOAuth-dummy.m */, + A44152366D2D72670B52F28E794B381C /* TDOAuth-prefix.pch */, + D6DD79587A506CBC95FEB8B8B185A556 /* TDOAuth-umbrella.h */, ); - name = Reachability; - path = Reachability; + name = "Support Files"; + path = "../Target Support Files/TDOAuth"; sourceTree = ""; }; - B61A955258376E64BF3AD2EF1F5D814E /* UIKit */ = { + A713A9B2AD24F86C75C2D0EA0C6B8612 /* SZTextView */ = { isa = PBXGroup; children = ( - 5BB2EBB75476B791A0FB3BE34111B8CD /* DTActivityTitleView.h */, - 507DCFD6B7E4F8C746E0CC5EC646138E /* DTActivityTitleView.m */, - 6DCF5B5BE947EA00E29AA88E04BBD2E9 /* DTCustomColoredAccessory.h */, - 7A8AC01C185C863465A829E558CBEA9F /* DTCustomColoredAccessory.m */, - 690BE8C777CDE705C4A5D47FB9E1EA8A /* DTPieProgressIndicator.h */, - 3B74B9B1AB4534E5C4AB7C4DF1EF82E9 /* DTPieProgressIndicator.m */, - E7D27A88907CB696B0D6E56C40287459 /* DTSmartPagingScrollView.h */, - 10DD8D8C669AD8B9CB35E643E28A51A3 /* DTSmartPagingScrollView.m */, - 32696122130095A973DCD39EEEB28226 /* DTTiledLayerWithoutFade.h */, - 7A2354726B6BED9646DD22C2ACA0A7DF /* DTTiledLayerWithoutFade.m */, - A13FE084E4D177F7A7B4E1B3BEDB80FA /* NSURL+DTAppLinks.h */, - EE03B2CE21F2452A7DCF2A7871C57946 /* NSURL+DTAppLinks.m */, - F826EE4CBAA0AA591FF1541F320B0DE0 /* UIApplication+DTNetworkActivity.h */, - D7B66C8A4DB3613F99CFD60E6C279516 /* UIApplication+DTNetworkActivity.m */, - 603619604F1CA9C9A3B790BCACA1498D /* UIImage+DTFoundation.h */, - CE6016E2E117CC96E898E68113969A97 /* UIImage+DTFoundation.m */, - FA8C062D6B33A1D5AD268E7FDB3D6174 /* UIView+DTFoundation.h */, - DDCD54D9C568D408A69E93089B132B8E /* UIView+DTFoundation.m */, - 7AA9E42A57EB6354F419BA5EFB8F2CC2 /* UIWebView+DTFoundation.h */, - FC02B14FB01A964E9E90E8009D0853E8 /* UIWebView+DTFoundation.m */, + 4410AB8E006E11288A8D93965E56A16A /* SZTextView.h */, + B6CF89B88860049A7E466C497683A2E0 /* SZTextView.m */, + 09821353E85B991E3AEFF9E1341721E9 /* Support Files */, ); - name = UIKit; + name = SZTextView; + path = SZTextView; sourceTree = ""; }; - BF64FA95FF6C8D3F2EC118789AB940AD /* Core */ = { + AA11E1573FCFFC54086F2F39E9C6140A /* DTAnimatedGIF */ = { isa = PBXGroup; children = ( - 7EFB318758D85D852735B04AB03F8BFD /* APAddress.h */, - C29D1F0AB3044D3C5B2BA6072D565539 /* APAddress.m */, - DB65166AC5569AB5BF675512F1244C0A /* APAddressBook.h */, - D08BDE0EC8D8460F373677430C80C109 /* APAddressBook.m */, - D575A59D3C2EE746BA5E62A403964436 /* APAddressBookAccessRoutine.h */, - A672C018A3BFF4B6B1FDB891191CF78A /* APAddressBookAccessRoutine.m */, - ACE88AB7344895DBA06D6EEB120A28C6 /* APAddressBookBaseRoutine.h */, - EC203DAF14A102117BCB16702674984F /* APAddressBookBaseRoutine.m */, - DCA5C80FE65A5CAD734774FC98CBC2F8 /* APAddressBookContactsRoutine.h */, - DADFDAB5B5A515634B2B8F2202676A3D /* APAddressBookContactsRoutine.m */, - E8271D382171F339004BC8F9E86FD3C5 /* APAddressBookExternalChangeDelegate.h */, - 7B2E48F5D6A9FEE856DD520502CE2276 /* APAddressBookExternalChangeRoutine.h */, - ED0D8A1E2C688A21D7CA39ABE0CB941D /* APAddressBookExternalChangeRoutine.m */, - 11C371E3BF8CF202640B1FAA7FAFE95E /* APAddressBookRefWrapper.h */, - 40428BBE9D2D7D7A773C9D218055FC2F /* APAddressBookRefWrapper.m */, - FB2C4A62DFAE43089712370F411B26AF /* APContact.h */, - BDECB11C73953FB549645DDED31B9F80 /* APContact.m */, - F611DBD348F74AEDC6F29D991F835D5F /* APContactBuilder.h */, - 63658ECF7F3AAA404A61E816FD267E8F /* APContactBuilder.m */, - 4ACCF9FAFACEFFAD75C46A10CBC0D021 /* APContactDataExtractor.h */, - 5B15EEDF65C3D355BEA47A992A486FE3 /* APContactDataExtractor.m */, - AEFDC43BE6DF87A63C260092C289AD96 /* APContactDate.h */, - 1BEE37C5508DD5FE4F1A8C06786DBFFA /* APContactDate.m */, - 7B873B0F8D8D52937679CE9604C49F7F /* APContactListBuilder.h */, - 4BFFE44F82EE76ADBE63BC430488E022 /* APContactListBuilder.m */, - 4672F80170A9881CFB9F66C08E3857F6 /* APDeprecated.h */, - 0A1691C62AF6DD8C051D7AC505C7E17B /* APEmail.h */, - 6350D9BBE613A0024F8FA4AA8E14C0D0 /* APEmail.m */, - E1C1A4BA29BFAA2788C9B3CD07E8DACD /* APImageExtractor.h */, - DE8E740A15EDBCAA586230157EB2AE24 /* APImageExtractor.m */, - 392EFD01317558B34DBED814903DC779 /* APJob.h */, - F60BDAA393F4B22881993108134A78FA /* APJob.m */, - 7C2978D003CD21979AEF86AD4461D3D1 /* APName.h */, - 0312FADF49B7C11C83B068BDFCC8A389 /* APName.m */, - 0C03D9EBD38C0DA44A7C497E64325269 /* APPhone.h */, - 2856616DCC61C2BB47F6CB7158661703 /* APPhone.m */, - 558E3CE88B94DCD84E6BC17A93B7F25B /* APRecordDate.h */, - B51B448327AE977546591D1D86F2A579 /* APRecordDate.m */, - A7506DEBEB38DDC2EEA3551B91F8EF7B /* APRelatedPerson.h */, - B8F68DF1960B1CFC7F877E2FF04062E7 /* APRelatedPerson.m */, - AE2A51A3015859B77CBD673405D87A80 /* APSocialProfile.h */, - E9E1384D496AAA9B283AEFA30B66EF4C /* APSocialProfile.m */, - FB3C46DCE0A93092132E2534CC02C4AA /* APSocialServiceHelper.h */, - F887D174CFC67DFDDB353FFC5AD1B5DF /* APSocialServiceHelper.m */, - 82F07E473ECE5DF9C387E96349095021 /* APSource.h */, - 84757CB1455CB0A3D2BF397704678B92 /* APSource.m */, - D148B450A3F94C377BE9DC7D5E0007D6 /* APThread.h */, - 6867048CC65188369D134347ECD7AF6D /* APThread.m */, - BD816D180F972CC2B40F3B7AA3AFCBDA /* APTypes.h */, + FC16B784236156D246DC5BC09E716CBE /* DTAnimatedGIF.h */, + 85CD240D44B5586DB879C8E5AE2A218F /* DTAnimatedGIF.m */, ); - name = Core; + name = DTAnimatedGIF; sourceTree = ""; }; - BF7EB1125F9D4084A52AB14FAA0B1B2A /* Frameworks */ = { + ABF8586956CF2415FE568299EDAD1948 /* DTFoundation */ = { isa = PBXGroup; children = ( - 777BC22360E0AFD103C7CAF2EF7E0ABF /* AFNetworking.framework */, - DB2133ADBF385E5E0339A9ED19CB8B00 /* DTFoundation.framework */, - 3581C5E67C77A561CB90131ED590FDDE /* OMGHTTPURLRQ.framework */, - 90DC89C62CF1601ADE854D29D947BE57 /* PHFDelegateChain.framework */, - A554454E9875DE6C81C75C7372773543 /* Reachability.framework */, - 5BA79654855CD0B7DB14A8FDEC6742D1 /* RMActionController.framework */, - 80011EC7C92D496AAA17BD49C6056DC2 /* SCSiriWaveformView.framework */, - 038683660677F413F08930768FEC48BE /* iOS */, + CFFA53C430163C94180FE47B5ABE97A6 /* Core */, + AA11E1573FCFFC54086F2F39E9C6140A /* DTAnimatedGIF */, + 9175CAD0861E6AEC660AE7D9F9322074 /* DTHTMLParser */, + FE890AC1144F87C956BB5DAFC83B36C4 /* Support Files */, + C1E311B45E3B9582AD9ACD7E0B7B7AF2 /* UIKit */, ); - name = Frameworks; + name = DTFoundation; + path = DTFoundation; sourceTree = ""; }; - C350A1E9E9841D26E54F89C886A04A07 /* Support Files */ = { + B19DEAB978457ED35B2FB1306F3B4474 /* Support Files */ = { isa = PBXGroup; children = ( - 141B483A7A2A3B10B4C0236A5FD3FCEE /* Info.plist */, - 1B2DAB2EAECA5E58F09083AF2C3A8DE7 /* Reachability.modulemap */, - 7F2A3FF0AF245DEB4D1FE034076FDDFF /* Reachability.xcconfig */, - F02172ABD321A56C54B60CD32E788349 /* Reachability-dummy.m */, - B34AD82E31583B339FFFB96FF12B5DB4 /* Reachability-prefix.pch */, - DF46A167F4D20909D9F0D76AB571C9D1 /* Reachability-umbrella.h */, + FDFD1AE3EB07DE346341F732901CEBD5 /* Info.plist */, + 6138601BBFDEA36F016DD6017D3FC6EF /* UICKeyChainStore.modulemap */, + DDBF987FC8DAAE03804FF9AF0E7168CC /* UICKeyChainStore.xcconfig */, + 923D69D940528F5C1A90D31C2171AEFC /* UICKeyChainStore-dummy.m */, + EEB4793808C0B98E7F0F252D815B57F9 /* UICKeyChainStore-prefix.pch */, + 72CF5246F3DFD951544D3F6C96DB87BF /* UICKeyChainStore-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/Reachability"; + path = "../Target Support Files/UICKeyChainStore"; sourceTree = ""; }; - C54D9CF8230C45C93C96B0948FAFFB48 /* Support Files */ = { + B3951F001E06D73A998CB52D2D287D4E /* Support Files */ = { isa = PBXGroup; children = ( - 2D9B1D4D0B95F0400E129AA12A33BED4 /* FLEX.modulemap */, - B81C859114714EAAFA5510C534E1947D /* FLEX.xcconfig */, - 7FA012A35DE80851658E776943351113 /* FLEX-dummy.m */, - 8C80CCF6C84747DBFC12D9C9ED8F47C2 /* FLEX-prefix.pch */, - 72D197F8B6E9BBCB7F92B8CF5C39D2D8 /* FLEX-umbrella.h */, - 43E3A213F5B3BD94E198A2D59BBB5DD5 /* Info.plist */, + E2C4C79C0A7DABA88B3EFBF3D9BC75CE /* Info.plist */, + 362ABEA5DC0D3E3799695BFDDE58EB21 /* PHFDelegateChain.modulemap */, + 357383252906A72BAFBB345894558400 /* PHFDelegateChain.xcconfig */, + A83526F10D8CE6C3016D8FCB1BC6D618 /* PHFDelegateChain-dummy.m */, + 8416C8E3805DFA0A6E11454D58DC0CFE /* PHFDelegateChain-prefix.pch */, + 3B1B9C6C63E282E5D73AF0FFA2E9D02B /* PHFDelegateChain-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/FLEX"; + path = "../Target Support Files/PHFDelegateChain"; sourceTree = ""; }; - C975E2157727365F91391331C4D38ADF /* Support Files */ = { + B88E860738CDEE5187B0ABED7D1EEE5C /* UICKeyChainStore */ = { isa = PBXGroup; children = ( - 1C0BD8379E7A200C9C4BE1214D722148 /* AFOAuth2Manager.modulemap */, - 183D684EA39FFD04AE9CDCC63D54F89E /* AFOAuth2Manager.xcconfig */, - 59391E03D045F132284A62D2249F0975 /* AFOAuth2Manager-dummy.m */, - 3E62B891B6C1323DE811921C4FFBE1E1 /* AFOAuth2Manager-prefix.pch */, - 1516D56D294867909E2B2A56F41BC3DC /* AFOAuth2Manager-umbrella.h */, - AC24AF2F37A8BB0BBDA4748E53D5DC5A /* Info.plist */, + AD93E66D2C89F42BD4143A7FD2778E86 /* UICKeyChainStore.h */, + 4F818E6397B87D47749C8181C0450F8A /* UICKeyChainStore.m */, + B19DEAB978457ED35B2FB1306F3B4474 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/AFOAuth2Manager"; + name = UICKeyChainStore; + path = UICKeyChainStore; sourceTree = ""; }; - CA13A5C654E50DCAE8B4A10484DC4BE6 /* Support Files */ = { + BD71CFDA56EBDB51FA46CC67E3852AB1 /* Support Files */ = { isa = PBXGroup; children = ( - 6F8BB38E19C2F12AEC60A2E52E2D7388 /* Info.plist */, - E73E73D29C4C034A6506C9B2390FDFCE /* PHFDelegateChain.modulemap */, - 57B62A04F13D288D076C68A79C6391C0 /* PHFDelegateChain.xcconfig */, - B8AF818756769A4486EDB190FC315E3D /* PHFDelegateChain-dummy.m */, - 222A867F1C9787C880D867402B72209D /* PHFDelegateChain-prefix.pch */, - 80C7E5E86457B0BEC58B54C986855694 /* PHFDelegateChain-umbrella.h */, + BA38197D6DE0139D8BF8EA26AF15165F /* FLEX.modulemap */, + 313962AC8D063DCBC1D1835604DF5E48 /* FLEX.xcconfig */, + B7B7944C844092E0A671E7967E9D4019 /* FLEX-dummy.m */, + 5099EF31159BE761612B09C44A57705E /* FLEX-prefix.pch */, + 10E0F6026C083FAD1E5D616635326E13 /* FLEX-umbrella.h */, + 895C993F7E3BD3AF187E0C08BB4E0C0D /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/PHFDelegateChain"; + path = "../Target Support Files/FLEX"; sourceTree = ""; }; - CEF8D2718358A9BF70416CB8273206D9 /* Support Files */ = { + BF7EB1125F9D4084A52AB14FAA0B1B2A /* Frameworks */ = { isa = PBXGroup; children = ( - 8625C55F74969F23C581D903F5BDF44B /* DTCoreText.modulemap */, - 8C1B791E3A38247817B16AEB76D29A43 /* DTCoreText.xcconfig */, - F382EDDE6497862B6B7F86E8DE2FE671 /* DTCoreText-dummy.m */, - 75E66231800E8971EA67ABAA24E209A8 /* DTCoreText-prefix.pch */, - 710023910822F8867F68F19098C62DEE /* DTCoreText-umbrella.h */, - 611F3A488A6B20C68C68DE9C635930C1 /* Info.plist */, + 777BC22360E0AFD103C7CAF2EF7E0ABF /* AFNetworking.framework */, + DB2133ADBF385E5E0339A9ED19CB8B00 /* DTFoundation.framework */, + 3581C5E67C77A561CB90131ED590FDDE /* OMGHTTPURLRQ.framework */, + 90DC89C62CF1601ADE854D29D947BE57 /* PHFDelegateChain.framework */, + A554454E9875DE6C81C75C7372773543 /* Reachability.framework */, + 5BA79654855CD0B7DB14A8FDEC6742D1 /* RMActionController.framework */, + 80011EC7C92D496AAA17BD49C6056DC2 /* SCSiriWaveformView.framework */, + 038683660677F413F08930768FEC48BE /* iOS */, ); - name = "Support Files"; - path = "../Target Support Files/DTCoreText"; + name = Frameworks; sourceTree = ""; }; - CEFDFDB04107279CA5544FCDA03BF03C /* Support Files */ = { + C1E311B45E3B9582AD9ACD7E0B7B7AF2 /* UIKit */ = { isa = PBXGroup; children = ( - CC4AA98F85A191E02A1DC1657646247E /* DAKeyboardControl.modulemap */, - D1DC99BA66E71030F29ED84A229C7426 /* DAKeyboardControl.xcconfig */, - DC697AB745938E8954332D7AB856E2E2 /* DAKeyboardControl-dummy.m */, - 40E4A2CE90C30F9B29EDC70B9712C68A /* DAKeyboardControl-prefix.pch */, - B84434529E35E73A5E05CF53C99C999B /* DAKeyboardControl-umbrella.h */, - F9C149D09C71D5544D050C4005FF0690 /* Info.plist */, + 5E9D9CFC3B3A6FDC6209D798B16F3807 /* DTActivityTitleView.h */, + 14B918A2132BD82082457A0A6DAF0571 /* DTActivityTitleView.m */, + 520DDD7347559BF3F7375169C645A122 /* DTCustomColoredAccessory.h */, + 600387883BC9EC0E1F68A77D2C288367 /* DTCustomColoredAccessory.m */, + 03D2B74A207250F2C5F3C7027061DF22 /* DTPieProgressIndicator.h */, + 79084DDFF0DCF8918952878D090A9AAB /* DTPieProgressIndicator.m */, + 0817826FCACA52B28DD9612AC33D511C /* DTSmartPagingScrollView.h */, + 6F11AF4F5E761CF8E3C90031FE909E99 /* DTSmartPagingScrollView.m */, + ABD45870B056D89F67544C66E6EA8FCF /* DTTiledLayerWithoutFade.h */, + 6EE56B0B6E7840E54588D6233CEADC55 /* DTTiledLayerWithoutFade.m */, + 09B24B6B33A2686A74454B4C779F0263 /* NSURL+DTAppLinks.h */, + 9DE67AAE6CA02C21501C110C207929E0 /* NSURL+DTAppLinks.m */, + 6CBA86A6C489D012C173116E8E1C9B45 /* UIApplication+DTNetworkActivity.h */, + 0D44E2A180C0B49A3125C97FFDA91B92 /* UIApplication+DTNetworkActivity.m */, + 770C36F20DBF7B06B21F80D87A20CA58 /* UIImage+DTFoundation.h */, + BEA83630C7A6FD3CAF16440315E04ACC /* UIImage+DTFoundation.m */, + 650A7641A8DA925DE82A867E54F7DBFF /* UIView+DTFoundation.h */, + B8714591AAC9EF71E5F47045BD68A4E0 /* UIView+DTFoundation.m */, + F32C527988899CB267DA1EFED016A6DA /* UIWebView+DTFoundation.h */, + 68F7230EBFA846202E522AD8142BCAB6 /* UIWebView+DTFoundation.m */, ); - name = "Support Files"; - path = "../Target Support Files/DAKeyboardControl"; + name = UIKit; sourceTree = ""; }; - CFA7A308334305226A643DE15E465683 /* DAKeyboardControl */ = { + CA403A968765A7137A6304141D912334 /* FreeStreamer */ = { isa = PBXGroup; children = ( - B6547E0850EDE5D5DC33BBE475EE96BC /* DAKeyboardControl.h */, - 700278E1CA5E20C88290200E6EE849C8 /* DAKeyboardControl.m */, - CEFDFDB04107279CA5544FCDA03BF03C /* Support Files */, + DB86532860DE763E8109799DDB361133 /* audio_queue.cpp */, + AC5B40387A80ED13803A1C6F450D4B72 /* audio_queue.h */, + BA263A3DFFA51B47465209BDB1FD8FDB /* audio_stream.cpp */, + 42E4A93F4F0AA6B85A3937E9ECEB5A69 /* audio_stream.h */, + 043229ADADDE01C8FBFE231777181B0F /* caching_stream.cpp */, + B13B97D9EFF27FF1A377ACCC52684DC6 /* caching_stream.h */, + 6BF0838F426E499BF4EDF2704AF27869 /* file_output.cpp */, + FCA0B1D9025BA909439CBCCBD49F7959 /* file_output.h */, + 0FF809D7C8A771B6B5E95255540E0A4E /* file_stream.cpp */, + 6F824D88D9DC2EC39209686A09DC59EF /* file_stream.h */, + 2599BCCA616A52C5CF333EE039CDD1B7 /* FSAudioController.h */, + C32A32AD9DBF6D224A7F32549DD6141F /* FSAudioController.m */, + 714E002DDE85F979EA95B7718B852666 /* FSAudioStream.h */, + 6016E7C82D60BF4878DDCF1ABFBE291C /* FSAudioStream.mm */, + 377E088C7AEA2B4DDEFD3CD36843822D /* FSCheckContentTypeRequest.h */, + 0690638056E11072CE1A38CE01F3DED5 /* FSCheckContentTypeRequest.m */, + 240FD91EF54A748EA9B6476014C7DFF2 /* FSParsePlaylistRequest.h */, + 0415BE9419BF1BAC84D0205EB738DFB0 /* FSParsePlaylistRequest.m */, + 8B5355AAAA4748D75B92930524796774 /* FSParseRssPodcastFeedRequest.h */, + 646990BB288B2EAE42A5E57FDD4C05E7 /* FSParseRssPodcastFeedRequest.m */, + 93F45BF724B6A66F73E5EEF34DE78988 /* FSPlaylistItem.h */, + 6A12BFE1595EC99B04A036CF63C57757 /* FSPlaylistItem.m */, + 7293D4E5C870A94981600DCA4CAFAC08 /* FSXMLHttpRequest.h */, + 5E7F5A31FB209E5663F183CE9327C389 /* FSXMLHttpRequest.m */, + 4FF08E65E572CC0E9EC130082BD8D5D2 /* http_stream.cpp */, + A58D196720F5DBAF68384456C8CC8545 /* http_stream.h */, + 12165B6AE64ACFC0C5559CA572474308 /* id3_parser.cpp */, + F62AEEAD3EA1439130930CD5E5F92414 /* id3_parser.h */, + F49A7D5713AE62F90AF00904BECEFB22 /* input_stream.cpp */, + C68A8D4A83A675EDFF007143E0AB6B09 /* input_stream.h */, + 679F4F5B6EFA2857F59EEE95F6A118D3 /* stream_configuration.cpp */, + 95FA2208AC56495688FCFE1CA4732A55 /* stream_configuration.h */, + F7B522B1B76E1F5071147561039B562F /* Support Files */, ); - name = DAKeyboardControl; - path = DAKeyboardControl; + name = FreeStreamer; + path = FreeStreamer; sourceTree = ""; }; - D4AED59E69A036A85ADE8C908C8C57E8 /* NSGIF */ = { + CD2806842069EF2119C0ECEF256FB23B /* Support Files */ = { isa = PBXGroup; children = ( - 5B6C7C96AECE08DBC3E2FE796A23B322 /* NSGIF.h */, - 5158D8F86C491A7F2899C1FCC59F23AD /* NSGIF.m */, - 9E426F7075ECDF8E797CC3D05577DE95 /* Support Files */, + CC693CB498214E9EEC0BDD5BFFC06214 /* Info.plist */, + 8F36F5700F860C4C0D0B343DBACBC853 /* JDStatusBarNotification.modulemap */, + C59C9AA16397388F13A2C79A799D42D8 /* JDStatusBarNotification.xcconfig */, + 082427ECF6CCB82459A8091714C81274 /* JDStatusBarNotification-dummy.m */, + F590A048DBD51A1CC8C7BB72383B4D8C /* JDStatusBarNotification-prefix.pch */, + 668772894F7A72E86990959E6C66B99F /* JDStatusBarNotification-umbrella.h */, ); - name = NSGIF; - path = NSGIF; + name = "Support Files"; + path = "../Target Support Files/JDStatusBarNotification"; sourceTree = ""; }; - D83598ADBEA77ACF0C6D07396F788D07 /* Support Files */ = { + CFFA53C430163C94180FE47B5ABE97A6 /* Core */ = { isa = PBXGroup; children = ( - 19CC7EE299EB36BDEFA0676D6B5854C5 /* Info.plist */, - EC8E913C2B01CD194A65E6EB2DF197F4 /* SDWebImage.modulemap */, - 1C253CE3C4A37FA076B9CCEA3C53AF1F /* SDWebImage.xcconfig */, - 0755AE89CD035E9EF4ED421F9AC74E5C /* SDWebImage-dummy.m */, - 5EECEF3616375C6F84C8A539E0F5C468 /* SDWebImage-prefix.pch */, - 22582F6B0612BECAF4A7AE8B9BE4160C /* SDWebImage-umbrella.h */, + 38B942DB0797810815FA4AFAD9116364 /* DTBase64Coding.h */, + 1D580EDB55DF5456D24128C5034AD356 /* DTBase64Coding.m */, + E0D86EB526105F4F0E76B9B466C3EDDA /* DTBlockFunctions.h */, + A4ECA9B5DB655B813F58795F78C3DA20 /* DTBlockFunctions.m */, + 8F0ED090BAB77CA998EBE90D9D630B27 /* DTCompatibility.h */, + D548F682E2F0288EA096802D12CBD53B /* DTCoreGraphicsUtils.h */, + 7F200A53901AF55BFCBEEFEBC1E37971 /* DTCoreGraphicsUtils.m */, + 10B26115E7767C4804D1EDC76AB1F11F /* DTExtendedFileAttributes.h */, + 3DC6DE8AF72CC88A5BCDD49C884129B4 /* DTExtendedFileAttributes.m */, + 49F6B1094D831985642788CD743EB123 /* DTFolderMonitor.h */, + BE46C0E810CDA8DF6288461E1F502870 /* DTFolderMonitor.m */, + 0C9313DB8F0D00C4A6808079D9893FEF /* DTFoundationConstants.h */, + 4A2342469369B33A0E418CFF3BAB58AB /* DTFoundationConstants.m */, + 1C65AFC62CA31D4715CCB2040BD43198 /* DTLog.h */, + 8E82BD09FAC7F84D445D8B67101B05F1 /* DTLog.m */, + BF9C02A41A97CF56338A18248AEC04DC /* DTVersion.h */, + E164EA220B21FC01642A157C4339A5F6 /* DTVersion.m */, + B8A726239378E2FF00F6CD6F992FCF16 /* DTWeakSupport.h */, + 1E007265AB1375938CB8864D20767051 /* NSArray+DTError.h */, + 4F75B0941633011875EA450B8F43FFD3 /* NSArray+DTError.m */, + AF44F2CABF4F4738E41C289C99D978DD /* NSData+DTCrypto.h */, + D54E236ED13CE053E1CCE5F7EE33400F /* NSData+DTCrypto.m */, + 6C0AC8B6B1DBAADEB0A1034798262DFD /* NSDictionary+DTError.h */, + A76969048B4D17ECAC95D0E2223ECD91 /* NSDictionary+DTError.m */, + 29A8E9E813332D1E79D947F3122D5BE7 /* NSFileWrapper+DTCopying.h */, + 133F6757D510EF372EA3961988FDFC55 /* NSFileWrapper+DTCopying.m */, + E25182F03FEACE4E6E9E38A5243E98C1 /* NSMutableArray+DTMoving.h */, + 1C1006944B9811BFE73CDD8019C59AD0 /* NSMutableArray+DTMoving.m */, + E2229DF58B134CF5A7CFD98896FE73B6 /* NSString+DTFormatNumbers.h */, + F7202715B80704054230DD0D2E9CA608 /* NSString+DTFormatNumbers.m */, + 4296E0816EC2A57209B7166DEB2BA9CD /* NSString+DTPaths.h */, + 3AAC256B0D73B2852C368D2FC9794639 /* NSString+DTPaths.m */, + 3A2614BCCE7E08481D18DFDC2E8FC653 /* NSString+DTURLEncoding.h */, + C85B58040FF1A3C299D45633E045B867 /* NSString+DTURLEncoding.m */, + 6AECEF65C6FE2CB7305D1CBF10116180 /* NSString+DTUtilities.h */, + 62A2F121D81207F0987F91CAA7F22614 /* NSString+DTUtilities.m */, + E677C4C4661DCCF69DEC5274E3928AFC /* NSURL+DTComparing.h */, + 841224006EB51A480B93DAD9C1CFCE68 /* NSURL+DTComparing.m */, + 4A6901341334DEDE58238A0327DD0A64 /* NSURL+DTUnshorten.h */, + 6220458DB827C9E4FD6BBD74C2B424D0 /* NSURL+DTUnshorten.m */, ); - name = "Support Files"; - path = "../Target Support Files/SDWebImage"; + name = Core; sourceTree = ""; }; - D97ADD837588D283E4530F0B64E245EC /* Support Files */ = { + D0252CC7C733C670347475C861812D19 /* CYRTextView */ = { isa = PBXGroup; children = ( - 1E555704CECF6684684EFE7F1ECA2858 /* Info.plist */, - 4B3A79BBD35D314ACE6350F857A89F1D /* UICKeyChainStore.modulemap */, - F0D2869601925785C3D64F6BE1C53D11 /* UICKeyChainStore.xcconfig */, - 8B176ED3E240D0EF491F6BB2BCE9FB83 /* UICKeyChainStore-dummy.m */, - 2477B42EAA9C0D2C4E2A9AC0B606BE59 /* UICKeyChainStore-prefix.pch */, - F4618B6CE2DDE6778CAE0721D3322D31 /* UICKeyChainStore-umbrella.h */, + 394066EA22FD88C45A5959D83F7D92F9 /* CYRLayoutManager.h */, + CCE7B3D9E5E83D11AA75D81D93ACF675 /* CYRLayoutManager.m */, + 81BC8BD91ACAC341D0B4F19B6DDA7F02 /* CYRTextStorage.h */, + 1E7B0B7983F236ECA5E3E0C59E61097D /* CYRTextStorage.m */, + 9005B7BFAB969BA3A856FB55DE22E582 /* CYRTextView.h */, + 24A31B3338004710E27213878EF23B1C /* CYRTextView.m */, + C47F68733CDC7A3371931DBBDA3FD724 /* CYRToken.h */, + E229D947F90783F93B55BE665D4E939D /* CYRToken.m */, + 5620CF8AB84F78A61D4CE13CF29A7E51 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/UICKeyChainStore"; + name = CYRTextView; + path = CYRTextView; sourceTree = ""; }; - DD7C259D3A86ECB75ADDC014C92B785E /* Support Files */ = { + D340EF0C51B71489E8E808B989CAA03A /* BBBadgeBarButtonItem */ = { isa = PBXGroup; children = ( - 16B396BF03C427E03EEFD37C3BC1D226 /* Info.plist */, - 589114A2A9D350886947E366A7D16A4F /* RMDateSelectionViewController.modulemap */, - 55406DBE66FE1FEE34DE9ED35DB9B164 /* RMDateSelectionViewController.xcconfig */, - 08F94363765D157922E0FDE17241FA47 /* RMDateSelectionViewController-dummy.m */, - 55085C479A410383692A43A0FF750D42 /* RMDateSelectionViewController-prefix.pch */, - 3D48D744C9695D6285AC75A5CAC72417 /* RMDateSelectionViewController-umbrella.h */, + 8363A7722ACD5C3467B49CEC45582ABE /* BBBadgeBarButtonItem.h */, + 3A3D96E5FCA89977E3EABE38BA34C0C0 /* BBBadgeBarButtonItem.m */, + 7AAF1A13318BC6F9B7089C316B52BC6A /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/RMDateSelectionViewController"; - sourceTree = ""; + name = BBBadgeBarButtonItem; + path = BBBadgeBarButtonItem; + sourceTree = ""; }; - E52BCF13B56EB2B97BE61E1B453E35AA /* Support Files */ = { + D765D746A786D72BD8A625A2C3937ABF /* APAddressBook */ = { isa = PBXGroup; children = ( - C11D29E365D6515402645C9114731BAA /* HMSegmentedControl.modulemap */, - 24D783A978FD06046E6EE613104BBFF8 /* HMSegmentedControl.xcconfig */, - 66C4D40948A967A9066D3764FD4CBB52 /* HMSegmentedControl-dummy.m */, - 223532B4F6AEAB51009DB1B5EED0CC21 /* HMSegmentedControl-prefix.pch */, - FC0C3835E53EB462BBCD8D9FAA8E1290 /* HMSegmentedControl-umbrella.h */, - 58F76130017D1638B73950E109E6831C /* Info.plist */, + 3E4A8C48A1EF3AB9DCF437F58A371FAA /* Core */, + 819908341BEB485A773D0AD297FEF591 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/HMSegmentedControl"; + name = APAddressBook; + path = APAddressBook; sourceTree = ""; }; - E69F4788CCE43C017E2170E5CA87A480 /* TDOAuth */ = { + DA32180DFEE582DA5A9C75E1A7180E4B /* Support Files */ = { isa = PBXGroup; children = ( - 02686E0CF74BC021364E1FCFD9182253 /* TDOAuth.h */, - AE5C3CE206EEC504AE29A7F095515111 /* TDOAuth.m */, - 2D9A5C9DEACEF64CA5A38B1769F025CB /* Support Files */, + B5D615B5343A1150A2A2208A2E8947F2 /* Info.plist */, + 0206CABCE3FA09F33271DAF492365437 /* PHFComposeBarView.modulemap */, + F9BD07D24EA910E09C8AAADF07C1D9C8 /* PHFComposeBarView.xcconfig */, + FA016541B294EBBAC0E00265B46FD94C /* PHFComposeBarView-dummy.m */, + 358277F80EB84A91CA9D78FA950D133C /* PHFComposeBarView-prefix.pch */, + 312DD32B81DBEBA53BC64C852DDD8296 /* PHFComposeBarView-umbrella.h */, ); - name = TDOAuth; - path = TDOAuth; + name = "Support Files"; + path = "../Target Support Files/PHFComposeBarView"; sourceTree = ""; }; - E92B6C71C41EBB2F9BC999CD4A9009F1 /* CYRTextView */ = { + DA92D2D57A855CFCAD41EC4BE8686D57 /* DHSmartScreenshot */ = { isa = PBXGroup; children = ( - 119976D323FBDA68F9CD0BD32E77E66B /* CYRLayoutManager.h */, - 709BAAFD3E917331F0287D67BC5F5204 /* CYRLayoutManager.m */, - CC48EBE6D1023B7A318B639B0CA62F90 /* CYRTextStorage.h */, - 9D9957D73F530963C27878915A6C6363 /* CYRTextStorage.m */, - 37FB8CFA35F9B22346E4CBD77B71B55E /* CYRTextView.h */, - 5E301D6FA8206483FBE37A60EB3DD322 /* CYRTextView.m */, - CBAEED838BD1DACB5BDC3A36BA024E24 /* CYRToken.h */, - 752C64C337DBBD830798C607B92F0B50 /* CYRToken.m */, - 428FE5E529B2670EEC319E841FD3955D /* Support Files */, + FE8D90DE6B2B11B29511B3D835D1C7D8 /* DHSmartScreenshot.h */, + 726EC31E8621559660F62343917EE379 /* UIImage+DHImageAdditions.h */, + 953F2EF961D9C10FBBF42A68600E4650 /* UIImage+DHImageAdditions.m */, + 2D4D114E0B879CD07A7880D6749A5448 /* UIScrollView+DHSmartScreenshot.h */, + 1D3432B961B88D0CD5A745EA7400F354 /* UIScrollView+DHSmartScreenshot.m */, + A029C758AF440367546ED84D42693715 /* UITableView+DHSmartScreenshot.h */, + C8C3FB561A4BE5009FB37C03A4044E5B /* UITableView+DHSmartScreenshot.m */, + 5290BA7843E810AE324457A4792A9A53 /* UIView+DHSmartScreenshot.h */, + 03767F1B5F097DAC8A2F5AC395E71857 /* UIView+DHSmartScreenshot.m */, + 03FDDFA0405E9C36E4A408E7BBE37F49 /* Support Files */, ); - name = CYRTextView; - path = CYRTextView; + name = DHSmartScreenshot; + path = DHSmartScreenshot; sourceTree = ""; }; - E9E6DE2F70AB39F3D46DDB86C0927DF9 /* MBProgressHUD */ = { + DBD561C58FEC7BD1DC68B7D75B9E4043 /* MBProgressHUD */ = { isa = PBXGroup; children = ( - 006F5DF90D73F11F20B7C011D013B0FF /* MBProgressHUD.h */, - C34307AE2CF4D77C04EB4B1A42EEA007 /* MBProgressHUD.m */, - 5EDA3EF3E9A7980978B1A849AAE70986 /* Support Files */, + A50E6DF25B2F8E041D83086B3F9F8EEA /* MBProgressHUD.h */, + 24CD3A992934047CA47218EEF4230068 /* MBProgressHUD.m */, + 29098340EB83D7F9387514B747356DF7 /* Support Files */, ); name = MBProgressHUD; path = MBProgressHUD; sourceTree = ""; }; - ED4ABD73AF2C8CBE84CBAB8319D92DCF /* Core */ = { + E138AC5EC643CC2653BB0A5FC8A55031 /* JDStatusBarNotification */ = { isa = PBXGroup; children = ( - 2640047093368DBCEDE088159CD9FF43 /* DTBase64Coding.h */, - 6704C40559C67CA2DAFF8C264DC0CCD5 /* DTBase64Coding.m */, - 94A34E81852250302A3D95AB0F21A921 /* DTBlockFunctions.h */, - 45783DABE884C1E04E9FAC37ECB50B41 /* DTBlockFunctions.m */, - A01DA3859513A81F73EB963BC47F1B51 /* DTCompatibility.h */, - E6C710805DB94E421BDC317F8F9CD074 /* DTCoreGraphicsUtils.h */, - B2BD6A83828190E5D58EFAA49579288F /* DTCoreGraphicsUtils.m */, - B4F10CB1FFB48A32F54D388C3AE5F4DE /* DTExtendedFileAttributes.h */, - 1AADB332BAF7AC2F10DEA096D6251DA5 /* DTExtendedFileAttributes.m */, - 6C920F926A3E5B948F3303C2FDE2631F /* DTFolderMonitor.h */, - E94B01BF2AD31C5DA1A523E24D40AAEB /* DTFolderMonitor.m */, - 1562E015955FD1934E4E64758BEBCF8B /* DTFoundationConstants.h */, - A166AB3AB553B1A9A763E0B34942641D /* DTFoundationConstants.m */, - D0ADE84C411222AF23DB1BF0D9317C97 /* DTLog.h */, - 6A68FE5C331CD5C21152DCBD1E6CC621 /* DTLog.m */, - 76B81BE510630E83E475AD13A6143D6C /* DTVersion.h */, - A04DF0248DF140F451357C8B7DCBC465 /* DTVersion.m */, - 130DDCB98FF206F89F0DF05AAE88E924 /* DTWeakSupport.h */, - D8BD21D7BB635862F7C639F950D476A7 /* NSArray+DTError.h */, - 5C23640D31030C7151EF8CAA8AADE6D2 /* NSArray+DTError.m */, - 70453B076B8940B2EB2C5FC8B72E5BCF /* NSData+DTCrypto.h */, - 081A951F80BADFA3899D013497451EC9 /* NSData+DTCrypto.m */, - 602C8A4FC0223BC6B50FC6D7EDD3032A /* NSDictionary+DTError.h */, - 6DB509DC9CF8B2241B6EA60524C64EF6 /* NSDictionary+DTError.m */, - F68347EE7279AA839ADA00FA7EAC8F82 /* NSFileWrapper+DTCopying.h */, - 14CD351389B2999174E87C8FCB08E70A /* NSFileWrapper+DTCopying.m */, - 6DBAA4D161962DBB007C8DA49427A1F8 /* NSMutableArray+DTMoving.h */, - DAEF91E938ADAAF9846D30476713EF80 /* NSMutableArray+DTMoving.m */, - 491BF5014DA3DF05AF8F50CFBE8BEF2B /* NSString+DTFormatNumbers.h */, - 1084A29B0AFE32DF75516BECCB56623E /* NSString+DTFormatNumbers.m */, - 85A74A39195A15CEE207AE524F434DED /* NSString+DTPaths.h */, - F956B99B115045FDADA5A63BF3DD8F70 /* NSString+DTPaths.m */, - 87C017E618B3A2203BD8D42A167E9780 /* NSString+DTURLEncoding.h */, - D4F68511D11A65C87E86D6CD4F19FFC5 /* NSString+DTURLEncoding.m */, - F0D5592C9DCA8994EF739DEEE09669FC /* NSString+DTUtilities.h */, - 0CC8CA1A2411789038BE7CFB2B2AD87F /* NSString+DTUtilities.m */, - 64BBB9C81A8B67101B39547FD4F7E216 /* NSURL+DTComparing.h */, - 2F870847157AFFCBC5295EAFBD0E29F2 /* NSURL+DTComparing.m */, - 690E28B5592B0D4DEBC50629497F7A10 /* NSURL+DTUnshorten.h */, - 40793C347206023D01ED731815ED809B /* NSURL+DTUnshorten.m */, + D1EF18AC15930FA4B62972888B8BAC48 /* JDStatusBarNotification.h */, + 499D9021A3181138DDDCC270C55CC475 /* JDStatusBarNotification.m */, + A5E9EAAC937FB1ECCA32D4B5A657ED22 /* JDStatusBarStyle.h */, + 8DBD627B01C1693A98E5FE1CC66C6FC6 /* JDStatusBarStyle.m */, + C2653460C6784A6742200E0577E292D1 /* JDStatusBarView.h */, + A3F0FBC34E9260AFD75E99D4C3B475BA /* JDStatusBarView.m */, + CD2806842069EF2119C0ECEF256FB23B /* Support Files */, ); - name = Core; + name = JDStatusBarNotification; + path = JDStatusBarNotification; sourceTree = ""; }; - EF7E1B8C693F5DAA988862A681616638 /* SWTableViewCell */ = { + E1B1429AD2AB01F11BD0C8034238C822 /* Support Files */ = { isa = PBXGroup; children = ( - 8E512B182853505E7E126A70B9B4220A /* NSMutableArray+SWUtilityButtons.h */, - E999A0C326C0F9466AAFF8BCF2986B8F /* NSMutableArray+SWUtilityButtons.m */, - E6CAC8D90E86D922AD68177B7F76619F /* SWCellScrollView.h */, - 554E202051959EEFB2E3973C86D930D0 /* SWCellScrollView.m */, - 448464D6F627D2F72EBB786FF6A72987 /* SWLongPressGestureRecognizer.h */, - 31531992BBC1AADCFF9B916DFDC5AED3 /* SWLongPressGestureRecognizer.m */, - B5CFC10C0538EDA36516FD16343D8E24 /* SWTableViewCell.h */, - 2B7C6704DA73D2DDBD920E4A4672AB08 /* SWTableViewCell.m */, - 90FBBB622177929BCEB8DE6AD01F4FA5 /* SWUtilityButtonTapGestureRecognizer.h */, - D2E3E4AC1C3D019248474E68ABBE231D /* SWUtilityButtonTapGestureRecognizer.m */, - 9BB39331406DF9EAE0E8F12097FAB181 /* SWUtilityButtonView.h */, - 62790314D504AA77213ABA7FDFCCD80F /* SWUtilityButtonView.m */, - 4F3F54376D9389A55DDE316FD33FDBBC /* Support Files */, + FD88AA4ED06CEA7929F61C043170F80E /* Info.plist */, + 7A57203720857522B4F76083720A7A2E /* OMGHTTPURLRQ.modulemap */, + 798C34BCFB56D5729118F56754D55AD8 /* OMGHTTPURLRQ.xcconfig */, + F5A7C04DC4A039F581DDD97E8A87CE98 /* OMGHTTPURLRQ-dummy.m */, + 194BB7F7B7F9D8652A18027DC837A9A2 /* OMGHTTPURLRQ-prefix.pch */, + 7BD290DDF640EA0B60E39139D1C4734A /* OMGHTTPURLRQ-umbrella.h */, ); - name = SWTableViewCell; - path = SWTableViewCell; + name = "Support Files"; + path = "../Target Support Files/OMGHTTPURLRQ"; sourceTree = ""; }; - F0FBBF791519D631BA5534B64869389F /* SDWebImage */ = { + E5F02860F8BC3B2F2172040936BDA4BE /* Support Files */ = { isa = PBXGroup; children = ( - 38D258C09F5D68C4C6376A8D761BAA23 /* Core */, - D83598ADBEA77ACF0C6D07396F788D07 /* Support Files */, + D1B312BCBA8B3C03080C2E83034A9573 /* DTCoreText.modulemap */, + A6DEA404069AD956556FD668F12516F3 /* DTCoreText.xcconfig */, + A7C9E138035AB9626282D01978280D54 /* DTCoreText-dummy.m */, + 330DB2241368FF1711F0EDA701D497D9 /* DTCoreText-prefix.pch */, + F517F7480D96916528F8CF9663290D46 /* DTCoreText-umbrella.h */, + 2B696B11166FB7EA1EA05978E25B7F56 /* Info.plist */, ); - name = SDWebImage; - path = SDWebImage; + name = "Support Files"; + path = "../Target Support Files/DTCoreText"; sourceTree = ""; }; - F1B8347B00996AD2F037703A0A7FDA14 /* Support Files */ = { + EB2ABBA888B8EAA49D617F71FC01AA0E /* Security */ = { isa = PBXGroup; children = ( - 82E3AE46FF222574CA049832BE597340 /* Info.plist */, - 319ED7AB7807690577CF769D4E1F2159 /* JSCoreBom.modulemap */, - 63F96CD01E23F8C4EBAADB24E8567110 /* JSCoreBom.xcconfig */, - 9EFF8C81742212AEB6787CF24E077EB3 /* JSCoreBom-dummy.m */, - 0493C8D6F6FD24B70E545E1E3BD44251 /* JSCoreBom-prefix.pch */, - C190D867F7B47EF6005B622DF7AF30DE /* JSCoreBom-umbrella.h */, + E04E8E75D637AE2466038AF173BE5F4A /* AFSecurityPolicy.h */, + F65C240F7969553E416486C1BA83B32D /* AFSecurityPolicy.m */, ); - name = "Support Files"; - path = "../Target Support Files/JSCoreBom"; + name = Security; sourceTree = ""; }; - F1F924BB65235532995D12410332867F /* AFNetworking */ = { + EE60D7394EBB648778E3C238FCDF15B9 /* Serialization */ = { isa = PBXGroup; children = ( - E7AE16EEBB5AA229312455B6E8CF1DF1 /* AFNetworking.h */, - 4749C346758DC7440B301AA1AC0D4C59 /* NSURLSession */, - 37A1B591E6D8740DC51B0E1728426942 /* Reachability */, - 0B2B0F55AC4C8E37C14B5EC4E95E6DCF /* Security */, - 29488353E7F554ABEBA0A1A8BC597F2C /* Serialization */, - 6AEAE603E32C6E8632EE82035F50979B /* Support Files */, - 1DCE35D8706031E0B281AED327342754 /* UIKit */, + 26EDAC2A2406A77CA7139D6A3B17C942 /* AFURLRequestSerialization.h */, + FDC402C46DD8863A85404BE4ED4045CA /* AFURLRequestSerialization.m */, + 30BE312C37C1F4805AA9F8C913502663 /* AFURLResponseSerialization.h */, + 1C1BC4738EF32F1448B2EC0E72D30DF5 /* AFURLResponseSerialization.m */, ); - name = AFNetworking; - path = AFNetworking; + name = Serialization; sourceTree = ""; }; - F3465F7DB7F053CC529A0B8D1B246D74 /* Support Files */ = { + F11CE8492282A754E4B04594A44BF111 /* TDOAuth */ = { isa = PBXGroup; children = ( - 519D084D1C46012C13F1D489CA7F3C76 /* Info.plist */, - 130C8BE4F5ED4816CDE2258EA942FE81 /* REMenu.modulemap */, - 4D6CFAFC836ED3B96DB9E711B8F335E5 /* REMenu.xcconfig */, - 5FE853E2E2BECEA6223E91987D0233B0 /* REMenu-dummy.m */, - C7FD634158E4BF7229C222D881B94D31 /* REMenu-prefix.pch */, - 25B73049F1AC9268AAF70E3553760730 /* REMenu-umbrella.h */, + 1E9C71AC3BFDFD8058151C0858156049 /* TDOAuth.h */, + 11F10C9D2B7AE2B13FD1823A4357B03E /* TDOAuth.m */, + 9D4FB97046E3FF74DD34B7E75CBDA8A7 /* Support Files */, + ); + name = TDOAuth; + path = TDOAuth; + sourceTree = ""; + }; + F5B98B50EC3FD3AD42D55E2A2114D689 /* Support Files */ = { + isa = PBXGroup; + children = ( + B5160CAC8E80735A3F56362358B04865 /* Info.plist */, + F3F723596A55FE38FA845A78560B57D4 /* SocketRocket.modulemap */, + 6C8C5E2E6C3BD68E4E90F976CEB63B4C /* SocketRocket.xcconfig */, + 5D3AF2C1BEF6526BC9D503045080CDC9 /* SocketRocket-dummy.m */, + FD5B4C35B95C35021BC039BD4681A02F /* SocketRocket-prefix.pch */, + 7104E8643B1DADA3F2FBCCD250EF3DAF /* SocketRocket-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/REMenu"; + path = "../Target Support Files/SocketRocket"; sourceTree = ""; }; - F55D420BBCA3C4C005F8DDB08C4D94CF /* Support Files */ = { + F78C883724DD806FDD0AF8D1A43DEC55 /* Support Files */ = { isa = PBXGroup; children = ( - 28E7950ECF69A924EADFF7CA03DB1763 /* Info.plist */, - DD1BC5A19BE1329AAA657772093768E2 /* SZTextView.modulemap */, - 2DE6F200B7C1F7FAFD8211E98F2098F0 /* SZTextView.xcconfig */, - AA81A7E47A3412C239DAE175A6A38F5D /* SZTextView-dummy.m */, - 9ADB900F02DC53C0D87955A1FA306C18 /* SZTextView-prefix.pch */, - 22BBABF4BA9E865B7E484B6E5A02BAEB /* SZTextView-umbrella.h */, + FC33C1D4AE5B2A6566C821120002E197 /* Info.plist */, + 9E961473BD3A6379B047704E363EC93F /* Reachability.modulemap */, + 38DF96E0B7BE46090EFAE8DCF15B3E5B /* Reachability.xcconfig */, + 69BDCFD72E0B64953FB1B7E2F39FB3D5 /* Reachability-dummy.m */, + 6165867674024049D5830634537E8B40 /* Reachability-prefix.pch */, + 44A4B3FEDE51F8471C429474D9D006B1 /* Reachability-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/SZTextView"; + path = "../Target Support Files/Reachability"; sourceTree = ""; }; - F69F64DA64504DE96C0556E76BC100E5 /* Support Files */ = { + F7B522B1B76E1F5071147561039B562F /* Support Files */ = { isa = PBXGroup; children = ( - CDB7F5EFB884E52F6AB490BAB3E195FF /* Info.plist */, - 360965021F4A53F72E1B3C72507722F6 /* INTULocationManager.modulemap */, - B836D1C3D2427C173AE9C7B69457D85B /* INTULocationManager.xcconfig */, - 2A0DFAAFE55B4D5FC550A250A9F19AB1 /* INTULocationManager-dummy.m */, - A2D50D463122272D8445F87277E1F805 /* INTULocationManager-prefix.pch */, - 82D9A45886D21680D59ABCAAAA7D55DB /* INTULocationManager-umbrella.h */, + 957778F93B9CFD7B07FF4A1589AFA772 /* FreeStreamer.modulemap */, + A49F1B1AD253B9DB9410C70AB3A1620A /* FreeStreamer.xcconfig */, + 10021409A11D009223ECB1B5899563E1 /* FreeStreamer-dummy.m */, + B2D3FAD13DC80C37A4BCE9E219148937 /* FreeStreamer-prefix.pch */, + 9D6A04F975226C09FFFBCE3061B1A695 /* FreeStreamer-umbrella.h */, + 6EBD105354A00713D7AECC269C116E28 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/INTULocationManager"; + path = "../Target Support Files/FreeStreamer"; + sourceTree = ""; + }; + F8BB21EA8D3E835F9E8F6DC0FF22516F /* LTHPasscodeViewController */ = { + isa = PBXGroup; + children = ( + 407D69B8F0ADF34158F3680F80F76428 /* LTHKeychainUtils.h */, + 797CA4A651523BBD024A767BA07E96F1 /* LTHKeychainUtils.m */, + 02D3C62272F59EB3D2321D19076AECBC /* LTHPasscodeViewController.h */, + 78A7E2EB8CFBA2A9668C0A996537E15A /* LTHPasscodeViewController.m */, + 2A06E13377AC8CBA50F9D4F43126B770 /* Resources */, + 132DD9CEFA0B730B6C4A3F6F88E663DB /* Support Files */, + ); + name = LTHPasscodeViewController; + path = LTHPasscodeViewController; sourceTree = ""; }; - FA254A2F0F9D78FD4DACD6688EB2C277 /* BBBadgeBarButtonItem */ = { + FA9C430FAE91218839B0EC61CFDDAF69 /* UIKit */ = { isa = PBXGroup; children = ( - 9E7663C5C47B1C72766B651AEAB5E281 /* BBBadgeBarButtonItem.h */, - 98BA0687B2D225DB73211D0D7F7CF9F8 /* BBBadgeBarButtonItem.m */, - 52188600683AAD080DEFCABE556BD071 /* Support Files */, + 16DF0509DBA6FA52FD6A42F206E6217C /* AFAutoPurgingImageCache.h */, + FE41931EA44ADD1B9573324BFC188D6A /* AFAutoPurgingImageCache.m */, + 4837E4E7C180B33C4698F73969383EEC /* AFImageDownloader.h */, + E18D993D0CB98625E6A7F40C1F37B4C0 /* AFImageDownloader.m */, + 234BE53C208CB3AC989731AAFCA7CD5F /* AFNetworkActivityIndicatorManager.h */, + 316C1836E1E8EDBFCD417D231C738182 /* AFNetworkActivityIndicatorManager.m */, + E639FB91B7A719EE8EDCE6A60285EA49 /* UIActivityIndicatorView+AFNetworking.h */, + 61B4064AFE929421A663141B27C07C93 /* UIActivityIndicatorView+AFNetworking.m */, + 67655F35B1BE87855CCF6FF69FF4E467 /* UIButton+AFNetworking.h */, + 9329D74727BEA09FBC4817BF61E7B563 /* UIButton+AFNetworking.m */, + 2971F57AE11B7EC3A05ED39C79AE811E /* UIImage+AFNetworking.h */, + 76FA41754E7D5A2B5A1EB61BE12B2CE6 /* UIImageView+AFNetworking.h */, + 56BA7E4324537AFE6EC868FAD94AB181 /* UIImageView+AFNetworking.m */, + 09E65E0C50C42F3D594159D4C226099B /* UIKit+AFNetworking.h */, + CFCB03EAE0B05BECA8A052874F3D13BB /* UIProgressView+AFNetworking.h */, + 5D68DEC7885B35A7B694C96F0C7E0DAB /* UIProgressView+AFNetworking.m */, + 8FB6F71E1F9B759FE76C700470F308B7 /* UIRefreshControl+AFNetworking.h */, + 802D0611A080CEA882616AC6F682F508 /* UIRefreshControl+AFNetworking.m */, + 864012F553B4C4EB70925DD10E59945B /* UIWebView+AFNetworking.h */, + F6DA1D2798AB54B3494C7E09860031F9 /* UIWebView+AFNetworking.m */, ); - name = BBBadgeBarButtonItem; - path = BBBadgeBarButtonItem; + name = UIKit; sourceTree = ""; }; - FB7FA6C3AF788EE9538FFFD7749B32B4 /* libPhoneNumber-iOS */ = { + FB75E8778C5D44FFCE88C60B501AF65E /* Reachability */ = { isa = PBXGroup; children = ( - E3310F435D254B90A7BDC356713C2915 /* NBAsYouTypeFormatter.h */, - DB5ABD14A5414F115624EF5A59DD7797 /* NBAsYouTypeFormatter.m */, - 180ED4C1D861F17330C280402F22F8BE /* NBMetadataCore.h */, - 07EC5431E7247BDD4BB15FE4A96D8AA2 /* NBMetadataCore.m */, - 962613801DDA861855AA6BE17E90FAE0 /* NBMetadataCoreMapper.h */, - 1F90A2AB9DE6A83A61E66BBEA92BA0B8 /* NBMetadataCoreMapper.m */, - 04DD86302A9328F626FDBC2E8D7D4B78 /* NBMetadataCoreTest.h */, - 35B69160E4C26956871F8C8B2C4A7347 /* NBMetadataCoreTest.m */, - 2E98ACAEA4049F6F240BB8C84B0C0F38 /* NBMetadataCoreTestMapper.h */, - D5C43733D9091A0448B2BCE6CDCDE150 /* NBMetadataCoreTestMapper.m */, - 8DF24338E9E6E4FA556BE9F53B50510A /* NBMetadataHelper.h */, - BE52A6666CCB6EF0249C1961BD6A9F01 /* NBMetadataHelper.m */, - 0AA81BF722910FBA73BAE6061C231573 /* NBNumberFormat.h */, - A0EDBBF7507CE6392F5774548599B0A1 /* NBNumberFormat.m */, - 86DFE8ACA67E9C83828C888C2990C2EA /* NBPhoneMetaData.h */, - 31F3B9FF5424017C8218AA10CAF07A4E /* NBPhoneMetaData.m */, - 2FA2A003628F3506AFD1E19D76943A38 /* NBPhoneNumber.h */, - D737E023EF64263717C5A50BF1340BB4 /* NBPhoneNumber.m */, - 01BF7058E82E1B94ADA5D0DB5024284A /* NBPhoneNumberDefines.h */, - 9A2065AAF837CAC0C69369F61F679F1E /* NBPhoneNumberDefines.m */, - 8A89A99F5021EB5D7CB66B1099441038 /* NBPhoneNumberDesc.h */, - 5091560B808CE2990EB65581AF604409 /* NBPhoneNumberDesc.m */, - 92869F4229627365CF1E01601E9BABF7 /* NBPhoneNumberUtil.h */, - 08FD2A26F2B494DB7A793A9FA5699164 /* NBPhoneNumberUtil.m */, - 6AB08CAD8037E59E8BD3FFB1AA350BB3 /* Support Files */, + 37329B40B95F972CA8023C5D3791C204 /* AFNetworkReachabilityManager.h */, + 3B2B81E66619AEA1CE228E860391B398 /* AFNetworkReachabilityManager.m */, ); - name = "libPhoneNumber-iOS"; - path = "libPhoneNumber-iOS"; + name = Reachability; sourceTree = ""; }; FBDCEE903C81E7CC0B612C2B31723CEF /* Targets Support Files */ = { @@ -4433,13 +4503,18 @@ name = "Targets Support Files"; sourceTree = ""; }; - FC0AFA34726C65DBDD7832F304D0A63B /* DTHTMLParser */ = { + FE890AC1144F87C956BB5DAFC83B36C4 /* Support Files */ = { isa = PBXGroup; children = ( - 790BA790E4F44ACBDB0A88CE8668B587 /* DTHTMLParser.h */, - 9CEA4D800C9B8B4335A802B56CD7BDC6 /* DTHTMLParser.m */, + 2A11FAFDE756DBBE372FCAA631814D06 /* DTFoundation.modulemap */, + 6C9D99CF7A918A230EC90B661F04479B /* DTFoundation.xcconfig */, + 941C16CF27A3B6F58104814FF006B5EB /* DTFoundation-dummy.m */, + 51FECFE61766D2F0FD6EEBEFB7684728 /* DTFoundation-prefix.pch */, + 6FABE11377C4759E13B720C89A83DA62 /* DTFoundation-umbrella.h */, + D5EE5825625C7EF173B1FE5DC9040E6F /* Info.plist */, ); - name = DTHTMLParser; + name = "Support Files"; + path = "../Target Support Files/DTFoundation"; sourceTree = ""; }; /* End PBXGroup section */ @@ -4486,21 +4561,34 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 197B7877D5D346F405BDD059EF96DBDC /* Headers */ = { + 0C0B26A8993D724414E948BA5067FE1A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 28A794912ED1E06B05D96DF5ED0AED19 /* MBProgressHUD-umbrella.h in Headers */, - A5BF8DBDD8660DBCFE712657F3D82BDA /* MBProgressHUD.h in Headers */, + 8C46D8934EB9DDD78857BC6E6ED59D24 /* RECommonFunctions.h in Headers */, + 74FF66FC547FEEFAB7815FD69B42D75D /* REMenu-umbrella.h in Headers */, + CB02CF65E495ED94018DED0E9657457C /* REMenu.h in Headers */, + 7575FE4C68157965D335D4FE8FE7AA40 /* REMenuContainerView.h in Headers */, + 1D4BF31B89F4A8116592DEBFDBA90C35 /* REMenuItem.h in Headers */, + A41CF4B9B7815AF912E280A8E4623F24 /* REMenuItemView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15AFC9440D2D753AE9D254B812B31C7F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 459528CBE1A438AD6374FDD1D7A82015 /* TWMessageBarManager-umbrella.h in Headers */, + B980B75AD84977E6F285631EFD8BF393 /* TWMessageBarManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1AB0F1EC97E82214AA54F25045E75B4D /* Headers */ = { + 197B7877D5D346F405BDD059EF96DBDC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0CE82EB91327F8EFF7FF559C007BDF67 /* RMActionController-umbrella.h in Headers */, - 4927B6705E230D19B7660471B790850C /* RMActionController.h in Headers */, + 28A794912ED1E06B05D96DF5ED0AED19 /* MBProgressHUD-umbrella.h in Headers */, + A5BF8DBDD8660DBCFE712657F3D82BDA /* MBProgressHUD.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4516,6 +4604,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1ECF0737D26DA8F551B30EE353735D38 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B82738CD3D164AA95CEB43AEE0316893 /* SocketRocket-umbrella.h in Headers */, + 4068378CDD4974CA6A56F9039955C2AB /* SocketRocket.h in Headers */, + 9190C4316EB6220D920C02B2E81B7028 /* SRWebSocket.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2244362F0D36337D73779D3E0C5235C4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4527,12 +4625,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 228C3D953BC39F0A69D79AEF8AA864D2 /* Headers */ = { + 2331F5DD2BF04BC8430F92A08A9F21EA /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B04666DB90316E2E0634ADB3749B1425 /* RMActionController-umbrella.h in Headers */, + AB8EA441097323BD16A1D7FC46BCB963 /* RMActionController.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 27EFED909C8B86F3585835B152269F6C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2CA038E6E9DEFF216A0D4DEB9C714BF9 /* UICKeyChainStore-umbrella.h in Headers */, - 96C73A7EA2A3C06E2C51DE1491271929 /* UICKeyChainStore.h in Headers */, + 2BFDF8CE48EC0E2AA1169A8DCCB9B964 /* TDOAuth-umbrella.h in Headers */, + 1A132982A1186C638DFB6972815D2B05 /* TDOAuth.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4549,6 +4656,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 35224182AEB284AA370A1CACBF05A9C3 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 90105A2B9B527B12E66388C5CBEA5DCA /* TTTAttributedLabel-umbrella.h in Headers */, + 300C2B430E14BCDE92461169841588F6 /* TTTAttributedLabel.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 359704F9E4B344C7F2061636802F2A6D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4560,17 +4676,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 364A3FCD8DBA4CEE442D8842D904F316 /* Headers */ = { + 39748A18C307D172B8CAC1FA23344B12 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D04642A184E3E2F08834929D0AF8CD7D /* NSMutableArray+SWUtilityButtons.h in Headers */, - 7A6E45F9807A1AB4CB9062924A90FF2D /* SWCellScrollView.h in Headers */, - C09959591704CC22392D39B68F2FB788 /* SWLongPressGestureRecognizer.h in Headers */, - 68A27F61D9EB28693028027360AB9267 /* SWTableViewCell-umbrella.h in Headers */, - 7A919D0465B3821D5B967D13CA429B2C /* SWTableViewCell.h in Headers */, - 823F4099209E259912B3ECD7671DD897 /* SWUtilityButtonTapGestureRecognizer.h in Headers */, - FA5546077119F13317A39337EFE4A7BE /* SWUtilityButtonView.h in Headers */, + A9EE6534D0419921E4C64FC841097415 /* LTHKeychainUtils.h in Headers */, + 197E726B66B02E98F641F8B25873F8E2 /* LTHPasscodeViewController-umbrella.h in Headers */, + 3D0B750618BDB590D3A1F9CBE7156C47 /* LTHPasscodeViewController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4585,15 +4697,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 439265041C52EE8FC47D8BDD5D35177D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 9991A7D72582B6C80C062D1F350FBF1F /* SZTextView-umbrella.h in Headers */, - 696B175EFD8FFD7EB444F9B0C2EB5068 /* SZTextView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 456E58FE7A304A4509FA735C6F886D61 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4690,52 +4793,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 516D6BED7191E56963E0E34514EAF301 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1432297E0366BBEDC4E0A8F5F0F9B28A /* Pods-Jasonette-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5DD8C3C28982FA1E9017F01F7749544C /* Headers */ = { + 616045165E2BDC13953BCE8FEA0E5821 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6DEAC7ED9F2200CBB0A1134FFC2CD826 /* TTTAttributedLabel-umbrella.h in Headers */, - 07211881F4CB4221B8DC96C716DE02D3 /* TTTAttributedLabel.h in Headers */, + A9A41F5F9583DBD284B30C29F06F4339 /* NSGIF-umbrella.h in Headers */, + 808977A8D5B1992FB19B6DE04FA831DE /* NSGIF.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5F1BFDB5FE54B28053276D64B2C91242 /* Headers */ = { + 658FE580B2000318F6B8EC47187B52E3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A07B16CDBE6D4AD147BE56990218DFAC /* NSData+ImageContentType.h in Headers */, - A44108376779749C096B2C17B53F2EE1 /* SDImageCache.h in Headers */, - D5E2D2BA6D4EB88AFD229522E0864A4D /* SDWebImage-umbrella.h in Headers */, - 1DF67FAD9E63BAF1C2AA5F8F7A77785F /* SDWebImageCompat.h in Headers */, - 19A12BC0BAD95C5EAF757378A1E88ABF /* SDWebImageDecoder.h in Headers */, - F7A7A3B182B11ACD163D75397861F073 /* SDWebImageDownloader.h in Headers */, - 65AC442DC87E313BD08EFCF7586552F5 /* SDWebImageDownloaderOperation.h in Headers */, - 775D4CD5CA8B4797D94537E555A72BEB /* SDWebImageManager.h in Headers */, - A401C3D070EF32BA359C8CC2A6271202 /* SDWebImageOperation.h in Headers */, - F69A588E61780EB4F2FDE50100241CBC /* SDWebImagePrefetcher.h in Headers */, - 3F094E10EADA5FB71237585C5ADC162F /* UIButton+WebCache.h in Headers */, - 925E01BB23A17E13B9A1BA76C02A8335 /* UIImage+GIF.h in Headers */, - 8893F121C984BABDEE75B064E0AA807E /* UIImage+MultiFormat.h in Headers */, - 6007355DD83EF44CE73136C68FD50B77 /* UIImageView+HighlightedWebCache.h in Headers */, - 0AA14DBFC3908632E4134E0452386C09 /* UIImageView+WebCache.h in Headers */, - 922F6846D60C122510826FAE3FB7EE12 /* UIView+WebCacheOperation.h in Headers */, + AE0573EA62615219866D4B11631C03A4 /* SBJson-umbrella.h in Headers */, + 01FD2B65FB516ABE58091C6E30D6C0F4 /* SBJson4.h in Headers */, + D39B619730E29B913A1D444193BFEA09 /* SBJson4Parser.h in Headers */, + 0E6785E9A606B5B9D7F2036761557098 /* SBJson4StreamParser.h in Headers */, + B9F04B89952E95D21A9B4F2D8119DD77 /* SBJson4StreamParserState.h in Headers */, + 80D80E301887362254945ABB4A0DCA2E /* SBJson4StreamTokeniser.h in Headers */, + 8288AC666680EEF9A7BA448371D68A9B /* SBJson4StreamWriter.h in Headers */, + 7BD65DD1461AE3D1965A4155BCF37EA6 /* SBJson4StreamWriterState.h in Headers */, + 489B47D6B31CBECA13288B3CFF24A7D5 /* SBJson4Writer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 616045165E2BDC13953BCE8FEA0E5821 /* Headers */ = { + 672BC1EA1C04E03CE2226B7A7DAECCE7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A9A41F5F9583DBD284B30C29F06F4339 /* NSGIF-umbrella.h in Headers */, - 808977A8D5B1992FB19B6DE04FA831DE /* NSGIF.h in Headers */, + 436604FC5F73BDB57D712BD517D5665D /* UICKeyChainStore-umbrella.h in Headers */, + 4721ED24E7B87CBCEE1C52C6DA6E3527 /* UICKeyChainStore.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4784,15 +4872,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6C8293FAD92628E65649847748E2CC00 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0AFFE3D2E0FED76FA5588047AD43A3ED /* TWMessageBarManager-umbrella.h in Headers */, - D70969F1C0571827671C760EB924FEAF /* TWMessageBarManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7997C9B7626E1AA38AE45C36EE08F340 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4822,6 +4901,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 84AE4A270D966799A45C37E32B885856 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1BA4DD77A54B3D1F153CA4A9F5D3BEFC /* Pods-Jasonette-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8DCB8A0D8AA9CB8644DE14BBF83BE135 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4832,13 +4919,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 90736C4DC0E56701F81A21CCFC2937B2 /* Headers */ = { + 911CF08E9C5BFB0CB807D09776710332 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 246D4772DC8D0027A038531EB6A34276 /* SocketRocket-umbrella.h in Headers */, - 6B42125D7F33395D3F89B738DC807AC2 /* SocketRocket.h in Headers */, - 0F60733159BB82F39984B0ED8607C5A4 /* SRWebSocket.h in Headers */, + BE6CA5E6CADC12E8FE8FEDC613A9377B /* RMDateSelectionViewController-umbrella.h in Headers */, + 7820997609E74588DE0FB0518DA4CC6E /* RMDateSelectionViewController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4854,6 +4940,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 98BBFEFFE11FF42815545E4FDF66DDC3 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D51A959A140E6409E0A06CC4B7FEA6A4 /* SZTextView-umbrella.h in Headers */, + E306228B5D516FD9F15666EF46518082 /* SZTextView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9C7BFBA40EAE5130EC20516E930759DD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4863,12 +4958,40 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A52A7138514DF5DB7BC881904B9022E6 /* Headers */ = { + 9DD8B50C207C0A4F48188DCB106F9739 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + CA417C922883808E625B62643CB7DD12 /* NSMutableArray+SWUtilityButtons.h in Headers */, + BB403DCDB5FE0E651CFFD89B3A9E3528 /* SWCellScrollView.h in Headers */, + B139168B7F195BFF73C329D9599E5A56 /* SWLongPressGestureRecognizer.h in Headers */, + FDF30FEC52877A15890DAFB1B5FA443C /* SWTableViewCell-umbrella.h in Headers */, + BAD9216DA0E811C3C6AFF0B7D123AABE /* SWTableViewCell.h in Headers */, + 334A40A53740A8B4A7CF6D0BF328883E /* SWUtilityButtonTapGestureRecognizer.h in Headers */, + 2403861F1A04069878681D178DD36342 /* SWUtilityButtonView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A3F0B8B263FF0EC1BE37543614EDA0D2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 430D3EB5DA357837ADF22FB23F0091E6 /* SWFrameButton-umbrella.h in Headers */, - 4D1B2C17293394FC872A1F80A397BCAC /* SWFrameButton.h in Headers */, + 25E0606CFC53CBFF4BB92B947084F44E /* NSData+ImageContentType.h in Headers */, + 6C282AF5B9E9A8E823C8E96B84CC4CD3 /* SDImageCache.h in Headers */, + 6476A27BCB9E01BFB360714BF9A276C8 /* SDWebImage-umbrella.h in Headers */, + E42E479CB782D8E974984483D50A296A /* SDWebImageCompat.h in Headers */, + A21E2CD42E2045908C65C560C921AB52 /* SDWebImageDecoder.h in Headers */, + 3BC9DCD7401E92F282215EEE535B7A94 /* SDWebImageDownloader.h in Headers */, + 3A19A94B17643B200EF6B7CEC4BBA925 /* SDWebImageDownloaderOperation.h in Headers */, + E30B7DF347D0B7CFC392A5740DA265F7 /* SDWebImageManager.h in Headers */, + E0DB01A74024898E2C9CDAFF5944D7BF /* SDWebImageOperation.h in Headers */, + 593ED721EA94A77E4F3F1BBA64FDE495 /* SDWebImagePrefetcher.h in Headers */, + 1C6D83FB602F5116ACE8AF12F7060173 /* UIButton+WebCache.h in Headers */, + 34AB904C35F01A2E4AE605C5EBDB28BA /* UIImage+GIF.h in Headers */, + 40BB332EB1EB55548AA4A1B6825DEE09 /* UIImage+MultiFormat.h in Headers */, + 3D556D3FEA1FA9629F6837959091FF35 /* UIImageView+HighlightedWebCache.h in Headers */, + 37EF79A02DF84BDFA884415E56D9727C /* UIImageView+WebCache.h in Headers */, + 60CB94DAD5BB8F739FB18ECE5420EF54 /* UIView+WebCacheOperation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4905,15 +5028,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AD495484A86A915885AA943C7F0A1F96 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 668AB90CA3ED9B7E888927D532C4056D /* RMDateSelectionViewController-umbrella.h in Headers */, - 15DE889D999DED9C2BCF95EB3AD955A7 /* RMDateSelectionViewController.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; BF51EB9C179540355326BC18C9FAF5E5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4949,22 +5063,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C008CAAC90A1D66BAA681CF546EFCB8D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 5577A8EDF875E62AFB3EFF2BB2046D74 /* SBJson-umbrella.h in Headers */, - 737DFC4DBD0BA3EC5501C5F7679CF063 /* SBJson4.h in Headers */, - 4072A42DD94D7BE7FE8AAF23A1DB9A7F /* SBJson4Parser.h in Headers */, - 6E8B1F5D27B1C4CF13ABA77A776A1AA1 /* SBJson4StreamParser.h in Headers */, - 63F0A4F368637ABB48D6BFF3B87CCD33 /* SBJson4StreamParserState.h in Headers */, - 6D859E0E7A4961EDA554D214B605B900 /* SBJson4StreamTokeniser.h in Headers */, - 565BD2646D6A1767798D119C9C2B07EE /* SBJson4StreamWriter.h in Headers */, - 72DB8BC966540C5453566A93ADD7CC32 /* SBJson4StreamWriterState.h in Headers */, - C668CAC4868A4622A09C60AF01C1E427 /* SBJson4Writer.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D26EE251AB1B11C43F9BE356232AE183 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4974,28 +5072,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DAE90147CF3143C2D9615B0684CA662F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 31EA3C55BDAD4C05AED1254E7E3AED8B /* RECommonFunctions.h in Headers */, - 0790E52599F3313337C3904375DC91C8 /* REMenu-umbrella.h in Headers */, - 3431F959137070C38D39B4110787D317 /* REMenu.h in Headers */, - 36F76978D5D1A1B394802C9E7C51F777 /* REMenuContainerView.h in Headers */, - 0B0B1EADFB7D5F4CCE268CF0F51AD2BD /* REMenuItem.h in Headers */, - 0C4285780FA84FE2BA7976F457CF7999 /* REMenuItemView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E33DA9AE62F7FF2B463DDF3D749141D5 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C79D73273B5C46EF10D5207143457F4A /* TDOAuth-umbrella.h in Headers */, - 29DD109B03CDD481EFBD8058566503C1 /* TDOAuth.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E99CCC4B804621B808FE16E13F52D343 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -5023,6 +5099,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F785F9A2424C3BDE89708396D4809CD3 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 718BCCF8676E31D4D0D3210521BA3ECD /* SWFrameButton-umbrella.h in Headers */, + AC074D06A417910C66E52A491B1AB2F3 /* SWFrameButton.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FA09FE43030C1348EE0A27F60C889027 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -5113,6 +5198,23 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ + 06ADBD054C6E5882D76A8551D8DD2137 /* SocketRocket */ = { + isa = PBXNativeTarget; + buildConfigurationList = CFECE0B4F6C0FEA7AEB291F770AA88DB /* Build configuration list for PBXNativeTarget "SocketRocket" */; + buildPhases = ( + 14156B73D6C3F07E49FB409FFEE7D45E /* Sources */, + DB065706FFDFC653237B7BEE25E6BEB4 /* Frameworks */, + 1ECF0737D26DA8F551B30EE353735D38 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SocketRocket; + productName = SocketRocket; + productReference = B060A1506CC8105CBE99FF479A7D2EC7 /* SocketRocket.framework */; + productType = "com.apple.product-type.framework"; + }; 0C4D6D21E61953B565EFACC9FEC3713A /* DAKeyboardControl */ = { isa = PBXNativeTarget; buildConfigurationList = C668A37B3BD05B692CCB3D73F309D8B8 /* Build configuration list for PBXNativeTarget "DAKeyboardControl" */; @@ -5127,7 +5229,7 @@ ); name = DAKeyboardControl; productName = DAKeyboardControl; - productReference = 09DAD75D5B021553010649117A69BE65 /* DAKeyboardControl.framework */; + productReference = A3B962619B145DF4AE167BFD789B2975 /* DAKeyboardControl.framework */; productType = "com.apple.product-type.framework"; }; 0D83E505BF1E81A4AAA9A3A5CAA45E9E /* JDStatusBarNotification */ = { @@ -5144,85 +5246,69 @@ ); name = JDStatusBarNotification; productName = JDStatusBarNotification; - productReference = 89DE2F4F4EA8BCB3A5CE47FE3146A7E2 /* JDStatusBarNotification.framework */; - productType = "com.apple.product-type.framework"; - }; - 0EE67372562BE196F0FEF01CC9F45486 /* UICKeyChainStore */ = { - isa = PBXNativeTarget; - buildConfigurationList = D02913BD21FCA429E774856B29C2E2CF /* Build configuration list for PBXNativeTarget "UICKeyChainStore" */; - buildPhases = ( - 8FFACE826FEB1E3A9BDAA7CED765D0D2 /* Sources */, - 5FF9A10859489516D80E491DBC203F94 /* Frameworks */, - 228C3D953BC39F0A69D79AEF8AA864D2 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = UICKeyChainStore; - productName = UICKeyChainStore; - productReference = 36D8A103FD7C2C537051BAB6E2CC944A /* UICKeyChainStore.framework */; + productReference = 9B48A396A11DD13EFDF053F7B5D1B7C4 /* JDStatusBarNotification.framework */; productType = "com.apple.product-type.framework"; }; - 1001DB9CC14766D428A141CE5D4357B7 /* RMActionController */ = { + 1498BDA9EC86795A0C60B4876D9CF825 /* TDOAuth */ = { isa = PBXNativeTarget; - buildConfigurationList = C40285C42AE2D212C0A0BBDA00F9BAB6 /* Build configuration list for PBXNativeTarget "RMActionController" */; + buildConfigurationList = D4835DFDD105320AB55DD7F962CA8D64 /* Build configuration list for PBXNativeTarget "TDOAuth" */; buildPhases = ( - E0E6C4F0CAB90484413CBE897FF7AB55 /* Sources */, - DBB6DF3147D0DB1105A98C5EC79F76DA /* Frameworks */, - 1AB0F1EC97E82214AA54F25045E75B4D /* Headers */, + 5945F50DCF7C34AA12D4D98CC6F1967A /* Sources */, + 388B963DC41D0DE562C8A9A5A3BD5E62 /* Frameworks */, + 27EFED909C8B86F3585835B152269F6C /* Headers */, ); buildRules = ( ); dependencies = ( + ACDAD28784B9B818E7BA8B7A371081A8 /* PBXTargetDependency */, ); - name = RMActionController; - productName = RMActionController; - productReference = 5D068FDBA33E6700A79536DF6A8598DB /* RMActionController.framework */; + name = TDOAuth; + productName = TDOAuth; + productReference = A3FFA46193FE1A393FCCFFF010090BA2 /* TDOAuth.framework */; productType = "com.apple.product-type.framework"; }; - 3CEE63E62D7471CD5C9C5F050A44AF25 /* SBJson */ = { + 169472FE98DC26FB6DE48670BCE95DAA /* SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 9D105FC7342CD6EB173CEF81BC0C2012 /* Build configuration list for PBXNativeTarget "SBJson" */; + buildConfigurationList = B852F2F4941ED39126C48C061FCD6506 /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - 78EE894B60E1B5BEE14004FABC8002D3 /* Sources */, - CDE8C93142E2C361D1B03E565E128713 /* Frameworks */, - C008CAAC90A1D66BAA681CF546EFCB8D /* Headers */, + DC654537FD15BDA004D4439DB7D0CED3 /* Sources */, + 1048B3573DD94516D651C5D3A09FDBA8 /* Frameworks */, + A3F0B8B263FF0EC1BE37543614EDA0D2 /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = SBJson; - productName = SBJson; - productReference = 531FCE527913ABF88780A90E846F9E48 /* SBJson.framework */; + name = SDWebImage; + productName = SDWebImage; + productReference = BAABE92869F0FA30852EFA9A97A616A9 /* SDWebImage.framework */; productType = "com.apple.product-type.framework"; }; - 41FA54D12162DAD51D02FC58A2CD5034 /* MBProgressHUD */ = { + 1D510000CA4286F8B156EA1072E272E2 /* RMActionController */ = { isa = PBXNativeTarget; - buildConfigurationList = CC1874913BA1F82C4953C3C7F551AB22 /* Build configuration list for PBXNativeTarget "MBProgressHUD" */; + buildConfigurationList = 52510466BC5BCEFE9692CC1C0B68CFF7 /* Build configuration list for PBXNativeTarget "RMActionController" */; buildPhases = ( - C51A588922DD1F66361BBCB8637DB5FA /* Sources */, - B57774E30FD88AE26F9037E1360E947B /* Frameworks */, - 197B7877D5D346F405BDD059EF96DBDC /* Headers */, + E37FDA1B3E0830956A408DD189405A84 /* Sources */, + 8254B084D17792BF3E609496F3ABEF51 /* Frameworks */, + 2331F5DD2BF04BC8430F92A08A9F21EA /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = MBProgressHUD; - productName = MBProgressHUD; - productReference = 024659C127EE084D75B055A52C405C18 /* MBProgressHUD.framework */; + name = RMActionController; + productName = RMActionController; + productReference = 6FBB70CC8091E31DE0EF4D2303B04AED /* RMActionController.framework */; productType = "com.apple.product-type.framework"; }; - 470AFA972C9E000FE52DF1ECE11A504D /* TWMessageBarManager */ = { + 33743CC3D62908CEA7612D6F62D9EED9 /* TWMessageBarManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 7D42CBAE407927DD254E6BD9337A09EA /* Build configuration list for PBXNativeTarget "TWMessageBarManager" */; + buildConfigurationList = AF2260BF61F1D87E53863FE0998F59C0 /* Build configuration list for PBXNativeTarget "TWMessageBarManager" */; buildPhases = ( - 3381B8FBA5313E4F24D5A9E71B4FE80F /* Sources */, - 954161D8E0430ECDDA119C5D20C99637 /* Frameworks */, - 6C8293FAD92628E65649847748E2CC00 /* Headers */, - 3BB94C14FF249BFA9136C85AAF581442 /* Resources */, + DA1E12C085F99038864F1ECC8D6FD479 /* Sources */, + 7AC5C4682FF713D8E07D46D9683446E8 /* Frameworks */, + 15AFC9440D2D753AE9D254B812B31C7F /* Headers */, + 7CAF9C9788EB07919F5E8C6F061A2B56 /* Resources */, ); buildRules = ( ); @@ -5230,41 +5316,41 @@ ); name = TWMessageBarManager; productName = TWMessageBarManager; - productReference = 5B6CF5190869B64E3F80E9F06ADC2A42 /* TWMessageBarManager.framework */; + productReference = 12CFE418593A5798C672D683464B13AC /* TWMessageBarManager.framework */; productType = "com.apple.product-type.framework"; }; - 5C14FE3775F7AEABD189BA5D908EC746 /* REMenu */ = { + 41FA54D12162DAD51D02FC58A2CD5034 /* MBProgressHUD */ = { isa = PBXNativeTarget; - buildConfigurationList = 66532A522205DDF1DAC8D524B663CD3B /* Build configuration list for PBXNativeTarget "REMenu" */; + buildConfigurationList = CC1874913BA1F82C4953C3C7F551AB22 /* Build configuration list for PBXNativeTarget "MBProgressHUD" */; buildPhases = ( - 4C0502542FA9F693F33F8F68E53973C9 /* Sources */, - FE839DF9290F7A57389B0B8294B226D5 /* Frameworks */, - DAE90147CF3143C2D9615B0684CA662F /* Headers */, + C51A588922DD1F66361BBCB8637DB5FA /* Sources */, + B57774E30FD88AE26F9037E1360E947B /* Frameworks */, + 197B7877D5D346F405BDD059EF96DBDC /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = REMenu; - productName = REMenu; - productReference = ED3E9E535678844CED14E4A03AA3B3F8 /* REMenu.framework */; + name = MBProgressHUD; + productName = MBProgressHUD; + productReference = E67FEC507086C59AD08767B9B90C97BC /* MBProgressHUD.framework */; productType = "com.apple.product-type.framework"; }; - 63193F933F5AC35A56B72012D6B451D3 /* TTTAttributedLabel */ = { + 54437C09B6ACE0D2F2F4EE82CCB6ED16 /* SWFrameButton */ = { isa = PBXNativeTarget; - buildConfigurationList = 0D19B7C6FE9B5C3E92B443D2E9FA0205 /* Build configuration list for PBXNativeTarget "TTTAttributedLabel" */; + buildConfigurationList = 7595F79E53747A277575B07A1421A185 /* Build configuration list for PBXNativeTarget "SWFrameButton" */; buildPhases = ( - 682D67F800B4F7D69BE6E54B0B4633DD /* Sources */, - 8FFF0ECA8A6C5704A2A5870B514CD737 /* Frameworks */, - 5DD8C3C28982FA1E9017F01F7749544C /* Headers */, + 72FFE71DECE0326B9AB5B607E191AD11 /* Sources */, + F0A3186F00B6D24486223E17D19AD561 /* Frameworks */, + F785F9A2424C3BDE89708396D4809CD3 /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = TTTAttributedLabel; - productName = TTTAttributedLabel; - productReference = 3C0B1E93A438105E594BCEAAD7B3D886 /* TTTAttributedLabel.framework */; + name = SWFrameButton; + productName = SWFrameButton; + productReference = CDE63C774E3CBF609B78DD0E8EFB8F8D /* SWFrameButton.framework */; productType = "com.apple.product-type.framework"; }; 68A07EF405FD9BCB32A62DB85FB63511 /* FLEX */ = { @@ -5281,7 +5367,7 @@ ); name = FLEX; productName = FLEX; - productReference = E5ACEF83BCA1DCE26C8E922AAD68CA28 /* FLEX.framework */; + productReference = 4687DC0E23C3EEF3D1FFD4751A637934 /* FLEX.framework */; productType = "com.apple.product-type.framework"; }; 6D3CC2E1481FD4B03969ECA2FF3F07A8 /* NSGIF */ = { @@ -5298,24 +5384,7 @@ ); name = NSGIF; productName = NSGIF; - productReference = 9E13FBB39ED29F5574AB95FD177106E1 /* NSGIF.framework */; - productType = "com.apple.product-type.framework"; - }; - 737B292D75C310BEABC0A1E64C6F7BF9 /* SWTableViewCell */ = { - isa = PBXNativeTarget; - buildConfigurationList = D227652632237F3EB69394B4A1D3545C /* Build configuration list for PBXNativeTarget "SWTableViewCell" */; - buildPhases = ( - F1F1CBF0A23F87D0C466CFB8B8012A96 /* Sources */, - 0AFF1245FC8193B44BFC53298C9433FE /* Frameworks */, - 364A3FCD8DBA4CEE442D8842D904F316 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SWTableViewCell; - productName = SWTableViewCell; - productReference = 664C1E4D0D8CC1723D0A4FFE4F706103 /* SWTableViewCell.framework */; + productReference = 3BE2C2EBA25294E08BE7C64C322A1821 /* NSGIF.framework */; productType = "com.apple.product-type.framework"; }; 7621630BF9979CD340446B0404B671CD /* AHKActionSheet */ = { @@ -5332,7 +5401,7 @@ ); name = AHKActionSheet; productName = AHKActionSheet; - productReference = F317EB4C0CEB689029DA57B335760F5D /* AHKActionSheet.framework */; + productReference = AB5992C435FE0DDE1DCE18D2AF53B2AF /* AHKActionSheet.framework */; productType = "com.apple.product-type.framework"; }; 7891E2B724C54EF58FB1692B34F1455C /* HMSegmentedControl */ = { @@ -5349,7 +5418,7 @@ ); name = HMSegmentedControl; productName = HMSegmentedControl; - productReference = F1B8767600094CAED163453B276D1CA6 /* HMSegmentedControl.framework */; + productReference = 2C664D53EF93F49DB4D9187E68434B68 /* HMSegmentedControl.framework */; productType = "com.apple.product-type.framework"; }; 7C04B114E32ADD957E35C4494C68D20C /* NSHash */ = { @@ -5366,7 +5435,7 @@ ); name = NSHash; productName = NSHash; - productReference = A34BDD0A87FC15E9743D3210DA0849B1 /* NSHash.framework */; + productReference = 9756CEF37C77ECE3DF468F4976C4C0EA /* NSHash.framework */; productType = "com.apple.product-type.framework"; }; 7D5D891676725492FDD435B2ACEBBB3B /* libPhoneNumber-iOS */ = { @@ -5383,7 +5452,7 @@ ); name = "libPhoneNumber-iOS"; productName = "libPhoneNumber-iOS"; - productReference = DC55BFE9F2BFB808772DBAC1FF2ED86D /* libPhoneNumber_iOS.framework */; + productReference = D25F9981DE31A17093A865BA422E7F0F /* libPhoneNumber_iOS.framework */; productType = "com.apple.product-type.framework"; }; 7E683DB16DC4643221505F9973C9BC36 /* INTULocationManager */ = { @@ -5400,58 +5469,41 @@ ); name = INTULocationManager; productName = INTULocationManager; - productReference = 33198587ABE4852DB47BFA7D3FE7C1A6 /* INTULocationManager.framework */; - productType = "com.apple.product-type.framework"; - }; - 837D8A38BD0CFB4D5347E5BE0BEA1ACE /* PHFDelegateChain */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0CF89AF8A3F5CEAD9176DB28884CC520 /* Build configuration list for PBXNativeTarget "PHFDelegateChain" */; - buildPhases = ( - 84F64E05654BF0D5D206BEB548514BA8 /* Sources */, - 2818972FE8DA834DF9BB8916236738F4 /* Frameworks */, - ED04CA5084AE7B0BAE32564BE09FF22A /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = PHFDelegateChain; - productName = PHFDelegateChain; - productReference = D8A34F8D433A1C989C448B177CC11E29 /* PHFDelegateChain.framework */; + productReference = D5D4ADC447704F2B782925706F02E9B7 /* INTULocationManager.framework */; productType = "com.apple.product-type.framework"; }; - 84D1A4D5C022C5080A4F3C0EE6B9AFCC /* SZTextView */ = { + 7FEAAD03CB8B6420CC4CB260C6562EFB /* REMenu */ = { isa = PBXNativeTarget; - buildConfigurationList = 06600E3196A4D834E30BEA6F061DA5E0 /* Build configuration list for PBXNativeTarget "SZTextView" */; + buildConfigurationList = FCE810DECAD5290E9069A05F1CCCE8E1 /* Build configuration list for PBXNativeTarget "REMenu" */; buildPhases = ( - 57AB37DD1B757CBAAAB44DD391F687C0 /* Sources */, - F81EAA85B3DCCAECF7D155FAF997A1C4 /* Frameworks */, - 439265041C52EE8FC47D8BDD5D35177D /* Headers */, + 0480ADC703380F2FA664939580BD5B06 /* Sources */, + 2E1747DC9C37ABDAAEC142A36D374F49 /* Frameworks */, + 0C0B26A8993D724414E948BA5067FE1A /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = SZTextView; - productName = SZTextView; - productReference = 991A13C0F86862C917F24BB671F468D5 /* SZTextView.framework */; + name = REMenu; + productName = REMenu; + productReference = E10FB53E01E8C852AC96BBAB7D1882C9 /* REMenu.framework */; productType = "com.apple.product-type.framework"; }; - 873C7309AA18799758A65F0365980447 /* SWFrameButton */ = { + 837D8A38BD0CFB4D5347E5BE0BEA1ACE /* PHFDelegateChain */ = { isa = PBXNativeTarget; - buildConfigurationList = BB453E6BB66EA1C05DB9720C78D85D0B /* Build configuration list for PBXNativeTarget "SWFrameButton" */; + buildConfigurationList = 0CF89AF8A3F5CEAD9176DB28884CC520 /* Build configuration list for PBXNativeTarget "PHFDelegateChain" */; buildPhases = ( - EAF5AA37999C178EAF9CCA7D60916275 /* Sources */, - C7038268E75A948889BEED156258E49D /* Frameworks */, - A52A7138514DF5DB7BC881904B9022E6 /* Headers */, + 84F64E05654BF0D5D206BEB548514BA8 /* Sources */, + 2818972FE8DA834DF9BB8916236738F4 /* Frameworks */, + ED04CA5084AE7B0BAE32564BE09FF22A /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = SWFrameButton; - productName = SWFrameButton; - productReference = 0C90C4CAF67B763BB603C833E56D32AA /* SWFrameButton.framework */; + name = PHFDelegateChain; + productName = PHFDelegateChain; + productReference = 5F4395C805E2381CCF475591B581F935 /* PHFDelegateChain.framework */; productType = "com.apple.product-type.framework"; }; 8B01F7E5D6B9A5E36CD00A9208EFF9A8 /* OMGHTTPURLRQ */ = { @@ -5468,7 +5520,7 @@ ); name = OMGHTTPURLRQ; productName = OMGHTTPURLRQ; - productReference = CB32D6C0521BA198991B51ABD2851915 /* OMGHTTPURLRQ.framework */; + productReference = A4464F1215D4F889A413F33137891B84 /* OMGHTTPURLRQ.framework */; productType = "com.apple.product-type.framework"; }; 8B20CAEEA320DAD747BB08D1128BDD90 /* APAddressBook */ = { @@ -5485,7 +5537,7 @@ ); name = APAddressBook; productName = APAddressBook; - productReference = 06BDE56198FDC500D30CC7B9EDC5603F /* APAddressBook.framework */; + productReference = 24C64E7E0E0C692506D03BDB25C80D12 /* APAddressBook.framework */; productType = "com.apple.product-type.framework"; }; 923C199FC8844D48B6E4D0E9B013C7C4 /* SCSiriWaveformView */ = { @@ -5502,7 +5554,7 @@ ); name = SCSiriWaveformView; productName = SCSiriWaveformView; - productReference = 326F3D8F95FEAEC57AF94540AB534A59 /* SCSiriWaveformView.framework */; + productReference = 5F54A11147FF594982DCD0AC1CB65DCD /* SCSiriWaveformView.framework */; productType = "com.apple.product-type.framework"; }; 95B642E7760975E1A3F812D8431F7FCA /* DTCoreText */ = { @@ -5520,7 +5572,7 @@ ); name = DTCoreText; productName = DTCoreText; - productReference = 0E05AE7BBAB418ADA03DE7B6121E2B18 /* DTCoreText.framework */; + productReference = FFC32087DD1757D089FE0CEEBFC310E9 /* DTCoreText.framework */; productType = "com.apple.product-type.framework"; }; 9C8E44ED4B2A3F5EA77697C7DAD3F36E /* FreeStreamer */ = { @@ -5538,63 +5590,24 @@ ); name = FreeStreamer; productName = FreeStreamer; - productReference = 8362E8A61097038AB09A6B912500A0EA /* FreeStreamer.framework */; + productReference = 79FC959DE2DA5B4F10D1211077E8B6A9 /* FreeStreamer.framework */; productType = "com.apple.product-type.framework"; }; - A4ED8C1BC0C98DCBC1B3F159CCD34B16 /* Pods-Jasonette */ = { + 9DE25021442CB70151058A73AE973DB6 /* UICKeyChainStore */ = { isa = PBXNativeTarget; - buildConfigurationList = EB51E68D0C70DC99304A49A9DEF92A61 /* Build configuration list for PBXNativeTarget "Pods-Jasonette" */; + buildConfigurationList = E9C4A551BA3164751C9A002F8270101B /* Build configuration list for PBXNativeTarget "UICKeyChainStore" */; buildPhases = ( - DC662C4080D945B249356ABBF42A2A61 /* Sources */, - E3C908A372FE2D242216C788B0908D57 /* Frameworks */, - 516D6BED7191E56963E0E34514EAF301 /* Headers */, + 46A0381B5C83357211A8E4AABE2A07E9 /* Sources */, + 64BF104C90D8CCBE7187477A60DB2754 /* Frameworks */, + 672BC1EA1C04E03CE2226B7A7DAECCE7 /* Headers */, ); buildRules = ( ); dependencies = ( - 98A916032945E044A77E31D8F4C279A6 /* PBXTargetDependency */, - 1DE688E70B86757E2A5442045648E9B0 /* PBXTargetDependency */, - 0C22868EFBD1AC60393323D943CA2043 /* PBXTargetDependency */, - 73F63CE4FF14A7AED586D47AC0032A05 /* PBXTargetDependency */, - 4C72A2B25EB816F9A5732A6A054979E7 /* PBXTargetDependency */, - 5524AB1693443C30B0414B2561554E18 /* PBXTargetDependency */, - 760C0EFC526DF32D657B8EACA0531FA5 /* PBXTargetDependency */, - 6E70912B3E81D49E142C950E6DCAE832 /* PBXTargetDependency */, - 520FB0C9D17797BFECD559968E58831B /* PBXTargetDependency */, - 57D3A949F6C4C6DC44BFD51C3AC9C4BF /* PBXTargetDependency */, - 28EA0A26915AC2ADC649F533E17EAA3E /* PBXTargetDependency */, - 020719CC16CE61BFF1C960693803B7A3 /* PBXTargetDependency */, - D6003D8D88B2CFB44F8A8FF6018F4B26 /* PBXTargetDependency */, - 71D0BE9D077DDB97FE663F917854DF87 /* PBXTargetDependency */, - 4DDCED2037C12221504E9CDE03B5DECA /* PBXTargetDependency */, - 0A820B7283394713F5DD8FB51F3FF529 /* PBXTargetDependency */, - 034C3949E8F2DB574651591F78F2E6B1 /* PBXTargetDependency */, - 993126ECECBC9288FB104AEB976C1F82 /* PBXTargetDependency */, - 1DBB564CD744C57E4F30C707CFF2AB45 /* PBXTargetDependency */, - 0551ADECB2B28CE7DBBAA199BF9173BE /* PBXTargetDependency */, - 1859E19F78AF64720733425C3B2AA082 /* PBXTargetDependency */, - 5471D45DE735F55A1A0FCD8C17D7BF0F /* PBXTargetDependency */, - 21E3076AB512003F95563E92C4F34655 /* PBXTargetDependency */, - 39CC387927FE7C90CD367F8850996A04 /* PBXTargetDependency */, - 72EFE35B426D831B487D8B709DDA908D /* PBXTargetDependency */, - AAA5DE5C373B141EE31EE0779D00C301 /* PBXTargetDependency */, - 487FCD7814EAC184473997EFAB09BE15 /* PBXTargetDependency */, - 7C80A07B43B85E3BD98BF298E96EA9FD /* PBXTargetDependency */, - 391D7169F287A91F776046385B77558D /* PBXTargetDependency */, - E380DA790259C56DA7796229148F90F6 /* PBXTargetDependency */, - A96E5996A5A5D428C2706B6B66CD54C8 /* PBXTargetDependency */, - 326700ED261A884A2508D367FAFF8149 /* PBXTargetDependency */, - 5BFB104A343D6D4FB781EEFE1D738953 /* PBXTargetDependency */, - E3C0359509DEC275C9CD8826630E1852 /* PBXTargetDependency */, - C0B254DD7CABA68CBD311EEA8E2D469C /* PBXTargetDependency */, - 69D7440D3DF62313480DE063DE6BB892 /* PBXTargetDependency */, - 501051EEFC4E6B3430B91B240965585E /* PBXTargetDependency */, - 755216D61145B1516F59B51C37965EA8 /* PBXTargetDependency */, - 3479F6662B720C876B6C7155321FE653 /* PBXTargetDependency */, ); - name = "Pods-Jasonette"; - productName = "Pods-Jasonette"; - productReference = 103498FC5695C98428B1A54FE6F0D0DE /* Pods_Jasonette.framework */; + name = UICKeyChainStore; + productName = UICKeyChainStore; + productReference = B2A88DFC8A7171C464E1ACB6ED728482 /* UICKeyChainStore.framework */; productType = "com.apple.product-type.framework"; }; A8FC440C47E8F886B32BE567E1954F6E /* CYRTextView */ = { @@ -5611,7 +5624,41 @@ ); name = CYRTextView; productName = CYRTextView; - productReference = B9AFD97E49C0A5B2D4AFC7F4A07E8279 /* CYRTextView.framework */; + productReference = C2B3FB6F944236ED0BE18BF803F7E110 /* CYRTextView.framework */; + productType = "com.apple.product-type.framework"; + }; + A933F6535B61DFEAA2A004FCA147B24E /* SZTextView */ = { + isa = PBXNativeTarget; + buildConfigurationList = F8D31031A514C829D54BDA83BC13DAF4 /* Build configuration list for PBXNativeTarget "SZTextView" */; + buildPhases = ( + 8B6188F132E3E2A2EFDDB26812E1FFFA /* Sources */, + 12B5DEC77AE23BCD924613A0E64C9F6B /* Frameworks */, + 98BBFEFFE11FF42815545E4FDF66DDC3 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SZTextView; + productName = SZTextView; + productReference = 754CBE266AAD49734BB47252C58F72F3 /* SZTextView.framework */; + productType = "com.apple.product-type.framework"; + }; + AA62908DC8078B767DFCD87B5953EBD0 /* SWTableViewCell */ = { + isa = PBXNativeTarget; + buildConfigurationList = 56A8A9DB51297FB4204C75249202B229 /* Build configuration list for PBXNativeTarget "SWTableViewCell" */; + buildPhases = ( + 89E8E9253A92D3DC3AD46CC86026907C /* Sources */, + DA09E66E3F23C3588E01C232EA3F4CE6 /* Frameworks */, + 9DD8B50C207C0A4F48188DCB106F9739 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SWTableViewCell; + productName = SWTableViewCell; + productReference = A0C163C09E52CBCF25E87CE2B9C25D2C /* SWTableViewCell.framework */; productType = "com.apple.product-type.framework"; }; AC4A322988F097B1E752EB3107D61DE9 /* Reachability */ = { @@ -5628,42 +5675,42 @@ ); name = Reachability; productName = Reachability; - productReference = 1DA4A73EB8718A06D9A4AC73EBC93614 /* Reachability.framework */; + productReference = 25ADA179F3FBB7D731411672C455E934 /* Reachability.framework */; productType = "com.apple.product-type.framework"; }; - B38419E3D7B8986645578293B1F181D1 /* DTFoundation */ = { + AC5CB584FDF5D4603E4712F88F10EF70 /* RMDateSelectionViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 7689B1DD42C586E7543217212D4B815D /* Build configuration list for PBXNativeTarget "DTFoundation" */; + buildConfigurationList = 93E758EF94A3C865E7889B13996389EE /* Build configuration list for PBXNativeTarget "RMDateSelectionViewController" */; buildPhases = ( - EFBD8D2573CB7154F0227699E9A6372B /* Sources */, - 2CBBB57DD184229E0E1370A8162314D8 /* Frameworks */, - 0BFE0A90561C6863BCF9FD15713F496C /* Headers */, + 8CB4741E9B046F608A437FD2D854F976 /* Sources */, + C1E942703DB7DB87E54E8521A51FA8A3 /* Frameworks */, + 911CF08E9C5BFB0CB807D09776710332 /* Headers */, ); buildRules = ( ); dependencies = ( + 338FF021BEF883BD9F4F1263AB0E990E /* PBXTargetDependency */, ); - name = DTFoundation; - productName = DTFoundation; - productReference = 634D56DF8F42A3D41685370E62FE0B00 /* DTFoundation.framework */; + name = RMDateSelectionViewController; + productName = RMDateSelectionViewController; + productReference = 0E3885EA2F6F8EA79A02507145466453 /* RMDateSelectionViewController.framework */; productType = "com.apple.product-type.framework"; }; - B9C0DFFAADC4AE839A71E4E02A5972A6 /* TDOAuth */ = { + B38419E3D7B8986645578293B1F181D1 /* DTFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = 559D022745736D55F4A260DD1CD6D042 /* Build configuration list for PBXNativeTarget "TDOAuth" */; + buildConfigurationList = 7689B1DD42C586E7543217212D4B815D /* Build configuration list for PBXNativeTarget "DTFoundation" */; buildPhases = ( - B450AC6D6DC1E6B51324E8984AC21752 /* Sources */, - F46CF6B8265C85E2200FF86C6BD33499 /* Frameworks */, - E33DA9AE62F7FF2B463DDF3D749141D5 /* Headers */, + EFBD8D2573CB7154F0227699E9A6372B /* Sources */, + 2CBBB57DD184229E0E1370A8162314D8 /* Frameworks */, + 0BFE0A90561C6863BCF9FD15713F496C /* Headers */, ); buildRules = ( ); dependencies = ( - 185551077ECBD2CA2E6636E72DD53C5F /* PBXTargetDependency */, ); - name = TDOAuth; - productName = TDOAuth; - productReference = 76C5650E8AD0E719C8914D41DB24051C /* TDOAuth.framework */; + name = DTFoundation; + productName = DTFoundation; + productReference = A08F935B263CA1F8086CA56C2BC11A30 /* DTFoundation.framework */; productType = "com.apple.product-type.framework"; }; BF5E8492AD833171E67A19F798CC6361 /* IQAudioRecorderController */ = { @@ -5682,7 +5729,7 @@ ); name = IQAudioRecorderController; productName = IQAudioRecorderController; - productReference = D6E9CFA0932564C2C03539E5C27EEC38 /* IQAudioRecorderController.framework */; + productReference = 318AC96F65E92654A559010326F10CC1 /* IQAudioRecorderController.framework */; productType = "com.apple.product-type.framework"; }; C4862B96577F57D0819ECCBCA837BD96 /* PHFComposeBarView */ = { @@ -5700,7 +5747,7 @@ ); name = PHFComposeBarView; productName = PHFComposeBarView; - productReference = 6FDACA53B2B908A55FD35F4EBEDE7288 /* PHFComposeBarView.framework */; + productReference = 33DD6B0BCC1B0F7BF6005B962201F12B /* PHFComposeBarView.framework */; productType = "com.apple.product-type.framework"; }; CA7C7EB2323EE5121B010E294E19D76B /* AFOAuth2Manager */ = { @@ -5718,24 +5765,7 @@ ); name = AFOAuth2Manager; productName = AFOAuth2Manager; - productReference = 355A6E0A08133F5F8A1D9D8303199B0B /* AFOAuth2Manager.framework */; - productType = "com.apple.product-type.framework"; - }; - CD123DC977E692354FA6A7EA93F0B7FD /* SDWebImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6DB3A861CD9FADB70ADEDE20AAC12DBC /* Build configuration list for PBXNativeTarget "SDWebImage" */; - buildPhases = ( - 842FC003E287846C644FA3D9101AF234 /* Sources */, - 5EB7C62F2498E970511002E928816CA7 /* Frameworks */, - 5F1BFDB5FE54B28053276D64B2C91242 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SDWebImage; - productName = SDWebImage; - productReference = 4537BCF6D84551EE9D3E4EBE373BCF15 /* SDWebImage.framework */; + productReference = ACFF899962289554684873F033F076C1 /* AFOAuth2Manager.framework */; productType = "com.apple.product-type.framework"; }; CF671F7E57B92905F1CC91D036D6B4A7 /* AFNetworking */ = { @@ -5752,24 +5782,24 @@ ); name = AFNetworking; productName = AFNetworking; - productReference = 2D4ADE4C20831039396304AA5EDEF8B7 /* AFNetworking.framework */; + productReference = 22C3BC44E291AC8290C1025B56A0C2B1 /* AFNetworking.framework */; productType = "com.apple.product-type.framework"; }; - D489A576D192C4A3D7258B2B0D252687 /* SocketRocket */ = { + D0A703793FD19E5003FBBAF9BF625BE3 /* SBJson */ = { isa = PBXNativeTarget; - buildConfigurationList = BA13EDBD9D365A9FA2120DD5D6DB109B /* Build configuration list for PBXNativeTarget "SocketRocket" */; + buildConfigurationList = 103284FF15EECB1AE9D4CE9A1A4E6E9D /* Build configuration list for PBXNativeTarget "SBJson" */; buildPhases = ( - 3E4E3A3BE3F5E6069671BEE2D42BB952 /* Sources */, - CF31C11EDD53C323BA24F939AB75125E /* Frameworks */, - 90736C4DC0E56701F81A21CCFC2937B2 /* Headers */, + F0599F62FD88D6937BEE6AA76BBFE57D /* Sources */, + 4C8DB79252C2F422676B8EFCF29A79FC /* Frameworks */, + 658FE580B2000318F6B8EC47187B52E3 /* Headers */, ); buildRules = ( ); dependencies = ( ); - name = SocketRocket; - productName = SocketRocket; - productReference = 045B91A5BF5EEDBF372D283B73191454 /* SocketRocket.framework */; + name = SBJson; + productName = SBJson; + productReference = F86EA900EDE55310A20FFD48A3574A0C /* SBJson.framework */; productType = "com.apple.product-type.framework"; }; D4F51B6443933144DB176451A7279DBD /* JSCoreBom */ = { @@ -5786,7 +5816,81 @@ ); name = JSCoreBom; productName = JSCoreBom; - productReference = 3518C06CDFD63ED1E96296FDD2DE9074 /* JSCoreBom.framework */; + productReference = 044F1AF47DE76EA6A7D490AA60887169 /* JSCoreBom.framework */; + productType = "com.apple.product-type.framework"; + }; + DDE557F9D45590A946D6E2D509E0C159 /* TTTAttributedLabel */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3575A2A1D344A7D5DF5F44851CF7AF89 /* Build configuration list for PBXNativeTarget "TTTAttributedLabel" */; + buildPhases = ( + 0840BFC207A01F8B037BD8C897016352 /* Sources */, + CBB93E43166098CEB7983C3BF4F3F369 /* Frameworks */, + 35224182AEB284AA370A1CACBF05A9C3 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = TTTAttributedLabel; + productName = TTTAttributedLabel; + productReference = 6E97B8040DC7F1C9A1F2E67333D73785 /* TTTAttributedLabel.framework */; + productType = "com.apple.product-type.framework"; + }; + E08B712730162E73FB1DC7C4827891A8 /* Pods-Jasonette */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1AA884AB46308436258A652294B8B4E8 /* Build configuration list for PBXNativeTarget "Pods-Jasonette" */; + buildPhases = ( + DCEEC0DD1D21B61A7D364A316BFACBCE /* Sources */, + AF0A07D884EE8F6CA1D135FB8A4DF43A /* Frameworks */, + 84AE4A270D966799A45C37E32B885856 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 29BBA38ED677FEDC3D72344690BF4556 /* PBXTargetDependency */, + 2B01C05C7AC3D49195A4954667C05CC6 /* PBXTargetDependency */, + 1F02548CCC2B724867FDD73BC9C36E6F /* PBXTargetDependency */, + 98207FAC08ECCE2F5DCB7270CD96CD77 /* PBXTargetDependency */, + C0045714FB2115D8F4467AF2A1923F96 /* PBXTargetDependency */, + 9A70351349A79D1F8A7C10685BBD1B94 /* PBXTargetDependency */, + D2B0C967094B9C206FF98358E22C50C3 /* PBXTargetDependency */, + 888C7070A44B8A389292BD1BD3E5E31E /* PBXTargetDependency */, + 6F73F1F667ED740111B73FDF7EFE16CA /* PBXTargetDependency */, + AB46FD6ACD428AE392D1A5FB192E8559 /* PBXTargetDependency */, + B99424E1BF4ADCCADB7BBD02865CF491 /* PBXTargetDependency */, + 13877BCF7333835B57C3059E7CAA635C /* PBXTargetDependency */, + 1E451F3CB1C992D53B2DCEB5FE9E27C7 /* PBXTargetDependency */, + 28B7A1833AD33769C6D5BB4A091822A2 /* PBXTargetDependency */, + 679A3B98A0A1F61D5095BDE31C9FB24C /* PBXTargetDependency */, + 1EB0ADB8BB9E3FC7C2EDFFE105BE77D1 /* PBXTargetDependency */, + FC61E4FB76C89B7181CC2AF0CC0EAC7F /* PBXTargetDependency */, + 3EFCD27F0472D161C9BF1A719B0C910A /* PBXTargetDependency */, + 5693C6638A599F0A01B702BDF9A4079E /* PBXTargetDependency */, + B61A9C8355C18E80D1028A7AD4BE217D /* PBXTargetDependency */, + C018AA88707F353AA6F4FD7ED97E1001 /* PBXTargetDependency */, + 6C5606DEEFB2C66C118F902867814336 /* PBXTargetDependency */, + 0595EC0373BDB29300E1ED20E56826AC /* PBXTargetDependency */, + 321CFB5363ED540E10385BFD44A9DF16 /* PBXTargetDependency */, + 92C02D6D9BD05B5ED3514504E74421A2 /* PBXTargetDependency */, + F6AF06B896409B385A9ADAA60E0F0C70 /* PBXTargetDependency */, + 3C25A8AFEF02CFB74BD60C2A14A5F60C /* PBXTargetDependency */, + 76B6B446148115E3FB327E01BE63E126 /* PBXTargetDependency */, + 569DB8505A9B52D81AB4BE959AD2AFC6 /* PBXTargetDependency */, + B00A1081C7C7860D1CA1258ED7A57A82 /* PBXTargetDependency */, + DE89896DD3FB65BFE5338101AC28A306 /* PBXTargetDependency */, + C57C2040C7CEAC105B692864EBA11AC9 /* PBXTargetDependency */, + D8CBCA994B70D3147FCAAC817D6E3925 /* PBXTargetDependency */, + 9D4345929A9CB8FC309A2918D1ABC039 /* PBXTargetDependency */, + 0C595591226C4FEF2F756B5D08A72795 /* PBXTargetDependency */, + 07A631F4086C3BDF4F9FA580A7166CF4 /* PBXTargetDependency */, + C6387723524899FC6616E1F763A575E3 /* PBXTargetDependency */, + 07257E8CD4758D710ABD61F10561B6C4 /* PBXTargetDependency */, + C8017F167F4370681C0E195CD8BFDF03 /* PBXTargetDependency */, + 13D861B985D2BCEA2B97A9EA7F377F83 /* PBXTargetDependency */, + ); + name = "Pods-Jasonette"; + productName = "Pods-Jasonette"; + productReference = F2F70888C181A6733C9122EC984EBB03 /* Pods_Jasonette.framework */; productType = "com.apple.product-type.framework"; }; E468869C9F239CDEC39C115A4A20C6E6 /* DHSmartScreenshot */ = { @@ -5803,25 +5907,25 @@ ); name = DHSmartScreenshot; productName = DHSmartScreenshot; - productReference = 72FF62384B3E33CDE26D484E15B77B29 /* DHSmartScreenshot.framework */; + productReference = 7588E258E7A2CCF87E6A64BF45459BDB /* DHSmartScreenshot.framework */; productType = "com.apple.product-type.framework"; }; - EFF460C9BA4EC9CAC17FB22B45CF7087 /* RMDateSelectionViewController */ = { + F70FE54FC6689BA0FFC5616D47F9FC4F /* LTHPasscodeViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 1C252ADE22B852BD67BB5070F487E75A /* Build configuration list for PBXNativeTarget "RMDateSelectionViewController" */; + buildConfigurationList = A842B02B098D9C53D0B055F846937E0F /* Build configuration list for PBXNativeTarget "LTHPasscodeViewController" */; buildPhases = ( - ABC8906A03051704A030D1971DF038CE /* Sources */, - 85E132176C46F796FA419981C7FD8EC8 /* Frameworks */, - AD495484A86A915885AA943C7F0A1F96 /* Headers */, + 0954269BCE6F2C707B132CDE319D721E /* Sources */, + 56C871D430389B297A7A2A0D4A313D18 /* Frameworks */, + 39748A18C307D172B8CAC1FA23344B12 /* Headers */, + 2A6164C1B4AF0ED200A79A9208F85BA6 /* Resources */, ); buildRules = ( ); dependencies = ( - 92AFF2A36C10563E53A8C85BC4AF011F /* PBXTargetDependency */, ); - name = RMDateSelectionViewController; - productName = RMDateSelectionViewController; - productReference = 81224D24B35ADC5B54004248915DB727 /* RMDateSelectionViewController.framework */; + name = LTHPasscodeViewController; + productName = LTHPasscodeViewController; + productReference = FA3493ECA00D2EC4E2AF64FE79E9B734 /* LTHPasscodeViewController.framework */; productType = "com.apple.product-type.framework"; }; FF0CDCF65A1A776251C0F82587A23D26 /* BBBadgeBarButtonItem */ = { @@ -5838,7 +5942,7 @@ ); name = BBBadgeBarButtonItem; productName = BBBadgeBarButtonItem; - productReference = AD2B78C2EB12B739883EC7F070D0A9BB /* BBBadgeBarButtonItem.framework */; + productReference = 2BC38246453207C4BC952E92A1B81612 /* BBBadgeBarButtonItem.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -5858,7 +5962,7 @@ en, ); mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = 471DAAA43232CC59DA05D3F7C83E880A /* Products */; + productRefGroup = 03AF744A45EE332B81C9E6BF517EFA08 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -5880,43 +5984,39 @@ 0D83E505BF1E81A4AAA9A3A5CAA45E9E /* JDStatusBarNotification */, D4F51B6443933144DB176451A7279DBD /* JSCoreBom */, 7D5D891676725492FDD435B2ACEBBB3B /* libPhoneNumber-iOS */, + F70FE54FC6689BA0FFC5616D47F9FC4F /* LTHPasscodeViewController */, 41FA54D12162DAD51D02FC58A2CD5034 /* MBProgressHUD */, 6D3CC2E1481FD4B03969ECA2FF3F07A8 /* NSGIF */, 7C04B114E32ADD957E35C4494C68D20C /* NSHash */, 8B01F7E5D6B9A5E36CD00A9208EFF9A8 /* OMGHTTPURLRQ */, C4862B96577F57D0819ECCBCA837BD96 /* PHFComposeBarView */, 837D8A38BD0CFB4D5347E5BE0BEA1ACE /* PHFDelegateChain */, - A4ED8C1BC0C98DCBC1B3F159CCD34B16 /* Pods-Jasonette */, + E08B712730162E73FB1DC7C4827891A8 /* Pods-Jasonette */, AC4A322988F097B1E752EB3107D61DE9 /* Reachability */, - 5C14FE3775F7AEABD189BA5D908EC746 /* REMenu */, - 1001DB9CC14766D428A141CE5D4357B7 /* RMActionController */, - EFF460C9BA4EC9CAC17FB22B45CF7087 /* RMDateSelectionViewController */, - 3CEE63E62D7471CD5C9C5F050A44AF25 /* SBJson */, + 7FEAAD03CB8B6420CC4CB260C6562EFB /* REMenu */, + 1D510000CA4286F8B156EA1072E272E2 /* RMActionController */, + AC5CB584FDF5D4603E4712F88F10EF70 /* RMDateSelectionViewController */, + D0A703793FD19E5003FBBAF9BF625BE3 /* SBJson */, 923C199FC8844D48B6E4D0E9B013C7C4 /* SCSiriWaveformView */, - CD123DC977E692354FA6A7EA93F0B7FD /* SDWebImage */, - D489A576D192C4A3D7258B2B0D252687 /* SocketRocket */, - 873C7309AA18799758A65F0365980447 /* SWFrameButton */, - 737B292D75C310BEABC0A1E64C6F7BF9 /* SWTableViewCell */, - 84D1A4D5C022C5080A4F3C0EE6B9AFCC /* SZTextView */, - B9C0DFFAADC4AE839A71E4E02A5972A6 /* TDOAuth */, - 63193F933F5AC35A56B72012D6B451D3 /* TTTAttributedLabel */, - 470AFA972C9E000FE52DF1ECE11A504D /* TWMessageBarManager */, - 0EE67372562BE196F0FEF01CC9F45486 /* UICKeyChainStore */, + 169472FE98DC26FB6DE48670BCE95DAA /* SDWebImage */, + 06ADBD054C6E5882D76A8551D8DD2137 /* SocketRocket */, + 54437C09B6ACE0D2F2F4EE82CCB6ED16 /* SWFrameButton */, + AA62908DC8078B767DFCD87B5953EBD0 /* SWTableViewCell */, + A933F6535B61DFEAA2A004FCA147B24E /* SZTextView */, + 1498BDA9EC86795A0C60B4876D9CF825 /* TDOAuth */, + DDE557F9D45590A946D6E2D509E0C159 /* TTTAttributedLabel */, + 33743CC3D62908CEA7612D6F62D9EED9 /* TWMessageBarManager */, + 9DE25021442CB70151058A73AE973DB6 /* UICKeyChainStore */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 3BB94C14FF249BFA9136C85AAF581442 /* Resources */ = { + 2A6164C1B4AF0ED200A79A9208F85BA6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7E894DBA479E6B6C83B98D94B1D8DBF1 /* icon-error.png in Resources */, - EB9B01BA272CB5F4C7F56D6B45170115 /* icon-error@2x.png in Resources */, - 700077B1FF8C2C62513163CBB298FB2C /* icon-info.png in Resources */, - D8C6C1C92A2882D3D98145B9CA82B91B /* icon-info@2x.png in Resources */, - C4460005E6C2D093469B8C00D8F3E7E1 /* icon-success.png in Resources */, - 482476705FEBF63831487BA9666BF247 /* icon-success@2x.png in Resources */, + BD782AAE430B44CDB6BC289E604311DD /* LTHPasscodeViewController.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5942,6 +6042,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7CAF9C9788EB07919F5E8C6F061A2B56 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0A361D6B6B8792CF5C34132094407F96 /* icon-error.png in Resources */, + 1D53E0A7E765CFFC2C6F6307D4CBDEA6 /* icon-error@2x.png in Resources */, + 7F2C28F659D3D8182EC02B3AA71257BA /* icon-info.png in Resources */, + D0BB921AC66A5D4BCD4C94BEF513E879 /* icon-info@2x.png in Resources */, + DEB4028704BF37880AC1C512F2796134 /* icon-success.png in Resources */, + 4C9BF640C4564B6855C69F79D3A0D3DC /* icon-success@2x.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -5956,6 +6069,38 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 0480ADC703380F2FA664939580BD5B06 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B986D4D364898EB0DE483B9A1B8B3498 /* RECommonFunctions.m in Sources */, + 231B228AD6AE309D1976A13A8FD1FFB2 /* REMenu-dummy.m in Sources */, + B22EA24DC1DB2B7354A70C90D93E995B /* REMenu.m in Sources */, + B6245C420FE220D6A515C69E1386F439 /* REMenuContainerView.m in Sources */, + 2F8F13B4CDD3ABF91F9BD2449DEF067C /* REMenuItem.m in Sources */, + DDBDA810C7A09C3B7DBFAB713DCB1C3A /* REMenuItemView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0840BFC207A01F8B037BD8C897016352 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C5B2A0C62BDE65994C7E1BE8EDDD3C28 /* TTTAttributedLabel-dummy.m in Sources */, + E3F2D1E7CE56971D459E244681EFDB12 /* TTTAttributedLabel.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0954269BCE6F2C707B132CDE319D721E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E6764C783986705E869A02A14C6576AD /* LTHKeychainUtils.m in Sources */, + 976EE5EDE4D7FEC4C1ABEAA4CB0C04C1 /* LTHPasscodeViewController-dummy.m in Sources */, + 6F7A6287BBDB5268338A71B32AF41555 /* LTHPasscodeViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0F05257169A28A06EA1BD3A04566C271 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -5965,12 +6110,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3381B8FBA5313E4F24D5A9E71B4FE80F /* Sources */ = { + 14156B73D6C3F07E49FB409FFEE7D45E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8B8DFA48EACF863055A4960030349C9C /* TWMessageBarManager-dummy.m in Sources */, - 0A783372D710D5C7E5C6EE371E8E3977 /* TWMessageBarManager.m in Sources */, + 3603637EC17F9E25C026D744553C1D50 /* SocketRocket-dummy.m in Sources */, + FD665584B2B2E53133BE56BEB7806CB4 /* SRWebSocket.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5983,12 +6128,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E4E3A3BE3F5E6069671BEE2D42BB952 /* Sources */ = { + 46A0381B5C83357211A8E4AABE2A07E9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7962B64FA8021866C718FDC0C833EC68 /* SocketRocket-dummy.m in Sources */, - 0F0D3E798AF929592B64BC97D8FE9C01 /* SRWebSocket.m in Sources */, + 0380DF1C347DED433D52DDA96A6093DD /* UICKeyChainStore-dummy.m in Sources */, + C20FFBD6DE042033BF86C8F521898237 /* UICKeyChainStore.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6032,19 +6177,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4C0502542FA9F693F33F8F68E53973C9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7C9E3C7BEDE10554CD62E8F60A056625 /* RECommonFunctions.m in Sources */, - B32F3F8131ACFDA19AC00ABB0026FAB9 /* REMenu-dummy.m in Sources */, - FC284FF77848588443EDDEE9CCA3490F /* REMenu.m in Sources */, - 9C9BBB59635D9127D4E75BB2ADC3B198 /* REMenuContainerView.m in Sources */, - 6E37E43BDE9810949FF537962E76B798 /* REMenuItem.m in Sources */, - 9FEB92FB8E9DE39B43F4DB466A33B658 /* REMenuItemView.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 52B0AC8B0A8A0C2989104665D89B7B3A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6057,21 +6189,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 57AB37DD1B757CBAAAB44DD391F687C0 /* Sources */ = { + 5945F50DCF7C34AA12D4D98CC6F1967A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1277D4AE1B25CC3C1700AE6A8A32316F /* SZTextView-dummy.m in Sources */, - 94AF51C3CA8891C70080332182BBB5D2 /* SZTextView.m in Sources */, + CAEA0104E794F16418F4D8ED3E00CC74 /* TDOAuth-dummy.m in Sources */, + ADE7624F752646F9C3A069D92DCA357F /* TDOAuth.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 682D67F800B4F7D69BE6E54B0B4633DD /* Sources */ = { + 72FFE71DECE0326B9AB5B607E191AD11 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 09565959F63BDF332DEF0B927ACA844B /* TTTAttributedLabel-dummy.m in Sources */, - 59E0A85D6735528F65C1055CAF71E5CC /* TTTAttributedLabel.m in Sources */, + 51B14CC1F481FEAD8C1C71577020AE20 /* SWFrameButton-dummy.m in Sources */, + A09C426E046C9B684E85012C1C7A5D0F /* SWFrameButton.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6096,43 +6228,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 78EE894B60E1B5BEE14004FABC8002D3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 18AF4B55D867CDC898C91414BC98A1BA /* SBJson-dummy.m in Sources */, - AA368AA5CCADA8595BA6633FA73461AB /* SBJson4Parser.m in Sources */, - 53742E89F0088EC645158DE6ECB434F8 /* SBJson4StreamParser.m in Sources */, - C0D61B73142589BD1C0D0AC215686110 /* SBJson4StreamParserState.m in Sources */, - 356899D02F95EC38380A2E4A42500677 /* SBJson4StreamTokeniser.m in Sources */, - A61E800FDBE44BB8FFE7F39364D6C629 /* SBJson4StreamWriter.m in Sources */, - 70DBD0C9DF6ADEC45B84DC0525A628AE /* SBJson4StreamWriterState.m in Sources */, - E51088D805C637615F902E13ED03480B /* SBJson4Writer.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 842FC003E287846C644FA3D9101AF234 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DCD2FF97C3D910CC92C365C384234232 /* NSData+ImageContentType.m in Sources */, - 5ADBC23A15B18590C592D3AC99BDB291 /* SDImageCache.m in Sources */, - 7CA6EE738007BCC5DE759ED7C9028FBF /* SDWebImage-dummy.m in Sources */, - E02BAE034E4EA8D6B444FCD45E77649D /* SDWebImageCompat.m in Sources */, - 319D4E6D6B1E131FEAFFC34E5076E432 /* SDWebImageDecoder.m in Sources */, - 8A09F4E2489820177E2791968CEDB7A7 /* SDWebImageDownloader.m in Sources */, - 000DFD432472EF39564852DE457A91DC /* SDWebImageDownloaderOperation.m in Sources */, - E844DC2FF7CB0B33343A2F9B7441E88C /* SDWebImageManager.m in Sources */, - 95448BE78C9165CA92280146D44C4CFC /* SDWebImagePrefetcher.m in Sources */, - 667836381B77C09019A5F1B44EE9F744 /* UIButton+WebCache.m in Sources */, - AD12A083845A20CFFF0F3B51FF054E64 /* UIImage+GIF.m in Sources */, - 115DABA105F7B1BE08B66597B16C6F90 /* UIImage+MultiFormat.m in Sources */, - 06E9478921B6F9D64E339B9EF676BDF1 /* UIImageView+HighlightedWebCache.m in Sources */, - 899992B5A6781C575D05CD230C70DCD9 /* UIImageView+WebCache.m in Sources */, - 9BD036E835F62427EB361C20AC91D19D /* UIView+WebCacheOperation.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 84F64E05654BF0D5D206BEB548514BA8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6212,12 +6307,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8FFACE826FEB1E3A9BDAA7CED765D0D2 /* Sources */ = { + 89E8E9253A92D3DC3AD46CC86026907C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7C4973CE1E0E45E680FCC30BBE9703D0 /* NSMutableArray+SWUtilityButtons.m in Sources */, + 80A4F4635885467FA896267AD5878461 /* SWCellScrollView.m in Sources */, + D249EE9726F93D01A2721CF9F9ED815D /* SWLongPressGestureRecognizer.m in Sources */, + C2113A51A3CA14906F10DF693B682088 /* SWTableViewCell-dummy.m in Sources */, + 2405B94F3C43E9073F661D37F0A65011 /* SWTableViewCell.m in Sources */, + 59A9CE44E452CB91AC28F37298689FFE /* SWUtilityButtonTapGestureRecognizer.m in Sources */, + A135185D5057848FE7E6DF9253C3702D /* SWUtilityButtonView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8B6188F132E3E2A2EFDDB26812E1FFFA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C3F6E31A14E140AB88F4E38F021F3E1E /* SZTextView-dummy.m in Sources */, + 849D51AFA2515521729B642546B4B5D5 /* SZTextView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8CB4741E9B046F608A437FD2D854F976 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B346148E4D7CD0AB447185D0B2082427 /* UICKeyChainStore-dummy.m in Sources */, - 62EB0E48910ADF1512ADD511A44C2EFF /* UICKeyChainStore.m in Sources */, + 66AC29275CE58D6F858C085B72504859 /* RMDateSelectionViewController-dummy.m in Sources */, + 07C473087AE762AE05A2A28A21300E80 /* RMDateSelectionViewController.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6283,15 +6401,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ABC8906A03051704A030D1971DF038CE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3E23BF104DD676CB18F2BC432F0DF66E /* RMDateSelectionViewController-dummy.m in Sources */, - E839C726D91347B8AD5498B6329F145B /* RMDateSelectionViewController.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; AE7C886B2B0F5D64D5E4948510061157 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6387,15 +6496,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B450AC6D6DC1E6B51324E8984AC21752 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 24C98D85DF71748C0635438C85D1F6A6 /* TDOAuth-dummy.m in Sources */, - E292949FADC21AE475CF628ADB2B3F09 /* TDOAuth.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C120A7EE834204D37D1CAD31A498BC0F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6460,6 +6560,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DA1E12C085F99038864F1ECC8D6FD479 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8AEE0A247BBDF9D36C19529A0F592B89 /* TWMessageBarManager-dummy.m in Sources */, + 6A6A5CE2100F69116C93E8DBF9496964 /* TWMessageBarManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DA8658E4BD9404852104E68252215FA8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6469,38 +6578,51 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DC662C4080D945B249356ABBF42A2A61 /* Sources */ = { + DC654537FD15BDA004D4439DB7D0CED3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 326A87EA02ADCD21D3AF347E350DA3C3 /* Pods-Jasonette-dummy.m in Sources */, + 24C9161EF53018685A0582D2D80556BE /* NSData+ImageContentType.m in Sources */, + 3DCBFDA39E9CC860C311A42261867D73 /* SDImageCache.m in Sources */, + A6B8908C4AAE85FEFE0B9A96F97BE339 /* SDWebImage-dummy.m in Sources */, + A617597EDF40F39DABDB74F005677308 /* SDWebImageCompat.m in Sources */, + 1D2A8F69E733EFFE2E499E95040C2997 /* SDWebImageDecoder.m in Sources */, + 3BC2812392AB51B3E3367C28E16FD2E5 /* SDWebImageDownloader.m in Sources */, + F2C7EB3C659171C849EF9D3A45ABF4AB /* SDWebImageDownloaderOperation.m in Sources */, + 4E52D30369A5F251EC5B3BF44A67A3A8 /* SDWebImageManager.m in Sources */, + BC8468380DC283810D6EC991C640F419 /* SDWebImagePrefetcher.m in Sources */, + CB677153EE6AD0304F64EDD289E55CEA /* UIButton+WebCache.m in Sources */, + C8E123F3C7B70309FC5E08150BF79205 /* UIImage+GIF.m in Sources */, + C0499ACB623D94CA4FB6D994E0AB5D64 /* UIImage+MultiFormat.m in Sources */, + 5A2151FADF718FF41BA339EC5F879510 /* UIImageView+HighlightedWebCache.m in Sources */, + F1D82860492BDD33C35A651638326070 /* UIImageView+WebCache.m in Sources */, + EEE383A2450C703A510664C22155D672 /* UIView+WebCacheOperation.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DD21447685ED1FC371D6B599CBBDB4F1 /* Sources */ = { + DCEEC0DD1D21B61A7D364A316BFACBCE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 66F53044FDA74E65FA524AB566A0F9A0 /* BBBadgeBarButtonItem-dummy.m in Sources */, - 0E5B82B9252B09A317CD032A77248477 /* BBBadgeBarButtonItem.m in Sources */, + 830DA1C4476EF7D046E4876AF3926EC9 /* Pods-Jasonette-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E0E6C4F0CAB90484413CBE897FF7AB55 /* Sources */ = { + DD21447685ED1FC371D6B599CBBDB4F1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 121759DC052830681A2B0FEF9AEDE747 /* RMActionController-dummy.m in Sources */, - DF81C77323AB30819DA80B2E5C8296A9 /* RMActionController.m in Sources */, + 66F53044FDA74E65FA524AB566A0F9A0 /* BBBadgeBarButtonItem-dummy.m in Sources */, + 0E5B82B9252B09A317CD032A77248477 /* BBBadgeBarButtonItem.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EAF5AA37999C178EAF9CCA7D60916275 /* Sources */ = { + E37FDA1B3E0830956A408DD189405A84 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 64F66F7D552828A5CC10D6FDD804919E /* SWFrameButton-dummy.m in Sources */, - 058B1CBA818FA465DA7DA197D70B5A35 /* SWFrameButton.m in Sources */, + F9492DEB768314266F1AFDC97299D82E /* RMActionController-dummy.m in Sources */, + 18B0D973B877F5E0472C815A90CCC757 /* RMActionController.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6543,17 +6665,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F1F1CBF0A23F87D0C466CFB8B8012A96 /* Sources */ = { + F0599F62FD88D6937BEE6AA76BBFE57D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F4B2B1C7845FF4A470721B5FBCD55BBE /* NSMutableArray+SWUtilityButtons.m in Sources */, - 6289D911FAA50A06039049632929952F /* SWCellScrollView.m in Sources */, - F2D84D45E93474C416A981FA7E8FBA14 /* SWLongPressGestureRecognizer.m in Sources */, - E8CA34CE2768ABDB0B968607ECEA0CDF /* SWTableViewCell-dummy.m in Sources */, - 88B9FE0552923ACEA335BB181D3C4A6F /* SWTableViewCell.m in Sources */, - C0C5FDA3AB8F048F1AF8F94E6D8EF5CE /* SWUtilityButtonTapGestureRecognizer.m in Sources */, - 89E841CA80A543F6119B1BC8E8BC7019 /* SWUtilityButtonView.m in Sources */, + 7DDDA3442D4330EBF7E7E3135F22C200 /* SBJson-dummy.m in Sources */, + F85B651A15CB379A59CDF08E2321EF7B /* SBJson4Parser.m in Sources */, + E076F795D2450A90BCAE84116BD41F6A /* SBJson4StreamParser.m in Sources */, + 44745B41D0F80AFFA8F622FDC7651314 /* SBJson4StreamParserState.m in Sources */, + C2CA57D9F8C4BBB525332C537F11EC54 /* SBJson4StreamTokeniser.m in Sources */, + DD6C900566550B0BF2F6E49BE12AB9E1 /* SBJson4StreamWriter.m in Sources */, + 03CBB3C277265E15E863F8B9B09EBDE2 /* SBJson4StreamWriterState.m in Sources */, + 357B6682EB49A514C971CFC114BE6EE9 /* SBJson4Writer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6592,95 +6715,101 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 020719CC16CE61BFF1C960693803B7A3 /* PBXTargetDependency */ = { + 0595EC0373BDB29300E1ED20E56826AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PHFComposeBarView; + target = C4862B96577F57D0819ECCBCA837BD96 /* PHFComposeBarView */; + targetProxy = 35440F3DFE733EC2F26CE59212B6AB19 /* PBXContainerItemProxy */; + }; + 07257E8CD4758D710ABD61F10561B6C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TWMessageBarManager; + target = 33743CC3D62908CEA7612D6F62D9EED9 /* TWMessageBarManager */; + targetProxy = 525F901539573F385BB055D93536681C /* PBXContainerItemProxy */; + }; + 07A631F4086C3BDF4F9FA580A7166CF4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TDOAuth; + target = 1498BDA9EC86795A0C60B4876D9CF825 /* TDOAuth */; + targetProxy = 7C9A60A940F1DA9D786FC1C31AD3347A /* PBXContainerItemProxy */; + }; + 0C595591226C4FEF2F756B5D08A72795 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SocketRocket; + target = 06ADBD054C6E5882D76A8551D8DD2137 /* SocketRocket */; + targetProxy = CD6DDA6D377B711A3FC09CD38472B9A3 /* PBXContainerItemProxy */; + }; + 13877BCF7333835B57C3059E7CAA635C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FreeStreamer; target = 9C8E44ED4B2A3F5EA77697C7DAD3F36E /* FreeStreamer */; - targetProxy = 799F3B168EC353BE3BD7E90E77E80A35 /* PBXContainerItemProxy */; + targetProxy = 1A33D27C41EDBC0C1393F41EDB83893A /* PBXContainerItemProxy */; }; - 034C3949E8F2DB574651591F78F2E6B1 /* PBXTargetDependency */ = { + 13D861B985D2BCEA2B97A9EA7F377F83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JSCoreBom; - target = D4F51B6443933144DB176451A7279DBD /* JSCoreBom */; - targetProxy = A58C203F3AFB061E54516373C48DF129 /* PBXContainerItemProxy */; + name = "libPhoneNumber-iOS"; + target = 7D5D891676725492FDD435B2ACEBBB3B /* libPhoneNumber-iOS */; + targetProxy = 92BC25FFB70021785FEFF20A7AFA319C /* PBXContainerItemProxy */; }; - 0551ADECB2B28CE7DBBAA199BF9173BE /* PBXTargetDependency */ = { + 1E451F3CB1C992D53B2DCEB5FE9E27C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = NSHash; - target = 7C04B114E32ADD957E35C4494C68D20C /* NSHash */; - targetProxy = D73D7DE7A10D76B6B15EFD573C9E3BC3 /* PBXContainerItemProxy */; + name = HMSegmentedControl; + target = 7891E2B724C54EF58FB1692B34F1455C /* HMSegmentedControl */; + targetProxy = C3C621927DB26786A3538F819639686D /* PBXContainerItemProxy */; }; - 0A820B7283394713F5DD8FB51F3FF529 /* PBXTargetDependency */ = { + 1EB0ADB8BB9E3FC7C2EDFFE105BE77D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JDStatusBarNotification; target = 0D83E505BF1E81A4AAA9A3A5CAA45E9E /* JDStatusBarNotification */; - targetProxy = 6F062DCD8C367E4E14B14574416226A8 /* PBXContainerItemProxy */; + targetProxy = B4A0FBA820D3CB1BCCA0B073A9A67380 /* PBXContainerItemProxy */; }; - 0C22868EFBD1AC60393323D943CA2043 /* PBXTargetDependency */ = { + 1F02548CCC2B724867FDD73BC9C36E6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AHKActionSheet; target = 7621630BF9979CD340446B0404B671CD /* AHKActionSheet */; - targetProxy = F784F86859E68BD449A1385AE0264B6A /* PBXContainerItemProxy */; - }; - 185551077ECBD2CA2E6636E72DD53C5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = OMGHTTPURLRQ; - target = 8B01F7E5D6B9A5E36CD00A9208EFF9A8 /* OMGHTTPURLRQ */; - targetProxy = 5607CA9A413BC8ED9688FF779C091ABD /* PBXContainerItemProxy */; + targetProxy = E66A56AE650056EB6BD58D191E8B3C7C /* PBXContainerItemProxy */; }; - 1859E19F78AF64720733425C3B2AA082 /* PBXTargetDependency */ = { + 28B7A1833AD33769C6D5BB4A091822A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = OMGHTTPURLRQ; - target = 8B01F7E5D6B9A5E36CD00A9208EFF9A8 /* OMGHTTPURLRQ */; - targetProxy = 22EABA836AA268236CE8E7BBDB4F2F01 /* PBXContainerItemProxy */; + name = INTULocationManager; + target = 7E683DB16DC4643221505F9973C9BC36 /* INTULocationManager */; + targetProxy = 4D483E680C58FDF12F2E9CDA2DE00AED /* PBXContainerItemProxy */; }; - 1DBB564CD744C57E4F30C707CFF2AB45 /* PBXTargetDependency */ = { + 29BBA38ED677FEDC3D72344690BF4556 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = NSGIF; - target = 6D3CC2E1481FD4B03969ECA2FF3F07A8 /* NSGIF */; - targetProxy = 8A60DE52CC27A51D5930C142F7D3613A /* PBXContainerItemProxy */; + name = AFNetworking; + target = CF671F7E57B92905F1CC91D036D6B4A7 /* AFNetworking */; + targetProxy = 84EE331DA2D235B742C912C4A222A4BE /* PBXContainerItemProxy */; }; - 1DE688E70B86757E2A5442045648E9B0 /* PBXTargetDependency */ = { + 2B01C05C7AC3D49195A4954667C05CC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AFOAuth2Manager; target = CA7C7EB2323EE5121B010E294E19D76B /* AFOAuth2Manager */; - targetProxy = 00FBFDA6327394340F3B8EE1468AAF7F /* PBXContainerItemProxy */; + targetProxy = 234960A41F04DB72405041F3EC921528 /* PBXContainerItemProxy */; }; - 21E3076AB512003F95563E92C4F34655 /* PBXTargetDependency */ = { + 321CFB5363ED540E10385BFD44A9DF16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PHFDelegateChain; target = 837D8A38BD0CFB4D5347E5BE0BEA1ACE /* PHFDelegateChain */; - targetProxy = 56CD25609D425A747C6B60006F96B382 /* PBXContainerItemProxy */; + targetProxy = 56CF21C69B50C7A87EEF72753EC5B693 /* PBXContainerItemProxy */; }; - 28EA0A26915AC2ADC649F533E17EAA3E /* PBXTargetDependency */ = { + 338FF021BEF883BD9F4F1263AB0E990E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FLEX; - target = 68A07EF405FD9BCB32A62DB85FB63511 /* FLEX */; - targetProxy = AFFACDC925136334C6B22581CF175012 /* PBXContainerItemProxy */; - }; - 326700ED261A884A2508D367FAFF8149 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SWTableViewCell; - target = 737B292D75C310BEABC0A1E64C6F7BF9 /* SWTableViewCell */; - targetProxy = B0C273591911DBC7C21BBA68AD5F3F32 /* PBXContainerItemProxy */; - }; - 3479F6662B720C876B6C7155321FE653 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "libPhoneNumber-iOS"; - target = 7D5D891676725492FDD435B2ACEBBB3B /* libPhoneNumber-iOS */; - targetProxy = 822DDFD8BE8872B6CA0B5627F53683A3 /* PBXContainerItemProxy */; + name = RMActionController; + target = 1D510000CA4286F8B156EA1072E272E2 /* RMActionController */; + targetProxy = 941B2571BB8240422A8715CE1453538B /* PBXContainerItemProxy */; }; - 391D7169F287A91F776046385B77558D /* PBXTargetDependency */ = { + 3C25A8AFEF02CFB74BD60C2A14A5F60C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SCSiriWaveformView; - target = 923C199FC8844D48B6E4D0E9B013C7C4 /* SCSiriWaveformView */; - targetProxy = 5AB0F8C3788D27CD355EF6CC21125C83 /* PBXContainerItemProxy */; + name = RMDateSelectionViewController; + target = AC5CB584FDF5D4603E4712F88F10EF70 /* RMDateSelectionViewController */; + targetProxy = F0F68A14FC7939890FCD6BB61F2350B2 /* PBXContainerItemProxy */; }; - 39CC387927FE7C90CD367F8850996A04 /* PBXTargetDependency */ = { + 3EFCD27F0472D161C9BF1A719B0C910A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = REMenu; - target = 5C14FE3775F7AEABD189BA5D908EC746 /* REMenu */; - targetProxy = 20454659D56E2BB032B35A2490336D6F /* PBXContainerItemProxy */; + name = LTHPasscodeViewController; + target = F70FE54FC6689BA0FFC5616D47F9FC4F /* LTHPasscodeViewController */; + targetProxy = 71903873041D62DFF2AE805C6362163F /* PBXContainerItemProxy */; }; 3F9AC8F959D262F76CC83D25A9100FEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -6694,186 +6823,186 @@ target = CF671F7E57B92905F1CC91D036D6B4A7 /* AFNetworking */; targetProxy = E1E94DCEA63228DC4733EFBD6E4A261D /* PBXContainerItemProxy */; }; - 487FCD7814EAC184473997EFAB09BE15 /* PBXTargetDependency */ = { + 5693C6638A599F0A01B702BDF9A4079E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Reachability; - target = AC4A322988F097B1E752EB3107D61DE9 /* Reachability */; - targetProxy = C2DD8828A7E974F53D61F11CAC94A714 /* PBXContainerItemProxy */; + name = MBProgressHUD; + target = 41FA54D12162DAD51D02FC58A2CD5034 /* MBProgressHUD */; + targetProxy = 5514FDFF8D5F8B34A607DD871BCEDE3C /* PBXContainerItemProxy */; }; - 4C72A2B25EB816F9A5732A6A054979E7 /* PBXTargetDependency */ = { + 569DB8505A9B52D81AB4BE959AD2AFC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BBBadgeBarButtonItem; - target = FF0CDCF65A1A776251C0F82587A23D26 /* BBBadgeBarButtonItem */; - targetProxy = FDF3C877EE147F0DC406BDD0790D1FA3 /* PBXContainerItemProxy */; + name = SBJson; + target = D0A703793FD19E5003FBBAF9BF625BE3 /* SBJson */; + targetProxy = 1F398F35B347B48F5E8F2661DC57E775 /* PBXContainerItemProxy */; }; - 4DDCED2037C12221504E9CDE03B5DECA /* PBXTargetDependency */ = { + 679A3B98A0A1F61D5095BDE31C9FB24C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQAudioRecorderController; target = BF5E8492AD833171E67A19F798CC6361 /* IQAudioRecorderController */; - targetProxy = D5BEDE633A871FA42E5341B5CFEA6FAD /* PBXContainerItemProxy */; + targetProxy = B58B75AAC88D3471529CFD85188836A1 /* PBXContainerItemProxy */; }; - 501051EEFC4E6B3430B91B240965585E /* PBXTargetDependency */ = { + 6C5606DEEFB2C66C118F902867814336 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TWMessageBarManager; - target = 470AFA972C9E000FE52DF1ECE11A504D /* TWMessageBarManager */; - targetProxy = 425A86B556511163C6288915D7A2D8DE /* PBXContainerItemProxy */; + name = OMGHTTPURLRQ; + target = 8B01F7E5D6B9A5E36CD00A9208EFF9A8 /* OMGHTTPURLRQ */; + targetProxy = 2CC71615F02BE049F2A31DC06D4C962B /* PBXContainerItemProxy */; }; - 520FB0C9D17797BFECD559968E58831B /* PBXTargetDependency */ = { + 6F73F1F667ED740111B73FDF7EFE16CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DTCoreText; target = 95B642E7760975E1A3F812D8431F7FCA /* DTCoreText */; - targetProxy = 5ADA1C77FAC6179B8DE86A87594BF116 /* PBXContainerItemProxy */; + targetProxy = 610C392EC29573D4DFB48679E18A0EC0 /* PBXContainerItemProxy */; }; - 5471D45DE735F55A1A0FCD8C17D7BF0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PHFComposeBarView; - target = C4862B96577F57D0819ECCBCA837BD96 /* PHFComposeBarView */; - targetProxy = 5595C0A69613FA76122A13AF197132A2 /* PBXContainerItemProxy */; - }; - 5524AB1693443C30B0414B2561554E18 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CYRTextView; - target = A8FC440C47E8F886B32BE567E1954F6E /* CYRTextView */; - targetProxy = AC45ED00B9E874C4803B5CD0BAFA72EE /* PBXContainerItemProxy */; - }; - 57D3A949F6C4C6DC44BFD51C3AC9C4BF /* PBXTargetDependency */ = { + 7088A15A7FBF72526CB38D7DFD03C540 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DTFoundation; target = B38419E3D7B8986645578293B1F181D1 /* DTFoundation */; - targetProxy = B0B0AE0180EC4128B2F0FB481C4221BD /* PBXContainerItemProxy */; + targetProxy = 9FACA129FF011E4BF9A61CF895071FF0 /* PBXContainerItemProxy */; }; - 5BFB104A343D6D4FB781EEFE1D738953 /* PBXTargetDependency */ = { + 73EF6A30F6B47A1DA015A75332E0C924 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SZTextView; - target = 84D1A4D5C022C5080A4F3C0EE6B9AFCC /* SZTextView */; - targetProxy = 66433FAC12E08D23070E320913E7CC0D /* PBXContainerItemProxy */; + name = PHFDelegateChain; + target = 837D8A38BD0CFB4D5347E5BE0BEA1ACE /* PHFDelegateChain */; + targetProxy = AF8B9C3605A3D697C550055074258E2C /* PBXContainerItemProxy */; }; - 69D7440D3DF62313480DE063DE6BB892 /* PBXTargetDependency */ = { + 76B6B446148115E3FB327E01BE63E126 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TTTAttributedLabel; - target = 63193F933F5AC35A56B72012D6B451D3 /* TTTAttributedLabel */; - targetProxy = 13F6DA0D9360885353E20726EBED30EE /* PBXContainerItemProxy */; + name = Reachability; + target = AC4A322988F097B1E752EB3107D61DE9 /* Reachability */; + targetProxy = 04CFDE71BDE462564F371E4B61CB297A /* PBXContainerItemProxy */; }; - 6E70912B3E81D49E142C950E6DCAE832 /* PBXTargetDependency */ = { + 888C7070A44B8A389292BD1BD3E5E31E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DHSmartScreenshot; target = E468869C9F239CDEC39C115A4A20C6E6 /* DHSmartScreenshot */; - targetProxy = B2984DB82BFDB68F6D1416CD536A5C78 /* PBXContainerItemProxy */; + targetProxy = 7AF31C2B526FDB6B112849F3FC6509FB /* PBXContainerItemProxy */; }; - 7088A15A7FBF72526CB38D7DFD03C540 /* PBXTargetDependency */ = { + 8C78E0513CAFD6FDFB0E79976E35247F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DTFoundation; - target = B38419E3D7B8986645578293B1F181D1 /* DTFoundation */; - targetProxy = 9FACA129FF011E4BF9A61CF895071FF0 /* PBXContainerItemProxy */; + name = Reachability; + target = AC4A322988F097B1E752EB3107D61DE9 /* Reachability */; + targetProxy = A31866D6111DC6752B065309F72ED4B8 /* PBXContainerItemProxy */; }; - 71D0BE9D077DDB97FE663F917854DF87 /* PBXTargetDependency */ = { + 92C02D6D9BD05B5ED3514504E74421A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = INTULocationManager; - target = 7E683DB16DC4643221505F9973C9BC36 /* INTULocationManager */; - targetProxy = 58B2582B8B382457CBEA19C5BA54C1C1 /* PBXContainerItemProxy */; + name = REMenu; + target = 7FEAAD03CB8B6420CC4CB260C6562EFB /* REMenu */; + targetProxy = 6B8A17CEBA0454A22A8EC9F73F86D33A /* PBXContainerItemProxy */; }; - 72EFE35B426D831B487D8B709DDA908D /* PBXTargetDependency */ = { + 98207FAC08ECCE2F5DCB7270CD96CD77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RMActionController; - target = 1001DB9CC14766D428A141CE5D4357B7 /* RMActionController */; - targetProxy = 6F8C3AE23149F41ED14B47823143CB0B /* PBXContainerItemProxy */; + name = APAddressBook; + target = 8B20CAEEA320DAD747BB08D1128BDD90 /* APAddressBook */; + targetProxy = F701681582EEDB4CFD977941701C5B5E /* PBXContainerItemProxy */; }; - 73EF6A30F6B47A1DA015A75332E0C924 /* PBXTargetDependency */ = { + 9A70351349A79D1F8A7C10685BBD1B94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PHFDelegateChain; - target = 837D8A38BD0CFB4D5347E5BE0BEA1ACE /* PHFDelegateChain */; - targetProxy = AF8B9C3605A3D697C550055074258E2C /* PBXContainerItemProxy */; + name = CYRTextView; + target = A8FC440C47E8F886B32BE567E1954F6E /* CYRTextView */; + targetProxy = 364FCB8B3481B85F3835A8ECCB28AB61 /* PBXContainerItemProxy */; }; - 73F63CE4FF14A7AED586D47AC0032A05 /* PBXTargetDependency */ = { + 9D4345929A9CB8FC309A2918D1ABC039 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = APAddressBook; - target = 8B20CAEEA320DAD747BB08D1128BDD90 /* APAddressBook */; - targetProxy = 24FC6AC85080DEA327545292922FD5E4 /* PBXContainerItemProxy */; + name = SZTextView; + target = A933F6535B61DFEAA2A004FCA147B24E /* SZTextView */; + targetProxy = DF414A362A322D22C3EB22C43B6C73D1 /* PBXContainerItemProxy */; }; - 755216D61145B1516F59B51C37965EA8 /* PBXTargetDependency */ = { + AB46FD6ACD428AE392D1A5FB192E8559 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UICKeyChainStore; - target = 0EE67372562BE196F0FEF01CC9F45486 /* UICKeyChainStore */; - targetProxy = 9ECC6A6FDCC19C51195B50FA347103A6 /* PBXContainerItemProxy */; + name = DTFoundation; + target = B38419E3D7B8986645578293B1F181D1 /* DTFoundation */; + targetProxy = 3B4101A1299748AAC4696F57CC73886E /* PBXContainerItemProxy */; }; - 760C0EFC526DF32D657B8EACA0531FA5 /* PBXTargetDependency */ = { + ACDAD28784B9B818E7BA8B7A371081A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DAKeyboardControl; - target = 0C4D6D21E61953B565EFACC9FEC3713A /* DAKeyboardControl */; - targetProxy = 14B0A0F14BDD5CF317C4F96A9405A516 /* PBXContainerItemProxy */; + name = OMGHTTPURLRQ; + target = 8B01F7E5D6B9A5E36CD00A9208EFF9A8 /* OMGHTTPURLRQ */; + targetProxy = 22E93DA0027E4A6AF046C4DE1658C232 /* PBXContainerItemProxy */; }; - 7C80A07B43B85E3BD98BF298E96EA9FD /* PBXTargetDependency */ = { + B00A1081C7C7860D1CA1258ED7A57A82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SBJson; - target = 3CEE63E62D7471CD5C9C5F050A44AF25 /* SBJson */; - targetProxy = F106BD52A84ED99F92CDF3D7A766AD74 /* PBXContainerItemProxy */; + name = SCSiriWaveformView; + target = 923C199FC8844D48B6E4D0E9B013C7C4 /* SCSiriWaveformView */; + targetProxy = F09A9F3BEC60FB4D5C40F9CE0CA98C9D /* PBXContainerItemProxy */; }; - 8C78E0513CAFD6FDFB0E79976E35247F /* PBXTargetDependency */ = { + B61A9C8355C18E80D1028A7AD4BE217D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Reachability; - target = AC4A322988F097B1E752EB3107D61DE9 /* Reachability */; - targetProxy = A31866D6111DC6752B065309F72ED4B8 /* PBXContainerItemProxy */; + name = NSGIF; + target = 6D3CC2E1481FD4B03969ECA2FF3F07A8 /* NSGIF */; + targetProxy = B102A8E91BD02EF3C589A23BFBE571A8 /* PBXContainerItemProxy */; }; - 92AFF2A36C10563E53A8C85BC4AF011F /* PBXTargetDependency */ = { + B99424E1BF4ADCCADB7BBD02865CF491 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RMActionController; - target = 1001DB9CC14766D428A141CE5D4357B7 /* RMActionController */; - targetProxy = 0A5CC8A55A17296C1CE03EBAD755B9F8 /* PBXContainerItemProxy */; + name = FLEX; + target = 68A07EF405FD9BCB32A62DB85FB63511 /* FLEX */; + targetProxy = AB61801753E31763544EEF9F4B2D0163 /* PBXContainerItemProxy */; }; - 98A916032945E044A77E31D8F4C279A6 /* PBXTargetDependency */ = { + C0045714FB2115D8F4467AF2A1923F96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = AFNetworking; - target = CF671F7E57B92905F1CC91D036D6B4A7 /* AFNetworking */; - targetProxy = ADE2C4377A600E3E0635A481FEC989BD /* PBXContainerItemProxy */; + name = BBBadgeBarButtonItem; + target = FF0CDCF65A1A776251C0F82587A23D26 /* BBBadgeBarButtonItem */; + targetProxy = ED541B15D802A61C517B073CD28DFA17 /* PBXContainerItemProxy */; }; - 993126ECECBC9288FB104AEB976C1F82 /* PBXTargetDependency */ = { + C018AA88707F353AA6F4FD7ED97E1001 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MBProgressHUD; - target = 41FA54D12162DAD51D02FC58A2CD5034 /* MBProgressHUD */; - targetProxy = 40336E9156441A5AA527830C3C62FBAF /* PBXContainerItemProxy */; + name = NSHash; + target = 7C04B114E32ADD957E35C4494C68D20C /* NSHash */; + targetProxy = AF4598C036726B827C2BA9E1064F9D1D /* PBXContainerItemProxy */; }; - A96E5996A5A5D428C2706B6B66CD54C8 /* PBXTargetDependency */ = { + C57C2040C7CEAC105B692864EBA11AC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SWFrameButton; - target = 873C7309AA18799758A65F0365980447 /* SWFrameButton */; - targetProxy = CE88933B2445896469287DFDE36EECB6 /* PBXContainerItemProxy */; + target = 54437C09B6ACE0D2F2F4EE82CCB6ED16 /* SWFrameButton */; + targetProxy = 27A86104BD55B0450546035ABC468ED6 /* PBXContainerItemProxy */; }; - AAA5DE5C373B141EE31EE0779D00C301 /* PBXTargetDependency */ = { + C6387723524899FC6616E1F763A575E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RMDateSelectionViewController; - target = EFF460C9BA4EC9CAC17FB22B45CF7087 /* RMDateSelectionViewController */; - targetProxy = E4C33CAFAE2ED160B5AF24ABAED537E7 /* PBXContainerItemProxy */; + name = TTTAttributedLabel; + target = DDE557F9D45590A946D6E2D509E0C159 /* TTTAttributedLabel */; + targetProxy = 33862F289AFDBE18FD74DA5E3BF8D061 /* PBXContainerItemProxy */; }; - C0B254DD7CABA68CBD311EEA8E2D469C /* PBXTargetDependency */ = { + C8017F167F4370681C0E195CD8BFDF03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TDOAuth; - target = B9C0DFFAADC4AE839A71E4E02A5972A6 /* TDOAuth */; - targetProxy = 0315DB905C859003D79294908DD8E6D9 /* PBXContainerItemProxy */; + name = UICKeyChainStore; + target = 9DE25021442CB70151058A73AE973DB6 /* UICKeyChainStore */; + targetProxy = 6F99FDA2BBA1C61B5D032ABB4988F1A8 /* PBXContainerItemProxy */; }; - D6003D8D88B2CFB44F8A8FF6018F4B26 /* PBXTargetDependency */ = { + D2B0C967094B9C206FF98358E22C50C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = HMSegmentedControl; - target = 7891E2B724C54EF58FB1692B34F1455C /* HMSegmentedControl */; - targetProxy = 5C0B5C1AA69CFE5E4D8C7AD9A77E63DB /* PBXContainerItemProxy */; + name = DAKeyboardControl; + target = 0C4D6D21E61953B565EFACC9FEC3713A /* DAKeyboardControl */; + targetProxy = 383B1448E0B076A2882A114D24A3979F /* PBXContainerItemProxy */; }; - E380DA790259C56DA7796229148F90F6 /* PBXTargetDependency */ = { + D8CBCA994B70D3147FCAAC817D6E3925 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SWTableViewCell; + target = AA62908DC8078B767DFCD87B5953EBD0 /* SWTableViewCell */; + targetProxy = AFD0EFC7311065BC628EFD6D63D6145B /* PBXContainerItemProxy */; + }; + DE89896DD3FB65BFE5338101AC28A306 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; - target = CD123DC977E692354FA6A7EA93F0B7FD /* SDWebImage */; - targetProxy = E681FE08411A303E97BC9FDDFD71A7E8 /* PBXContainerItemProxy */; + target = 169472FE98DC26FB6DE48670BCE95DAA /* SDWebImage */; + targetProxy = AABEA705E7E0619910BB4FD1D0DB8CCA /* PBXContainerItemProxy */; }; - E3C0359509DEC275C9CD8826630E1852 /* PBXTargetDependency */ = { + F6AF06B896409B385A9ADAA60E0F0C70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SocketRocket; - target = D489A576D192C4A3D7258B2B0D252687 /* SocketRocket */; - targetProxy = D64C104EDE800E9E0FF20E02995E9B7D /* PBXContainerItemProxy */; + name = RMActionController; + target = 1D510000CA4286F8B156EA1072E272E2 /* RMActionController */; + targetProxy = C5580714289C2FA3CDC889265D9F91D4 /* PBXContainerItemProxy */; + }; + FC61E4FB76C89B7181CC2AF0CC0EAC7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JSCoreBom; + target = D4F51B6443933144DB176451A7279DBD /* JSCoreBom */; + targetProxy = 6BBF2CF064EF61D1CCDCB47B4676E475 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 05179D47D6809AAB9737E9D12298A26B /* Debug */ = { + 067ABA7C75AF5E7DEDD300DF38C526F5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D6CFAFC836ED3B96DB9E711B8F335E5 /* REMenu.xcconfig */; + baseConfigurationReference = FC29ADB4D94CCA5D79D4FF34E96DA11B /* APAddressBook.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -6882,7 +7011,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -6890,25 +7019,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/REMenu/REMenu-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/REMenu/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/APAddressBook/APAddressBook-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/APAddressBook/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/REMenu/REMenu.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = REMenu; + MODULEMAP_FILE = "Target Support Files/APAddressBook/APAddressBook.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = APAddressBook; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 067ABA7C75AF5E7DEDD300DF38C526F5 /* Release */ = { + 06EFB4CC103B0E72978FD2A4D60C95E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6880352DF326EFEA2022BF3B98EA7DD1 /* APAddressBook.xcconfig */; + baseConfigurationReference = 6821E29DA867FF0B2A67710FEFFA0830 /* LTHPasscodeViewController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -6925,14 +7054,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/APAddressBook/APAddressBook-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/APAddressBook/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/LTHPasscodeViewController/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/APAddressBook/APAddressBook.modulemap"; + MODULEMAP_FILE = "Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = APAddressBook; + PRODUCT_NAME = LTHPasscodeViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -6941,9 +7070,9 @@ }; name = Release; }; - 0AB2B6AC694F68BDFB7F26475D98534F /* Debug */ = { + 1331252F43335A57397C352748B74442 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DE6F200B7C1F7FAFD8211E98F2098F0 /* SZTextView.xcconfig */; + baseConfigurationReference = 8011E27165BDEAD5C2950F03382DA603 /* TDOAuth.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -6960,14 +7089,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SZTextView/SZTextView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SZTextView/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TDOAuth/TDOAuth-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TDOAuth/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/SZTextView/SZTextView.modulemap"; + MODULEMAP_FILE = "Target Support Files/TDOAuth/TDOAuth.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SZTextView; + PRODUCT_NAME = TDOAuth; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -6976,9 +7105,9 @@ }; name = Debug; }; - 0B93BE6865B15D3029764BCD8DE934AA /* Release */ = { + 16135925D6A0D4C37F097241E1526037 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15AD98A7601BF79DE9032118EE3C41BD /* TTTAttributedLabel.xcconfig */; + baseConfigurationReference = C20254DBFECE990B5F190DF8569224C1 /* libPhoneNumber-iOS.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -6995,14 +7124,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TTTAttributedLabel/TTTAttributedLabel-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TTTAttributedLabel/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/libPhoneNumber-iOS/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/TTTAttributedLabel/TTTAttributedLabel.modulemap"; + MODULEMAP_FILE = "Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TTTAttributedLabel; + PRODUCT_NAME = libPhoneNumber_iOS; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7011,9 +7140,44 @@ }; name = Release; }; - 0BECF510ECFCEF5B0846945F99A4D1CB /* Release */ = { + 18C7B412E0CE4EB72A1A90F83FA19CF5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DDBF987FC8DAAE03804FF9AF0E7168CC /* UICKeyChainStore.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + EXPANDED_CODE_SIGN_IDENTITY = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/UICKeyChainStore/UICKeyChainStore-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UICKeyChainStore/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/UICKeyChainStore/UICKeyChainStore.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = UICKeyChainStore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 1C6F9720BCB16A39E3A70F5542204BF2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E2C4C7CBCEC4F8CCD8171161D1654AFC /* TWMessageBarManager.xcconfig */; + baseConfigurationReference = 8D94CB6453D8F950949762EFB1C78A23 /* Pods-Jasonette.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7030,14 +7194,18 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TWMessageBarManager/TWMessageBarManager-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TWMessageBarManager/Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Jasonette/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/TWMessageBarManager/TWMessageBarManager.modulemap"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Jasonette/Pods-Jasonette.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TWMessageBarManager; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Jasonette; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7046,9 +7214,9 @@ }; name = Release; }; - 16135925D6A0D4C37F097241E1526037 /* Release */ = { + 1E890636442645097ACE2A2AAC54C131 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6F66A7C0E4211844C41D9B03124EF12 /* libPhoneNumber-iOS.xcconfig */; + baseConfigurationReference = F9BD07D24EA910E09C8AAADF07C1D9C8 /* PHFComposeBarView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7065,14 +7233,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/libPhoneNumber-iOS/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/PHFComposeBarView/PHFComposeBarView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/PHFComposeBarView/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/libPhoneNumber-iOS/libPhoneNumber-iOS.modulemap"; + MODULEMAP_FILE = "Target Support Files/PHFComposeBarView/PHFComposeBarView.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = libPhoneNumber_iOS; + PRODUCT_NAME = PHFComposeBarView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7081,9 +7249,9 @@ }; name = Release; }; - 1D0A6E4B72DC3A99B5CA0F2AE00D20F7 /* Debug */ = { + 1F3DBCD6B9342B7EC368BD8009A69067 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 132CBD8039AB22A1AB13B5561670BBE0 /* Pods-Jasonette.debug.xcconfig */; + baseConfigurationReference = 4FDC5F8B24D28D85DDE3ACE4AF17B831 /* HMSegmentedControl.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7092,7 +7260,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7100,29 +7268,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-Jasonette/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/HMSegmentedControl/HMSegmentedControl-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/HMSegmentedControl/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Jasonette/Pods-Jasonette.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Jasonette; + MODULEMAP_FILE = "Target Support Files/HMSegmentedControl/HMSegmentedControl.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = HMSegmentedControl; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 1E890636442645097ACE2A2AAC54C131 /* Release */ = { + 208C94535AD90BA45DD59E7E1571E0AA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A1666E3A5115BBE7B34F0BC70139A82 /* PHFComposeBarView.xcconfig */; + baseConfigurationReference = 6C8C5E2E6C3BD68E4E90F976CEB63B4C /* SocketRocket.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7139,14 +7303,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/PHFComposeBarView/PHFComposeBarView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/PHFComposeBarView/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SocketRocket/SocketRocket-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SocketRocket/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/PHFComposeBarView/PHFComposeBarView.modulemap"; + MODULEMAP_FILE = "Target Support Files/SocketRocket/SocketRocket.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = PHFComposeBarView; + PRODUCT_NAME = SocketRocket; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7155,9 +7319,9 @@ }; name = Release; }; - 1F3DBCD6B9342B7EC368BD8009A69067 /* Release */ = { + 2927B7EF2D39A6A3F99F9238625EB649 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 24D783A978FD06046E6EE613104BBFF8 /* HMSegmentedControl.xcconfig */; + baseConfigurationReference = 2589EB1541CB9624374C36FFC2C134D0 /* IQAudioRecorderController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7174,14 +7338,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/HMSegmentedControl/HMSegmentedControl-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/HMSegmentedControl/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/IQAudioRecorderController/IQAudioRecorderController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/IQAudioRecorderController/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/HMSegmentedControl/HMSegmentedControl.modulemap"; + MODULEMAP_FILE = "Target Support Files/IQAudioRecorderController/IQAudioRecorderController.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = HMSegmentedControl; + PRODUCT_NAME = IQAudioRecorderController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7190,9 +7354,9 @@ }; name = Release; }; - 283B2D1D9A7F66C4C879A51C336546A8 /* Debug */ = { + 2A7FDEC975C93C2A68417D9AD75E200E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A0C0F6620CE74DB6BBC2248445D2DCE /* TDOAuth.xcconfig */; + baseConfigurationReference = 6821E29DA867FF0B2A67710FEFFA0830 /* LTHPasscodeViewController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7209,14 +7373,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TDOAuth/TDOAuth-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TDOAuth/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/LTHPasscodeViewController/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/TDOAuth/TDOAuth.modulemap"; + MODULEMAP_FILE = "Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = TDOAuth; + PRODUCT_NAME = LTHPasscodeViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7225,9 +7389,9 @@ }; name = Debug; }; - 2927B7EF2D39A6A3F99F9238625EB649 /* Release */ = { + 2BA415058CE666F9A75EAF03853760DB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBC056F6C050B9A6A4CFF615938B62B0 /* IQAudioRecorderController.xcconfig */; + baseConfigurationReference = 2727907CCE3FA95D64310F86D4EC3C0C /* TWMessageBarManager.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7244,25 +7408,60 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/IQAudioRecorderController/IQAudioRecorderController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/IQAudioRecorderController/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TWMessageBarManager/TWMessageBarManager-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TWMessageBarManager/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/TWMessageBarManager/TWMessageBarManager.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = TWMessageBarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 2E281951020D144B4B5C245EA5B63883 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9BF25E92F5B16C19D47C63220BDB8722 /* DAKeyboardControl.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + EXPANDED_CODE_SIGN_IDENTITY = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/DAKeyboardControl/DAKeyboardControl-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DAKeyboardControl/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/IQAudioRecorderController/IQAudioRecorderController.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = IQAudioRecorderController; + MODULEMAP_FILE = "Target Support Files/DAKeyboardControl/DAKeyboardControl.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = DAKeyboardControl; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 2E281951020D144B4B5C245EA5B63883 /* Debug */ = { + 2F5C3447F03A64CACBA62BC76C9645A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D1DC99BA66E71030F29ED84A229C7426 /* DAKeyboardControl.xcconfig */; + baseConfigurationReference = 0A9D4D1C84F647FF9C12D7E78C4B2C22 /* SDWebImage.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7271,7 +7470,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7279,21 +7478,21 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/DAKeyboardControl/DAKeyboardControl-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DAKeyboardControl/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SDWebImage/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/DAKeyboardControl/DAKeyboardControl.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = DAKeyboardControl; + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SDWebImage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; 34FE9531DA9AF2820790339988D5FF41 /* Release */ = { isa = XCBuildConfiguration; @@ -7339,9 +7538,9 @@ }; name = Release; }; - 35565C18CB9ADF02D2D7F0E0E01E5E6B /* Release */ = { + 391BB0EF6E979D14F4524D978791360E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A0C0F6620CE74DB6BBC2248445D2DCE /* TDOAuth.xcconfig */; + baseConfigurationReference = A45F765165229B44FE6A4E21E7F03827 /* NSHash.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7358,14 +7557,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TDOAuth/TDOAuth-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TDOAuth/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/NSHash/NSHash-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/NSHash/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/TDOAuth/TDOAuth.modulemap"; + MODULEMAP_FILE = "Target Support Files/NSHash/NSHash.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TDOAuth; + PRODUCT_NAME = NSHash; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7374,9 +7573,9 @@ }; name = Release; }; - 391BB0EF6E979D14F4524D978791360E /* Release */ = { + 3BD8173899CA954D94B59AA97EB5F87C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D62F72130DA5FB0010644C5E51B4E81 /* NSHash.xcconfig */; + baseConfigurationReference = 85C23800018D25D157D61484A002149E /* NSGIF.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7385,7 +7584,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7393,25 +7592,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/NSHash/NSHash-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/NSHash/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/NSGIF/NSGIF-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/NSGIF/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/NSHash/NSHash.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = NSHash; + MODULEMAP_FILE = "Target Support Files/NSGIF/NSGIF.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = NSGIF; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 3BD8173899CA954D94B59AA97EB5F87C /* Debug */ = { + 415D472C84CB5199C098DBF799EE3480 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70C57ABA10C903C6FA0C97A236DBA0A1 /* NSGIF.xcconfig */; + baseConfigurationReference = 9075860B3815AC010D330804A0A573A2 /* SZTextView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7428,14 +7627,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/NSGIF/NSGIF-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/NSGIF/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SZTextView/SZTextView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SZTextView/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/NSGIF/NSGIF.modulemap"; + MODULEMAP_FILE = "Target Support Files/SZTextView/SZTextView.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = NSGIF; + PRODUCT_NAME = SZTextView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7446,7 +7645,7 @@ }; 41B63DB1AF03BBE0C8C400AA07192F9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 24D783A978FD06046E6EE613104BBFF8 /* HMSegmentedControl.xcconfig */; + baseConfigurationReference = 4FDC5F8B24D28D85DDE3ACE4AF17B831 /* HMSegmentedControl.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7481,7 +7680,7 @@ }; 422A0C8525961050F9019930BB7EEACD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89F70EA775E359EE4B7B043E871EBEB7 /* AFNetworking.xcconfig */; + baseConfigurationReference = 3F969855692D534905BAFB22862D5DCC /* AFNetworking.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7516,7 +7715,7 @@ }; 44ECC34D2BC5A63C7A23601F96B6B11A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70C57ABA10C903C6FA0C97A236DBA0A1 /* NSGIF.xcconfig */; + baseConfigurationReference = 85C23800018D25D157D61484A002149E /* NSGIF.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7551,7 +7750,7 @@ }; 46D288AB6010015D804DAA52DCCDD245 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B81C859114714EAAFA5510C534E1947D /* FLEX.xcconfig */; + baseConfigurationReference = 313962AC8D063DCBC1D1835604DF5E48 /* FLEX.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7586,7 +7785,7 @@ }; 485B48355E69B60B60B8EDFF5340245E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBC056F6C050B9A6A4CFF615938B62B0 /* IQAudioRecorderController.xcconfig */; + baseConfigurationReference = 2589EB1541CB9624374C36FFC2C134D0 /* IQAudioRecorderController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7619,9 +7818,9 @@ }; name = Debug; }; - 50B9DCF366EF3FF69E0916E75C2CFC62 /* Release */ = { + 4C87877969865C4597C301E0CD1B9DB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 556377BE586B30F75EAB70F380FA8524 /* SWTableViewCell.xcconfig */; + baseConfigurationReference = 7CCD9D60DEA54BB8CD99988B32D4E418 /* SWFrameButton.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7630,7 +7829,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7638,25 +7837,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SWTableViewCell/SWTableViewCell-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SWTableViewCell/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SWFrameButton/SWFrameButton-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SWFrameButton/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/SWTableViewCell/SWTableViewCell.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SWTableViewCell; + MODULEMAP_FILE = "Target Support Files/SWFrameButton/SWFrameButton.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = SWFrameButton; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 54208AB9DF37FBA6932C2655BBF3B722 /* Debug */ = { + 5446375F8F4870AC8A25F47C2C64AA7C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15AD98A7601BF79DE9032118EE3C41BD /* TTTAttributedLabel.xcconfig */; + baseConfigurationReference = 8011E27165BDEAD5C2950F03382DA603 /* TDOAuth.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7665,7 +7864,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7673,25 +7872,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TTTAttributedLabel/TTTAttributedLabel-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TTTAttributedLabel/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TDOAuth/TDOAuth-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TDOAuth/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/TTTAttributedLabel/TTTAttributedLabel.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = TTTAttributedLabel; + MODULEMAP_FILE = "Target Support Files/TDOAuth/TDOAuth.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = TDOAuth; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; 56632CA2EE0B016A55188FE5D2DD0FE6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B890BDB0CF573A2D22AA397765D0DA9 /* AHKActionSheet.xcconfig */; + baseConfigurationReference = 5BBF1A1DC3395406A18DCB8D4E729576 /* AHKActionSheet.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7724,9 +7923,9 @@ }; name = Release; }; - 58915EF80C9836C9679B8FC9142544D1 /* Release */ = { + 59158E9ADE91C833D9FF79274F9049E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4D6CFAFC836ED3B96DB9E711B8F335E5 /* REMenu.xcconfig */; + baseConfigurationReference = 313962AC8D063DCBC1D1835604DF5E48 /* FLEX.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7743,14 +7942,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/REMenu/REMenu-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/REMenu/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/FLEX/FLEX-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FLEX/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/REMenu/REMenu.modulemap"; + MODULEMAP_FILE = "Target Support Files/FLEX/FLEX.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = REMenu; + PRODUCT_NAME = FLEX; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7759,9 +7958,9 @@ }; name = Release; }; - 59158E9ADE91C833D9FF79274F9049E9 /* Release */ = { + 5DE4FDD7B1A7D477A17E557B4D9802B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B81C859114714EAAFA5510C534E1947D /* FLEX.xcconfig */; + baseConfigurationReference = 5D1823A50EBBD1FDCB55D891A94A567D /* RMActionController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7770,7 +7969,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7778,25 +7977,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FLEX/FLEX-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FLEX/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/RMActionController/RMActionController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RMActionController/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/FLEX/FLEX.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = FLEX; + MODULEMAP_FILE = "Target Support Files/RMActionController/RMActionController.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = RMActionController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 5AD140944B216A2302A6343F7ECF24D5 /* Release */ = { + 5F2FF1CCA07B4A5C97A49A60CA053814 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9115628985DF424176D95B62BF9257AF /* SBJson.xcconfig */; + baseConfigurationReference = 9125EF612DB308ED314686BAFA49024B /* DHSmartScreenshot.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7813,14 +8012,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SBJson/SBJson-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SBJson/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/DHSmartScreenshot/DHSmartScreenshot-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DHSmartScreenshot/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/SBJson/SBJson.modulemap"; + MODULEMAP_FILE = "Target Support Files/DHSmartScreenshot/DHSmartScreenshot.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SBJson; + PRODUCT_NAME = DHSmartScreenshot; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7829,9 +8028,9 @@ }; name = Release; }; - 5F2FF1CCA07B4A5C97A49A60CA053814 /* Release */ = { + 5FAEEBE369EE5F47AD877044B8CEC741 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC7B54763AD7B027EC78B4C54FFF5F8B /* DHSmartScreenshot.xcconfig */; + baseConfigurationReference = A6DEA404069AD956556FD668F12516F3 /* DTCoreText.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7840,7 +8039,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -7848,25 +8047,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/DHSmartScreenshot/DHSmartScreenshot-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DHSmartScreenshot/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/DTCoreText/DTCoreText-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DTCoreText/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/DHSmartScreenshot/DHSmartScreenshot.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = DHSmartScreenshot; + MODULEMAP_FILE = "Target Support Files/DTCoreText/DTCoreText.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = DTCoreText; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 5FAEEBE369EE5F47AD877044B8CEC741 /* Debug */ = { + 5FF5A63530EE5FF8997DD0F470BF3988 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C1B791E3A38247817B16AEB76D29A43 /* DTCoreText.xcconfig */; + baseConfigurationReference = 5013707F6E5C2FACE8D34360174F5063 /* REMenu.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7883,14 +8082,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/DTCoreText/DTCoreText-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DTCoreText/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/REMenu/REMenu-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/REMenu/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/DTCoreText/DTCoreText.modulemap"; + MODULEMAP_FILE = "Target Support Files/REMenu/REMenu.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = DTCoreText; + PRODUCT_NAME = REMenu; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7901,7 +8100,7 @@ }; 64E79B8330AF3B31D98A87DAEBCC64CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B890BDB0CF573A2D22AA397765D0DA9 /* AHKActionSheet.xcconfig */; + baseConfigurationReference = 5BBF1A1DC3395406A18DCB8D4E729576 /* AHKActionSheet.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7936,7 +8135,7 @@ }; 698B6B2EA28F5B9D94E0B66EBA279832 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D1DC99BA66E71030F29ED84A229C7426 /* DAKeyboardControl.xcconfig */; + baseConfigurationReference = 9BF25E92F5B16C19D47C63220BDB8722 /* DAKeyboardControl.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -7971,7 +8170,7 @@ }; 6A9EAFD865F54E0D3CFCFF36CFBD0F42 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A1666E3A5115BBE7B34F0BC70139A82 /* PHFComposeBarView.xcconfig */; + baseConfigurationReference = F9BD07D24EA910E09C8AAADF07C1D9C8 /* PHFComposeBarView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8006,7 +8205,7 @@ }; 6B24A02873AEA5D38988FD6B84C38FEC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC7B54763AD7B027EC78B4C54FFF5F8B /* DHSmartScreenshot.xcconfig */; + baseConfigurationReference = 9125EF612DB308ED314686BAFA49024B /* DHSmartScreenshot.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8039,44 +8238,9 @@ }; name = Debug; }; - 6BE93AE0148258A4A819EAD1E50FAB63 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 55406DBE66FE1FEE34DE9ED35DB9B164 /* RMDateSelectionViewController.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_REQUIRED = NO; - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - 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; - EXPANDED_CODE_SIGN_IDENTITY = ""; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RMDateSelectionViewController/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/RMDateSelectionViewController/RMDateSelectionViewController.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = RMDateSelectionViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 70EFA119949434BF5A40F7658F0E2640 /* Debug */ = { + 7032355F4A8AD889E8377628B2B47D2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C253CE3C4A37FA076B9CCEA3C53AF1F /* SDWebImage.xcconfig */; + baseConfigurationReference = 27CA565701F5D8BFB1CC843747490269 /* TTTAttributedLabel.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8093,95 +8257,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SDWebImage/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/SDWebImage/SDWebImage.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 73143992F06C086286E3F2DEEFD3E56D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A6747A1839A074695EC82680B73A704D /* RMActionController.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_REQUIRED = NO; - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - 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; - EXPANDED_CODE_SIGN_IDENTITY = ""; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/RMActionController/RMActionController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RMActionController/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/RMActionController/RMActionController.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = RMActionController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 76970F9A35E7495979FA0201D572FFCE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B836D1C3D2427C173AE9C7B69457D85B /* INTULocationManager.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_REQUIRED = NO; - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - 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; - EXPANDED_CODE_SIGN_IDENTITY = ""; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/INTULocationManager/INTULocationManager-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/INTULocationManager/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TTTAttributedLabel/TTTAttributedLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TTTAttributedLabel/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/INTULocationManager/INTULocationManager.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = INTULocationManager; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/TTTAttributedLabel/TTTAttributedLabel.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = TTTAttributedLabel; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 781BD333E443BCE75036F581F82FBC1B /* Release */ = { + 71E72AE70CD6E49D153121F3FD8CA0F3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1AB42506F99F10F05F55CF245549C21 /* MBProgressHUD.xcconfig */; + baseConfigurationReference = 132CBD8039AB22A1AB13B5561670BBE0 /* Pods-Jasonette.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8190,7 +8284,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -8198,25 +8292,29 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/MBProgressHUD/Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Jasonette/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/MBProgressHUD/MBProgressHUD.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = MBProgressHUD; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Jasonette/Pods-Jasonette.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Jasonette; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 782369588789EFE4D5D86CB04272387C /* Release */ = { + 76970F9A35E7495979FA0201D572FFCE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B02164BA2FE1F57D804FD9C7CCAEA9E7 /* DTFoundation.xcconfig */; + baseConfigurationReference = 301B750AA42773362113D91FE5674112 /* INTULocationManager.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8233,14 +8331,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/DTFoundation/DTFoundation-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DTFoundation/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/INTULocationManager/INTULocationManager-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/INTULocationManager/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/DTFoundation/DTFoundation.modulemap"; + MODULEMAP_FILE = "Target Support Files/INTULocationManager/INTULocationManager.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = DTFoundation; + PRODUCT_NAME = INTULocationManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8249,9 +8347,9 @@ }; name = Release; }; - 79CB5029A949F9509D4D5BF814272A3D /* Release */ = { + 781BD333E443BCE75036F581F82FBC1B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F89623B2D19F7305130DD825BB18353 /* SWFrameButton.xcconfig */; + baseConfigurationReference = E90E238562876143893C530D7D0A72BB /* MBProgressHUD.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8268,14 +8366,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SWFrameButton/SWFrameButton-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SWFrameButton/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/MBProgressHUD/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/SWFrameButton/SWFrameButton.modulemap"; + MODULEMAP_FILE = "Target Support Files/MBProgressHUD/MBProgressHUD.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SWFrameButton; + PRODUCT_NAME = MBProgressHUD; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8284,9 +8382,9 @@ }; name = Release; }; - 7B99B0986AA7CD280E58EC4B614E4235 /* Release */ = { + 782369588789EFE4D5D86CB04272387C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5EBA48F01C00EFFBEBA2824CA0E5AEE /* OMGHTTPURLRQ.xcconfig */; + baseConfigurationReference = 6C9D99CF7A918A230EC90B661F04479B /* DTFoundation.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8303,14 +8401,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/OMGHTTPURLRQ/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/DTFoundation/DTFoundation-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DTFoundation/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/OMGHTTPURLRQ/OMGHTTPURLRQ.modulemap"; + MODULEMAP_FILE = "Target Support Files/DTFoundation/DTFoundation.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = OMGHTTPURLRQ; + PRODUCT_NAME = DTFoundation; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8319,9 +8417,9 @@ }; name = Release; }; - 7BC3C23641EEED88D07E28E8FC6C4515 /* Debug */ = { + 7B99B0986AA7CD280E58EC4B614E4235 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 556377BE586B30F75EAB70F380FA8524 /* SWTableViewCell.xcconfig */; + baseConfigurationReference = 798C34BCFB56D5729118F56754D55AD8 /* OMGHTTPURLRQ.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8330,7 +8428,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -8338,25 +8436,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SWTableViewCell/SWTableViewCell-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SWTableViewCell/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/OMGHTTPURLRQ/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/SWTableViewCell/SWTableViewCell.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SWTableViewCell; + MODULEMAP_FILE = "Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = OMGHTTPURLRQ; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; 80C29F1B7BE48E5BBF833CA02C1ECBA2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C7D7A5CB8757D7E775CBCD5252CB541 /* BBBadgeBarButtonItem.xcconfig */; + baseConfigurationReference = 5BCD45784DF8550AAB0DD6DB67BFE3DE /* BBBadgeBarButtonItem.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8391,7 +8489,7 @@ }; 84C5A68B3C52423854082AB194F918B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C1B791E3A38247817B16AEB76D29A43 /* DTCoreText.xcconfig */; + baseConfigurationReference = A6DEA404069AD956556FD668F12516F3 /* DTCoreText.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8426,7 +8524,7 @@ }; 889B5952EE777588FC36C7375EBD690B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 115407352E7C9A00474354765D0ED9CC /* JDStatusBarNotification.xcconfig */; + baseConfigurationReference = C59C9AA16397388F13A2C79A799D42D8 /* JDStatusBarNotification.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8459,9 +8557,9 @@ }; name = Release; }; - 891E2C27298BC77DAA0A5F1487AEA0B3 /* Release */ = { + 8AA0C66011EA471B30F493FB2FC08814 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F0D2869601925785C3D64F6BE1C53D11 /* UICKeyChainStore.xcconfig */; + baseConfigurationReference = 4AFEB6C702C25BD126FF9644049E318C /* JSCoreBom.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8478,14 +8576,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/UICKeyChainStore/UICKeyChainStore-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/UICKeyChainStore/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/JSCoreBom/JSCoreBom-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/JSCoreBom/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/UICKeyChainStore/UICKeyChainStore.modulemap"; + MODULEMAP_FILE = "Target Support Files/JSCoreBom/JSCoreBom.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = UICKeyChainStore; + PRODUCT_NAME = JSCoreBom; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8494,9 +8592,9 @@ }; name = Release; }; - 8A22A314D8BF95686210FAC7A85975B0 /* Debug */ = { + 9169400FE43B69B3F59480305392AC27 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F89623B2D19F7305130DD825BB18353 /* SWFrameButton.xcconfig */; + baseConfigurationReference = 997638DBD299FE77041713720E657263 /* RMDateSelectionViewController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8513,14 +8611,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SWFrameButton/SWFrameButton-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SWFrameButton/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RMDateSelectionViewController/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/SWFrameButton/SWFrameButton.modulemap"; + MODULEMAP_FILE = "Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SWFrameButton; + PRODUCT_NAME = RMDateSelectionViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8529,9 +8627,9 @@ }; name = Debug; }; - 8AA0C66011EA471B30F493FB2FC08814 /* Release */ = { + 922E10CCB6581CCC4385D8E604240B77 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63F96CD01E23F8C4EBAADB24E8567110 /* JSCoreBom.xcconfig */; + baseConfigurationReference = C05622BF2183E6AC4F857F315E496411 /* SBJson.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8548,14 +8646,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/JSCoreBom/JSCoreBom-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/JSCoreBom/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SBJson/SBJson-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SBJson/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/JSCoreBom/JSCoreBom.modulemap"; + MODULEMAP_FILE = "Target Support Files/SBJson/SBJson.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = JSCoreBom; + PRODUCT_NAME = SBJson; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8564,9 +8662,9 @@ }; name = Release; }; - 8F92D71ABFA0149DB065261A8D1ADEDD /* Debug */ = { + 950E8DD1829BE52C6C56A14AEE9297BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9115628985DF424176D95B62BF9257AF /* SBJson.xcconfig */; + baseConfigurationReference = C05622BF2183E6AC4F857F315E496411 /* SBJson.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8599,44 +8697,9 @@ }; name = Debug; }; - 93837A9C09ADBEB5247E9131296AF147 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A6747A1839A074695EC82680B73A704D /* RMActionController.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_REQUIRED = NO; - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - 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; - EXPANDED_CODE_SIGN_IDENTITY = ""; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/RMActionController/RMActionController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RMActionController/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/RMActionController/RMActionController.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = RMActionController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 99767DB7FFF5CADAFBA639A13A9A3052 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AB8EE900429EFAD412550DE153BD128 /* SCSiriWaveformView.xcconfig */; + baseConfigurationReference = CD2DEDB637B163334DB7D5DBC67B5D91 /* SCSiriWaveformView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8671,7 +8734,7 @@ }; 9AF2345CCE2B5ADB92EACF6B5093C515 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 57B62A04F13D288D076C68A79C6391C0 /* PHFDelegateChain.xcconfig */; + baseConfigurationReference = 357383252906A72BAFBB345894558400 /* PHFDelegateChain.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8706,7 +8769,7 @@ }; 9ECDCC7AD6034CCFB7E829F7DE482CF6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 183D684EA39FFD04AE9CDCC63D54F89E /* AFOAuth2Manager.xcconfig */; + baseConfigurationReference = 12351F6D22B6F911A34F3E8D380B83BE /* AFOAuth2Manager.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8739,9 +8802,9 @@ }; name = Release; }; - A3A6B7F88DCFAD45D315594DF9A9C9F3 /* Release */ = { + A2CA7143E15C63437438B6B1EC693243 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C253CE3C4A37FA076B9CCEA3C53AF1F /* SDWebImage.xcconfig */; + baseConfigurationReference = 997638DBD299FE77041713720E657263 /* RMDateSelectionViewController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8758,14 +8821,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SDWebImage/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RMDateSelectionViewController/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/SDWebImage/SDWebImage.modulemap"; + MODULEMAP_FILE = "Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SDWebImage; + PRODUCT_NAME = RMDateSelectionViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8776,7 +8839,7 @@ }; A5558AEDD9E1834B30DD9ADFD3125449 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 115407352E7C9A00474354765D0ED9CC /* JDStatusBarNotification.xcconfig */; + baseConfigurationReference = C59C9AA16397388F13A2C79A799D42D8 /* JDStatusBarNotification.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8809,9 +8872,9 @@ }; name = Debug; }; - A647F427F1F9C7A67D9753332EF527BA /* Release */ = { + A7406628AE86057404B3C300F0A5D9D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8D94CB6453D8F950949762EFB1C78A23 /* Pods-Jasonette.release.xcconfig */; + baseConfigurationReference = 38DF96E0B7BE46090EFAE8DCF15B3E5B /* Reachability.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8820,7 +8883,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -8828,29 +8891,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-Jasonette/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Reachability/Reachability-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Reachability/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Jasonette/Pods-Jasonette.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Jasonette; + MODULEMAP_FILE = "Target Support Files/Reachability/Reachability.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Reachability; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - A7406628AE86057404B3C300F0A5D9D4 /* Debug */ = { + A9D60619DB72F52D3AF899C2610721CC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F2A3FF0AF245DEB4D1FE034076FDDFF /* Reachability.xcconfig */; + baseConfigurationReference = 6C9D99CF7A918A230EC90B661F04479B /* DTFoundation.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8867,14 +8926,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Reachability/Reachability-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Reachability/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/DTFoundation/DTFoundation-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DTFoundation/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/Reachability/Reachability.modulemap"; + MODULEMAP_FILE = "Target Support Files/DTFoundation/DTFoundation.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = Reachability; + PRODUCT_NAME = DTFoundation; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8883,9 +8942,9 @@ }; name = Debug; }; - A9D60619DB72F52D3AF899C2610721CC /* Debug */ = { + AADC89B82EFD3F170FEA26524163210D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B02164BA2FE1F57D804FD9C7CCAEA9E7 /* DTFoundation.xcconfig */; + baseConfigurationReference = DDBF987FC8DAAE03804FF9AF0E7168CC /* UICKeyChainStore.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8894,7 +8953,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -8902,25 +8961,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/DTFoundation/DTFoundation-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/DTFoundation/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/UICKeyChainStore/UICKeyChainStore-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UICKeyChainStore/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/DTFoundation/DTFoundation.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = DTFoundation; + MODULEMAP_FILE = "Target Support Files/UICKeyChainStore/UICKeyChainStore.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = UICKeyChainStore; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; B1A83747370573F3F8668561C514B94D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5BFC1EB32AE6E368BEF8E4C844FCCAE /* CYRTextView.xcconfig */; + baseConfigurationReference = 31D15B14A2E200202AE6ECA04232D10E /* CYRTextView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8953,9 +9012,9 @@ }; name = Debug; }; - B401EBB34F88767F4A9C932AE764B4F3 /* Debug */ = { + B3A5ADDAE0781C99B03541C528F4D6FF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6880352DF326EFEA2022BF3B98EA7DD1 /* APAddressBook.xcconfig */; + baseConfigurationReference = 6C8C5E2E6C3BD68E4E90F976CEB63B4C /* SocketRocket.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -8972,14 +9031,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/APAddressBook/APAddressBook-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/APAddressBook/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SocketRocket/SocketRocket-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SocketRocket/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/APAddressBook/APAddressBook.modulemap"; + MODULEMAP_FILE = "Target Support Files/SocketRocket/SocketRocket.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = APAddressBook; + PRODUCT_NAME = SocketRocket; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8988,9 +9047,9 @@ }; name = Debug; }; - B4F3F1CE3ECE65C71B1575F377A9D1A1 /* Debug */ = { + B401EBB34F88767F4A9C932AE764B4F3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B836D1C3D2427C173AE9C7B69457D85B /* INTULocationManager.xcconfig */; + baseConfigurationReference = FC29ADB4D94CCA5D79D4FF34E96DA11B /* APAddressBook.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9007,14 +9066,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/INTULocationManager/INTULocationManager-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/INTULocationManager/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/APAddressBook/APAddressBook-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/APAddressBook/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/INTULocationManager/INTULocationManager.modulemap"; + MODULEMAP_FILE = "Target Support Files/APAddressBook/APAddressBook.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = INTULocationManager; + PRODUCT_NAME = APAddressBook; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9023,9 +9082,9 @@ }; name = Debug; }; - C00CFA3A9ED41665A2C4036C1DD2C08B /* Debug */ = { + B4F3F1CE3ECE65C71B1575F377A9D1A1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 55406DBE66FE1FEE34DE9ED35DB9B164 /* RMDateSelectionViewController.xcconfig */; + baseConfigurationReference = 301B750AA42773362113D91FE5674112 /* INTULocationManager.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9042,14 +9101,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/RMDateSelectionViewController/RMDateSelectionViewController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RMDateSelectionViewController/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/INTULocationManager/INTULocationManager-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/INTULocationManager/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/RMDateSelectionViewController/RMDateSelectionViewController.modulemap"; + MODULEMAP_FILE = "Target Support Files/INTULocationManager/INTULocationManager.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = RMDateSelectionViewController; + PRODUCT_NAME = INTULocationManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9106,9 +9165,9 @@ }; name = Debug; }; - C3D88E11F482840968BA671F12C79CBE /* Debug */ = { + C3F734091681822A1BF0BB1D804C3B95 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F0D2869601925785C3D64F6BE1C53D11 /* UICKeyChainStore.xcconfig */; + baseConfigurationReference = 2727907CCE3FA95D64310F86D4EC3C0C /* TWMessageBarManager.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9125,14 +9184,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/UICKeyChainStore/UICKeyChainStore-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/UICKeyChainStore/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TWMessageBarManager/TWMessageBarManager-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TWMessageBarManager/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/UICKeyChainStore/UICKeyChainStore.modulemap"; + MODULEMAP_FILE = "Target Support Files/TWMessageBarManager/TWMessageBarManager.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = UICKeyChainStore; + PRODUCT_NAME = TWMessageBarManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9143,7 +9202,7 @@ }; C44F0AC4E76F63C7F567CF0666384F5F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D62F72130DA5FB0010644C5E51B4E81 /* NSHash.xcconfig */; + baseConfigurationReference = A45F765165229B44FE6A4E21E7F03827 /* NSHash.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9176,9 +9235,9 @@ }; name = Debug; }; - C4EF6DD694519FD399301051FBE2623E /* Release */ = { + C67D8809EDEB3B716B5EABCE47AF26AD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DE6F200B7C1F7FAFD8211E98F2098F0 /* SZTextView.xcconfig */; + baseConfigurationReference = 5BCD45784DF8550AAB0DD6DB67BFE3DE /* BBBadgeBarButtonItem.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9195,25 +9254,60 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SZTextView/SZTextView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SZTextView/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/BBBadgeBarButtonItem/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/SZTextView/SZTextView.modulemap"; + MODULEMAP_FILE = "Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SZTextView; + PRODUCT_NAME = BBBadgeBarButtonItem; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + CCB9235ADB66B2DD244ABE810D1720DD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 798C34BCFB56D5729118F56754D55AD8 /* OMGHTTPURLRQ.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + EXPANDED_CODE_SIGN_IDENTITY = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/OMGHTTPURLRQ/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/OMGHTTPURLRQ/OMGHTTPURLRQ.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = OMGHTTPURLRQ; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - C67D8809EDEB3B716B5EABCE47AF26AD /* Release */ = { + CDF51F37A7A4804A7D179A61A3B6255B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C7D7A5CB8757D7E775CBCD5252CB541 /* BBBadgeBarButtonItem.xcconfig */; + baseConfigurationReference = 9075860B3815AC010D330804A0A573A2 /* SZTextView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9230,14 +9324,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/BBBadgeBarButtonItem/BBBadgeBarButtonItem-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/BBBadgeBarButtonItem/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SZTextView/SZTextView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SZTextView/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/BBBadgeBarButtonItem/BBBadgeBarButtonItem.modulemap"; + MODULEMAP_FILE = "Target Support Files/SZTextView/SZTextView.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = BBBadgeBarButtonItem; + PRODUCT_NAME = SZTextView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9246,9 +9340,9 @@ }; name = Release; }; - CCB9235ADB66B2DD244ABE810D1720DD /* Debug */ = { + CE381EBB5196E7E31765E4C1500E4BD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5EBA48F01C00EFFBEBA2824CA0E5AEE /* OMGHTTPURLRQ.xcconfig */; + baseConfigurationReference = 357383252906A72BAFBB345894558400 /* PHFDelegateChain.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9265,14 +9359,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/OMGHTTPURLRQ/OMGHTTPURLRQ-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/OMGHTTPURLRQ/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/PHFDelegateChain/PHFDelegateChain-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/PHFDelegateChain/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/OMGHTTPURLRQ/OMGHTTPURLRQ.modulemap"; + MODULEMAP_FILE = "Target Support Files/PHFDelegateChain/PHFDelegateChain.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = OMGHTTPURLRQ; + PRODUCT_NAME = PHFDelegateChain; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9281,9 +9375,9 @@ }; name = Debug; }; - CE381EBB5196E7E31765E4C1500E4BD9 /* Debug */ = { + D0AF9FB54BA329540BE3C63CB573583E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 57B62A04F13D288D076C68A79C6391C0 /* PHFDelegateChain.xcconfig */; + baseConfigurationReference = CD2DEDB637B163334DB7D5DBC67B5D91 /* SCSiriWaveformView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9300,14 +9394,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/PHFDelegateChain/PHFDelegateChain-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/PHFDelegateChain/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SCSiriWaveformView/SCSiriWaveformView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SCSiriWaveformView/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/PHFDelegateChain/PHFDelegateChain.modulemap"; + MODULEMAP_FILE = "Target Support Files/SCSiriWaveformView/SCSiriWaveformView.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = PHFDelegateChain; + PRODUCT_NAME = SCSiriWaveformView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9316,9 +9410,9 @@ }; name = Debug; }; - CF48AFE6C6FE03B93CE1B23183EF6534 /* Release */ = { + D554A466BE2F285796035D273162C781 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4432D1BC2191953F645EE0A6D0D451F7 /* SocketRocket.xcconfig */; + baseConfigurationReference = 5D1823A50EBBD1FDCB55D891A94A567D /* RMActionController.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9335,14 +9429,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SocketRocket/SocketRocket-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SocketRocket/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/RMActionController/RMActionController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RMActionController/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/SocketRocket/SocketRocket.modulemap"; + MODULEMAP_FILE = "Target Support Files/RMActionController/RMActionController.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SocketRocket; + PRODUCT_NAME = RMActionController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9351,9 +9445,9 @@ }; name = Release; }; - D0AF9FB54BA329540BE3C63CB573583E /* Debug */ = { + D59A243D2C03CA07D74462B55DD60C49 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AB8EE900429EFAD412550DE153BD128 /* SCSiriWaveformView.xcconfig */; + baseConfigurationReference = C20254DBFECE990B5F190DF8569224C1 /* libPhoneNumber-iOS.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9370,14 +9464,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SCSiriWaveformView/SCSiriWaveformView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SCSiriWaveformView/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/libPhoneNumber-iOS/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/SCSiriWaveformView/SCSiriWaveformView.modulemap"; + MODULEMAP_FILE = "Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SCSiriWaveformView; + PRODUCT_NAME = libPhoneNumber_iOS; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9386,9 +9480,9 @@ }; name = Debug; }; - D59A243D2C03CA07D74462B55DD60C49 /* Debug */ = { + D5BCC55A050F1F59E88426672B9020CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6F66A7C0E4211844C41D9B03124EF12 /* libPhoneNumber-iOS.xcconfig */; + baseConfigurationReference = 27CA565701F5D8BFB1CC843747490269 /* TTTAttributedLabel.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9397,7 +9491,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -9405,25 +9499,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/libPhoneNumber-iOS/libPhoneNumber-iOS-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/libPhoneNumber-iOS/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TTTAttributedLabel/TTTAttributedLabel-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TTTAttributedLabel/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/libPhoneNumber-iOS/libPhoneNumber-iOS.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = libPhoneNumber_iOS; + MODULEMAP_FILE = "Target Support Files/TTTAttributedLabel/TTTAttributedLabel.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = TTTAttributedLabel; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; DBD0D28D9706BD26C153E2FE8021470E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89F70EA775E359EE4B7B043E871EBEB7 /* AFNetworking.xcconfig */; + baseConfigurationReference = 3F969855692D534905BAFB22862D5DCC /* AFNetworking.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9458,7 +9552,7 @@ }; DE7624E6447A63ED7B5182E50B5B1F6B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 902E28B157DA3A8069732433544E3211 /* FreeStreamer.xcconfig */; + baseConfigurationReference = A49F1B1AD253B9DB9410C70AB3A1620A /* FreeStreamer.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9493,7 +9587,7 @@ }; DEB4AE4FD001B2CC2AD4C6C48327761E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5BFC1EB32AE6E368BEF8E4C844FCCAE /* CYRTextView.xcconfig */; + baseConfigurationReference = 31D15B14A2E200202AE6ECA04232D10E /* CYRTextView.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9526,9 +9620,79 @@ }; name = Release; }; + DEC2F1D5D3C1746A735F07852F69F8B4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 07949F7B287782EC782E9871C85CEC94 /* SWTableViewCell.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + EXPANDED_CODE_SIGN_IDENTITY = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SWTableViewCell/SWTableViewCell-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SWTableViewCell/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/SWTableViewCell/SWTableViewCell.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SWTableViewCell; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E2812E68130029B93CE4ECB26B6815B3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 07949F7B287782EC782E9871C85CEC94 /* SWTableViewCell.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + EXPANDED_CODE_SIGN_IDENTITY = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SWTableViewCell/SWTableViewCell-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SWTableViewCell/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/SWTableViewCell/SWTableViewCell.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = SWTableViewCell; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; E283DF020C535E91E09AC17CDD4EC964 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 183D684EA39FFD04AE9CDCC63D54F89E /* AFOAuth2Manager.xcconfig */; + baseConfigurationReference = 12351F6D22B6F911A34F3E8D380B83BE /* AFOAuth2Manager.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9563,7 +9727,7 @@ }; E9ECF78B46BF7A1564D5C90B6804C24B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 902E28B157DA3A8069732433544E3211 /* FreeStreamer.xcconfig */; + baseConfigurationReference = A49F1B1AD253B9DB9410C70AB3A1620A /* FreeStreamer.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9598,7 +9762,7 @@ }; EAF01ABDD0819CDE59D2B9D16A96E8C8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63F96CD01E23F8C4EBAADB24E8567110 /* JSCoreBom.xcconfig */; + baseConfigurationReference = 4AFEB6C702C25BD126FF9644049E318C /* JSCoreBom.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9631,9 +9795,9 @@ }; name = Debug; }; - F2B9883EA0699282D1089EC51FDDBC06 /* Debug */ = { + EFE4CAB7CEDEB37E0C54108C0D99655D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4432D1BC2191953F645EE0A6D0D451F7 /* SocketRocket.xcconfig */; + baseConfigurationReference = 0A9D4D1C84F647FF9C12D7E78C4B2C22 /* SDWebImage.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9650,14 +9814,14 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SocketRocket/SocketRocket-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SocketRocket/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SDWebImage/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/SocketRocket/SocketRocket.modulemap"; + MODULEMAP_FILE = "Target Support Files/SDWebImage/SDWebImage.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SocketRocket; + PRODUCT_NAME = SDWebImage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9666,9 +9830,9 @@ }; name = Debug; }; - F3B4273DAC13A50B846008264A605E79 /* Debug */ = { + F3FED9B898AF4233CEA57968ACED7789 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E2C4C7CBCEC4F8CCD8171161D1654AFC /* TWMessageBarManager.xcconfig */; + baseConfigurationReference = 7CCD9D60DEA54BB8CD99988B32D4E418 /* SWFrameButton.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9677,7 +9841,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -9685,25 +9849,25 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; EXPANDED_CODE_SIGN_IDENTITY = ""; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TWMessageBarManager/TWMessageBarManager-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TWMessageBarManager/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SWFrameButton/SWFrameButton-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SWFrameButton/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/TWMessageBarManager/TWMessageBarManager.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = TWMessageBarManager; + MODULEMAP_FILE = "Target Support Files/SWFrameButton/SWFrameButton.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SWFrameButton; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; F6FACD1FC6A13C82742357F303F85F85 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F2A3FF0AF245DEB4D1FE034076FDDFF /* Reachability.xcconfig */; + baseConfigurationReference = 38DF96E0B7BE46090EFAE8DCF15B3E5B /* Reachability.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9738,7 +9902,7 @@ }; F7BCC80EDBFDEACA84321572B2661A55 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1AB42506F99F10F05F55CF245549C21 /* MBProgressHUD.xcconfig */; + baseConfigurationReference = E90E238562876143893C530D7D0A72BB /* MBProgressHUD.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CODE_SIGNING_REQUIRED = NO; @@ -9771,6 +9935,41 @@ }; name = Debug; }; + FA0E2B63A35A503DC1ED7C677A5C2D1D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5013707F6E5C2FACE8D34360174F5063 /* REMenu.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + EXPANDED_CODE_SIGN_IDENTITY = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/REMenu/REMenu-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/REMenu/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/REMenu/REMenu.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = REMenu; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -9783,15 +9982,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 06600E3196A4D834E30BEA6F061DA5E0 /* Build configuration list for PBXNativeTarget "SZTextView" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0AB2B6AC694F68BDFB7F26475D98534F /* Debug */, - C4EF6DD694519FD399301051FBE2623E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 0CF89AF8A3F5CEAD9176DB28884CC520 /* Build configuration list for PBXNativeTarget "PHFDelegateChain" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9801,15 +9991,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D19B7C6FE9B5C3E92B443D2E9FA0205 /* Build configuration list for PBXNativeTarget "TTTAttributedLabel" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 54208AB9DF37FBA6932C2655BBF3B722 /* Debug */, - 0B93BE6865B15D3029764BCD8DE934AA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 0D3F24CD957D41B143DE94E9F3FFB2E2 /* Build configuration list for PBXNativeTarget "libPhoneNumber-iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9828,6 +10009,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 103284FF15EECB1AE9D4CE9A1A4E6E9D /* Build configuration list for PBXNativeTarget "SBJson" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 950E8DD1829BE52C6C56A14AEE9297BA /* Debug */, + 922E10CCB6581CCC4385D8E604240B77 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 16128F91BF64F2113F0979F03B0CCAE6 /* Build configuration list for PBXNativeTarget "DTCoreText" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9846,11 +10036,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1C252ADE22B852BD67BB5070F487E75A /* Build configuration list for PBXNativeTarget "RMDateSelectionViewController" */ = { + 1AA884AB46308436258A652294B8B4E8 /* Build configuration list for PBXNativeTarget "Pods-Jasonette" */ = { isa = XCConfigurationList; buildConfigurations = ( - C00CFA3A9ED41665A2C4036C1DD2C08B /* Debug */, - 6BE93AE0148258A4A819EAD1E50FAB63 /* Release */, + 71E72AE70CD6E49D153121F3FD8CA0F3 /* Debug */, + 1C6F9720BCB16A39E3A70F5542204BF2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9891,6 +10081,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 3575A2A1D344A7D5DF5F44851CF7AF89 /* Build configuration list for PBXNativeTarget "TTTAttributedLabel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7032355F4A8AD889E8377628B2B47D2C /* Debug */, + D5BCC55A050F1F59E88426672B9020CB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 46999213AAD19FF175F0884B2332B52F /* Build configuration list for PBXNativeTarget "OMGHTTPURLRQ" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9918,20 +10117,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 559D022745736D55F4A260DD1CD6D042 /* Build configuration list for PBXNativeTarget "TDOAuth" */ = { + 52510466BC5BCEFE9692CC1C0B68CFF7 /* Build configuration list for PBXNativeTarget "RMActionController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 283B2D1D9A7F66C4C879A51C336546A8 /* Debug */, - 35565C18CB9ADF02D2D7F0E0E01E5E6B /* Release */, + 5DE4FDD7B1A7D477A17E557B4D9802B1 /* Debug */, + D554A466BE2F285796035D273162C781 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 66532A522205DDF1DAC8D524B663CD3B /* Build configuration list for PBXNativeTarget "REMenu" */ = { + 56A8A9DB51297FB4204C75249202B229 /* Build configuration list for PBXNativeTarget "SWTableViewCell" */ = { isa = XCConfigurationList; buildConfigurations = ( - 05179D47D6809AAB9737E9D12298A26B /* Debug */, - 58915EF80C9836C9679B8FC9142544D1 /* Release */, + E2812E68130029B93CE4ECB26B6815B3 /* Debug */, + DEC2F1D5D3C1746A735F07852F69F8B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9945,15 +10144,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6DB3A861CD9FADB70ADEDE20AAC12DBC /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 70EFA119949434BF5A40F7658F0E2640 /* Debug */, - A3A6B7F88DCFAD45D315594DF9A9C9F3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6F923562AECB3EBB802F37249F993936 /* Build configuration list for PBXNativeTarget "AFOAuth2Manager" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9972,20 +10162,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7689B1DD42C586E7543217212D4B815D /* Build configuration list for PBXNativeTarget "DTFoundation" */ = { + 7595F79E53747A277575B07A1421A185 /* Build configuration list for PBXNativeTarget "SWFrameButton" */ = { isa = XCConfigurationList; buildConfigurations = ( - A9D60619DB72F52D3AF899C2610721CC /* Debug */, - 782369588789EFE4D5D86CB04272387C /* Release */, + 4C87877969865C4597C301E0CD1B9DB0 /* Debug */, + F3FED9B898AF4233CEA57968ACED7789 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7D42CBAE407927DD254E6BD9337A09EA /* Build configuration list for PBXNativeTarget "TWMessageBarManager" */ = { + 7689B1DD42C586E7543217212D4B815D /* Build configuration list for PBXNativeTarget "DTFoundation" */ = { isa = XCConfigurationList; buildConfigurations = ( - F3B4273DAC13A50B846008264A605E79 /* Debug */, - 0BECF510ECFCEF5B0846945F99A4D1CB /* Release */, + A9D60619DB72F52D3AF899C2610721CC /* Debug */, + 782369588789EFE4D5D86CB04272387C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9999,20 +10189,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 985C9876B87B21D4C1F1058ED6930A9D /* Build configuration list for PBXNativeTarget "BBBadgeBarButtonItem" */ = { + 93E758EF94A3C865E7889B13996389EE /* Build configuration list for PBXNativeTarget "RMDateSelectionViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 80C29F1B7BE48E5BBF833CA02C1ECBA2 /* Debug */, - C67D8809EDEB3B716B5EABCE47AF26AD /* Release */, + 9169400FE43B69B3F59480305392AC27 /* Debug */, + A2CA7143E15C63437438B6B1EC693243 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9D105FC7342CD6EB173CEF81BC0C2012 /* Build configuration list for PBXNativeTarget "SBJson" */ = { + 985C9876B87B21D4C1F1058ED6930A9D /* Build configuration list for PBXNativeTarget "BBBadgeBarButtonItem" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8F92D71ABFA0149DB065261A8D1ADEDD /* Debug */, - 5AD140944B216A2302A6343F7ECF24D5 /* Release */, + 80C29F1B7BE48E5BBF833CA02C1ECBA2 /* Debug */, + C67D8809EDEB3B716B5EABCE47AF26AD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -10026,47 +10216,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AFFF0D1BD54185C8594C082C01F9251E /* Build configuration list for PBXNativeTarget "CYRTextView" */ = { + A842B02B098D9C53D0B055F846937E0F /* Build configuration list for PBXNativeTarget "LTHPasscodeViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - B1A83747370573F3F8668561C514B94D /* Debug */, - DEB4AE4FD001B2CC2AD4C6C48327761E /* Release */, + 2A7FDEC975C93C2A68417D9AD75E200E /* Debug */, + 06EFB4CC103B0E72978FD2A4D60C95E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BA13EDBD9D365A9FA2120DD5D6DB109B /* Build configuration list for PBXNativeTarget "SocketRocket" */ = { + AF2260BF61F1D87E53863FE0998F59C0 /* Build configuration list for PBXNativeTarget "TWMessageBarManager" */ = { isa = XCConfigurationList; buildConfigurations = ( - F2B9883EA0699282D1089EC51FDDBC06 /* Debug */, - CF48AFE6C6FE03B93CE1B23183EF6534 /* Release */, + C3F734091681822A1BF0BB1D804C3B95 /* Debug */, + 2BA415058CE666F9A75EAF03853760DB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BB453E6BB66EA1C05DB9720C78D85D0B /* Build configuration list for PBXNativeTarget "SWFrameButton" */ = { + AFFF0D1BD54185C8594C082C01F9251E /* Build configuration list for PBXNativeTarget "CYRTextView" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8A22A314D8BF95686210FAC7A85975B0 /* Debug */, - 79CB5029A949F9509D4D5BF814272A3D /* Release */, + B1A83747370573F3F8668561C514B94D /* Debug */, + DEB4AE4FD001B2CC2AD4C6C48327761E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C330660025E97CBA73755A0F219F46D2 /* Build configuration list for PBXNativeTarget "JSCoreBom" */ = { + B852F2F4941ED39126C48C061FCD6506 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - EAF01ABDD0819CDE59D2B9D16A96E8C8 /* Debug */, - 8AA0C66011EA471B30F493FB2FC08814 /* Release */, + EFE4CAB7CEDEB37E0C54108C0D99655D /* Debug */, + 2F5C3447F03A64CACBA62BC76C9645A4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C40285C42AE2D212C0A0BBDA00F9BAB6 /* Build configuration list for PBXNativeTarget "RMActionController" */ = { + C330660025E97CBA73755A0F219F46D2 /* Build configuration list for PBXNativeTarget "JSCoreBom" */ = { isa = XCConfigurationList; buildConfigurations = ( - 93837A9C09ADBEB5247E9131296AF147 /* Debug */, - 73143992F06C086286E3F2DEEFD3E56D /* Release */, + EAF01ABDD0819CDE59D2B9D16A96E8C8 /* Debug */, + 8AA0C66011EA471B30F493FB2FC08814 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -10107,20 +10297,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D02913BD21FCA429E774856B29C2E2CF /* Build configuration list for PBXNativeTarget "UICKeyChainStore" */ = { + CFECE0B4F6C0FEA7AEB291F770AA88DB /* Build configuration list for PBXNativeTarget "SocketRocket" */ = { isa = XCConfigurationList; buildConfigurations = ( - C3D88E11F482840968BA671F12C79CBE /* Debug */, - 891E2C27298BC77DAA0A5F1487AEA0B3 /* Release */, + B3A5ADDAE0781C99B03541C528F4D6FF /* Debug */, + 208C94535AD90BA45DD59E7E1571E0AA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D227652632237F3EB69394B4A1D3545C /* Build configuration list for PBXNativeTarget "SWTableViewCell" */ = { + D4835DFDD105320AB55DD7F962CA8D64 /* Build configuration list for PBXNativeTarget "TDOAuth" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7BC3C23641EEED88D07E28E8FC6C4515 /* Debug */, - 50B9DCF366EF3FF69E0916E75C2CFC62 /* Release */, + 1331252F43335A57397C352748B74442 /* Debug */, + 5446375F8F4870AC8A25F47C2C64AA7C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -10134,11 +10324,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EB51E68D0C70DC99304A49A9DEF92A61 /* Build configuration list for PBXNativeTarget "Pods-Jasonette" */ = { + E9C4A551BA3164751C9A002F8270101B /* Build configuration list for PBXNativeTarget "UICKeyChainStore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 18C7B412E0CE4EB72A1A90F83FA19CF5 /* Debug */, + AADC89B82EFD3F170FEA26524163210D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F8D31031A514C829D54BDA83BC13DAF4 /* Build configuration list for PBXNativeTarget "SZTextView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 415D472C84CB5199C098DBF799EE3480 /* Debug */, + CDF51F37A7A4804A7D179A61A3B6255B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FCE810DECAD5290E9069A05F1CCCE8E1 /* Build configuration list for PBXNativeTarget "REMenu" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1D0A6E4B72DC3A99B5CA0F2AE00D20F7 /* Debug */, - A647F427F1F9C7A67D9753332EF527BA /* Release */, + 5FF5A63530EE5FF8997DD0F470BF3988 /* Debug */, + FA0E2B63A35A503DC1ED7C677A5C2D1D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/app/Pods/Target Support Files/LTHPasscodeViewController/Info.plist b/app/Pods/Target Support Files/LTHPasscodeViewController/Info.plist new file mode 100644 index 00000000..e77f072f --- /dev/null +++ b/app/Pods/Target Support Files/LTHPasscodeViewController/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 3.8.10 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-dummy.m b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-dummy.m new file mode 100644 index 00000000..d2b30013 --- /dev/null +++ b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_LTHPasscodeViewController : NSObject +@end +@implementation PodsDummy_LTHPasscodeViewController +@end diff --git a/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-prefix.pch b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-umbrella.h b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-umbrella.h new file mode 100644 index 00000000..b26e9839 --- /dev/null +++ b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController-umbrella.h @@ -0,0 +1,18 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "LTHKeychainUtils.h" +#import "LTHPasscodeViewController.h" + +FOUNDATION_EXPORT double LTHPasscodeViewControllerVersionNumber; +FOUNDATION_EXPORT const unsigned char LTHPasscodeViewControllerVersionString[]; + diff --git a/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.modulemap b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.modulemap new file mode 100644 index 00000000..2bb830e6 --- /dev/null +++ b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.modulemap @@ -0,0 +1,6 @@ +framework module LTHPasscodeViewController { + umbrella header "LTHPasscodeViewController-umbrella.h" + + export * + module * { export * } +} diff --git a/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.xcconfig b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.xcconfig new file mode 100644 index 00000000..3db81487 --- /dev/null +++ b/app/Pods/Target Support Files/LTHPasscodeViewController/LTHPasscodeViewController.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/LTHPasscodeViewController +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +OTHER_LDFLAGS = -framework "QuartzCore" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/LTHPasscodeViewController +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.markdown b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.markdown index ead22f15..c7aa665a 100644 --- a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.markdown +++ b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.markdown @@ -445,6 +445,29 @@ 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. +## LTHPasscodeViewController + +The MIT License (MIT) + +Copyright (c) 2013 Roland Leth + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission 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. + ## MBProgressHUD Copyright © 2009-2016 Matej Bukovinski diff --git a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.plist b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.plist index f41af5be..86d7dfd9 100644 --- a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.plist +++ b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-acknowledgements.plist @@ -558,6 +558,35 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + The MIT License (MIT) + +Copyright (c) 2013 Roland Leth + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission 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. + License + MIT + Title + LTHPasscodeViewController + Type + PSGroupSpecifier + FooterText Copyright © 2009-2016 Matej Bukovinski diff --git a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-frameworks.sh b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-frameworks.sh index dd4206d3..2499bc79 100755 --- a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-frameworks.sh +++ b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette-frameworks.sh @@ -106,6 +106,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "$BUILT_PRODUCTS_DIR/IQAudioRecorderController/IQAudioRecorderController.framework" install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" install_framework "$BUILT_PRODUCTS_DIR/JSCoreBom/JSCoreBom.framework" + install_framework "$BUILT_PRODUCTS_DIR/LTHPasscodeViewController/LTHPasscodeViewController.framework" install_framework "$BUILT_PRODUCTS_DIR/MBProgressHUD/MBProgressHUD.framework" install_framework "$BUILT_PRODUCTS_DIR/NSGIF/NSGIF.framework" install_framework "$BUILT_PRODUCTS_DIR/NSHash/NSHash.framework" @@ -146,6 +147,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "$BUILT_PRODUCTS_DIR/IQAudioRecorderController/IQAudioRecorderController.framework" install_framework "$BUILT_PRODUCTS_DIR/JDStatusBarNotification/JDStatusBarNotification.framework" install_framework "$BUILT_PRODUCTS_DIR/JSCoreBom/JSCoreBom.framework" + install_framework "$BUILT_PRODUCTS_DIR/LTHPasscodeViewController/LTHPasscodeViewController.framework" install_framework "$BUILT_PRODUCTS_DIR/MBProgressHUD/MBProgressHUD.framework" install_framework "$BUILT_PRODUCTS_DIR/NSGIF/NSGIF.framework" install_framework "$BUILT_PRODUCTS_DIR/NSHash/NSHash.framework" diff --git a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.debug.xcconfig b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.debug.xcconfig index 86853a11..bca3f1db 100644 --- a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.debug.xcconfig +++ b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.debug.xcconfig @@ -1,9 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager" "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet" "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook" "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem" "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView" "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl" "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot" "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText" "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer" "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl" "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager" "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom" "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD" "$PODS_CONFIGURATION_BUILD_DIR/NSGIF" "$PODS_CONFIGURATION_BUILD_DIR/NSHash" "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ" "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView" "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain" "$PODS_CONFIGURATION_BUILD_DIR/REMenu" "$PODS_CONFIGURATION_BUILD_DIR/RMActionController" "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController" "$PODS_CONFIGURATION_BUILD_DIR/Reachability" "$PODS_CONFIGURATION_BUILD_DIR/SBJson" "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton" "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell" "$PODS_CONFIGURATION_BUILD_DIR/SZTextView" "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket" "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth" "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel" "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager" "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore" "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager" "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet" "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook" "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem" "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView" "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl" "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot" "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText" "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation" "$PODS_CONFIGURATION_BUILD_DIR/FLEX" "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer" "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl" "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager" "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom" "$PODS_CONFIGURATION_BUILD_DIR/LTHPasscodeViewController" "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD" "$PODS_CONFIGURATION_BUILD_DIR/NSGIF" "$PODS_CONFIGURATION_BUILD_DIR/NSHash" "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ" "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView" "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain" "$PODS_CONFIGURATION_BUILD_DIR/REMenu" "$PODS_CONFIGURATION_BUILD_DIR/RMActionController" "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController" "$PODS_CONFIGURATION_BUILD_DIR/Reachability" "$PODS_CONFIGURATION_BUILD_DIR/SBJson" "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton" "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell" "$PODS_CONFIGURATION_BUILD_DIR/SZTextView" "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket" "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth" "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel" "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager" "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore" "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager/AFOAuth2Manager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet/AHKActionSheet.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook/APAddressBook.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem/BBBadgeBarButtonItem.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView/CYRTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl/DAKeyboardControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot/DHSmartScreenshot.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText/DTCoreText.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation/DTFoundation.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer/FreeStreamer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl/HMSegmentedControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager/INTULocationManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController/IQAudioRecorderController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom/JSCoreBom.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD/MBProgressHUD.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSGIF/NSGIF.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSHash/NSHash.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ/OMGHTTPURLRQ.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView/PHFComposeBarView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain/PHFDelegateChain.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/REMenu/REMenu.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMActionController/RMActionController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController/RMDateSelectionViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Reachability/Reachability.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SBJson/SBJson.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView/SCSiriWaveformView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton/SWFrameButton.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell/SWTableViewCell.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SZTextView/SZTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket/SocketRocket.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth/TDOAuth.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel/TTTAttributedLabel.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager/TWMessageBarManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore/UICKeyChainStore.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS/libPhoneNumber_iOS.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AFOAuth2Manager" -framework "AHKActionSheet" -framework "APAddressBook" -framework "BBBadgeBarButtonItem" -framework "CYRTextView" -framework "DAKeyboardControl" -framework "DHSmartScreenshot" -framework "DTCoreText" -framework "DTFoundation" -framework "FLEX" -framework "FreeStreamer" -framework "HMSegmentedControl" -framework "INTULocationManager" -framework "IQAudioRecorderController" -framework "JDStatusBarNotification" -framework "JSCoreBom" -framework "MBProgressHUD" -framework "NSGIF" -framework "NSHash" -framework "OMGHTTPURLRQ" -framework "PHFComposeBarView" -framework "PHFDelegateChain" -framework "REMenu" -framework "RMActionController" -framework "RMDateSelectionViewController" -framework "Reachability" -framework "SBJson" -framework "SCSiriWaveformView" -framework "SDWebImage" -framework "SWFrameButton" -framework "SWTableViewCell" -framework "SZTextView" -framework "SocketRocket" -framework "TDOAuth" -framework "TTTAttributedLabel" -framework "TWMessageBarManager" -framework "UICKeyChainStore" -framework "libPhoneNumber_iOS" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager/AFOAuth2Manager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet/AHKActionSheet.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook/APAddressBook.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem/BBBadgeBarButtonItem.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView/CYRTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl/DAKeyboardControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot/DHSmartScreenshot.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText/DTCoreText.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation/DTFoundation.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FLEX/FLEX.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer/FreeStreamer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl/HMSegmentedControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager/INTULocationManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController/IQAudioRecorderController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom/JSCoreBom.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/LTHPasscodeViewController/LTHPasscodeViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD/MBProgressHUD.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSGIF/NSGIF.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSHash/NSHash.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ/OMGHTTPURLRQ.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView/PHFComposeBarView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain/PHFDelegateChain.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/REMenu/REMenu.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMActionController/RMActionController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController/RMDateSelectionViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Reachability/Reachability.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SBJson/SBJson.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView/SCSiriWaveformView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton/SWFrameButton.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell/SWTableViewCell.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SZTextView/SZTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket/SocketRocket.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth/TDOAuth.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel/TTTAttributedLabel.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager/TWMessageBarManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore/UICKeyChainStore.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS/libPhoneNumber_iOS.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AFOAuth2Manager" -framework "AHKActionSheet" -framework "APAddressBook" -framework "BBBadgeBarButtonItem" -framework "CYRTextView" -framework "DAKeyboardControl" -framework "DHSmartScreenshot" -framework "DTCoreText" -framework "DTFoundation" -framework "FLEX" -framework "FreeStreamer" -framework "HMSegmentedControl" -framework "INTULocationManager" -framework "IQAudioRecorderController" -framework "JDStatusBarNotification" -framework "JSCoreBom" -framework "LTHPasscodeViewController" -framework "MBProgressHUD" -framework "NSGIF" -framework "NSHash" -framework "OMGHTTPURLRQ" -framework "PHFComposeBarView" -framework "PHFDelegateChain" -framework "REMenu" -framework "RMActionController" -framework "RMDateSelectionViewController" -framework "Reachability" -framework "SBJson" -framework "SCSiriWaveformView" -framework "SDWebImage" -framework "SWFrameButton" -framework "SWTableViewCell" -framework "SZTextView" -framework "SocketRocket" -framework "TDOAuth" -framework "TTTAttributedLabel" -framework "TWMessageBarManager" -framework "UICKeyChainStore" -framework "libPhoneNumber_iOS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.release.xcconfig b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.release.xcconfig index 3fa818da..f712ae50 100644 --- a/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.release.xcconfig +++ b/app/Pods/Target Support Files/Pods-Jasonette/Pods-Jasonette.release.xcconfig @@ -1,9 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager" "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet" "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook" "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem" "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView" "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl" "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot" "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText" "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation" "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer" "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl" "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager" "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom" "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD" "$PODS_CONFIGURATION_BUILD_DIR/NSGIF" "$PODS_CONFIGURATION_BUILD_DIR/NSHash" "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ" "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView" "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain" "$PODS_CONFIGURATION_BUILD_DIR/REMenu" "$PODS_CONFIGURATION_BUILD_DIR/RMActionController" "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController" "$PODS_CONFIGURATION_BUILD_DIR/Reachability" "$PODS_CONFIGURATION_BUILD_DIR/SBJson" "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton" "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell" "$PODS_CONFIGURATION_BUILD_DIR/SZTextView" "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket" "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth" "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel" "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager" "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore" "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager" "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet" "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook" "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem" "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView" "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl" "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot" "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText" "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation" "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer" "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl" "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager" "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController" "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification" "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom" "$PODS_CONFIGURATION_BUILD_DIR/LTHPasscodeViewController" "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD" "$PODS_CONFIGURATION_BUILD_DIR/NSGIF" "$PODS_CONFIGURATION_BUILD_DIR/NSHash" "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ" "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView" "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain" "$PODS_CONFIGURATION_BUILD_DIR/REMenu" "$PODS_CONFIGURATION_BUILD_DIR/RMActionController" "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController" "$PODS_CONFIGURATION_BUILD_DIR/Reachability" "$PODS_CONFIGURATION_BUILD_DIR/SBJson" "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView" "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage" "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton" "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell" "$PODS_CONFIGURATION_BUILD_DIR/SZTextView" "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket" "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth" "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel" "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager" "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore" "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager/AFOAuth2Manager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet/AHKActionSheet.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook/APAddressBook.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem/BBBadgeBarButtonItem.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView/CYRTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl/DAKeyboardControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot/DHSmartScreenshot.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText/DTCoreText.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation/DTFoundation.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer/FreeStreamer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl/HMSegmentedControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager/INTULocationManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController/IQAudioRecorderController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom/JSCoreBom.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD/MBProgressHUD.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSGIF/NSGIF.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSHash/NSHash.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ/OMGHTTPURLRQ.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView/PHFComposeBarView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain/PHFDelegateChain.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/REMenu/REMenu.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMActionController/RMActionController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController/RMDateSelectionViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Reachability/Reachability.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SBJson/SBJson.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView/SCSiriWaveformView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton/SWFrameButton.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell/SWTableViewCell.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SZTextView/SZTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket/SocketRocket.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth/TDOAuth.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel/TTTAttributedLabel.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager/TWMessageBarManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore/UICKeyChainStore.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS/libPhoneNumber_iOS.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AFOAuth2Manager" -framework "AHKActionSheet" -framework "APAddressBook" -framework "BBBadgeBarButtonItem" -framework "CYRTextView" -framework "DAKeyboardControl" -framework "DHSmartScreenshot" -framework "DTCoreText" -framework "DTFoundation" -framework "FreeStreamer" -framework "HMSegmentedControl" -framework "INTULocationManager" -framework "IQAudioRecorderController" -framework "JDStatusBarNotification" -framework "JSCoreBom" -framework "MBProgressHUD" -framework "NSGIF" -framework "NSHash" -framework "OMGHTTPURLRQ" -framework "PHFComposeBarView" -framework "PHFDelegateChain" -framework "REMenu" -framework "RMActionController" -framework "RMDateSelectionViewController" -framework "Reachability" -framework "SBJson" -framework "SCSiriWaveformView" -framework "SDWebImage" -framework "SWFrameButton" -framework "SWTableViewCell" -framework "SZTextView" -framework "SocketRocket" -framework "TDOAuth" -framework "TTTAttributedLabel" -framework "TWMessageBarManager" -framework "UICKeyChainStore" -framework "libPhoneNumber_iOS" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFOAuth2Manager/AFOAuth2Manager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AHKActionSheet/AHKActionSheet.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/APAddressBook/APAddressBook.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BBBadgeBarButtonItem/BBBadgeBarButtonItem.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/CYRTextView/CYRTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DAKeyboardControl/DAKeyboardControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DHSmartScreenshot/DHSmartScreenshot.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTCoreText/DTCoreText.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/DTFoundation/DTFoundation.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FreeStreamer/FreeStreamer.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/HMSegmentedControl/HMSegmentedControl.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/INTULocationManager/INTULocationManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/IQAudioRecorderController/IQAudioRecorderController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JDStatusBarNotification/JDStatusBarNotification.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/JSCoreBom/JSCoreBom.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/LTHPasscodeViewController/LTHPasscodeViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBProgressHUD/MBProgressHUD.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSGIF/NSGIF.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSHash/NSHash.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OMGHTTPURLRQ/OMGHTTPURLRQ.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFComposeBarView/PHFComposeBarView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PHFDelegateChain/PHFDelegateChain.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/REMenu/REMenu.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMActionController/RMActionController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/RMDateSelectionViewController/RMDateSelectionViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Reachability/Reachability.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SBJson/SBJson.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SCSiriWaveformView/SCSiriWaveformView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SDWebImage/SDWebImage.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWFrameButton/SWFrameButton.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWTableViewCell/SWTableViewCell.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SZTextView/SZTextView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SocketRocket/SocketRocket.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TDOAuth/TDOAuth.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TTTAttributedLabel/TTTAttributedLabel.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TWMessageBarManager/TWMessageBarManager.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UICKeyChainStore/UICKeyChainStore.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/libPhoneNumber-iOS/libPhoneNumber_iOS.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "AFOAuth2Manager" -framework "AHKActionSheet" -framework "APAddressBook" -framework "BBBadgeBarButtonItem" -framework "CYRTextView" -framework "DAKeyboardControl" -framework "DHSmartScreenshot" -framework "DTCoreText" -framework "DTFoundation" -framework "FreeStreamer" -framework "HMSegmentedControl" -framework "INTULocationManager" -framework "IQAudioRecorderController" -framework "JDStatusBarNotification" -framework "JSCoreBom" -framework "LTHPasscodeViewController" -framework "MBProgressHUD" -framework "NSGIF" -framework "NSHash" -framework "OMGHTTPURLRQ" -framework "PHFComposeBarView" -framework "PHFDelegateChain" -framework "REMenu" -framework "RMActionController" -framework "RMDateSelectionViewController" -framework "Reachability" -framework "SBJson" -framework "SCSiriWaveformView" -framework "SDWebImage" -framework "SWFrameButton" -framework "SWTableViewCell" -framework "SZTextView" -framework "SocketRocket" -framework "TDOAuth" -framework "TTTAttributedLabel" -framework "TWMessageBarManager" -framework "UICKeyChainStore" -framework "libPhoneNumber_iOS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/.