[
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata\n*.xccheckout\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n*.xcuserstate\n\n# CocoaPods\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control\n#\n#Pods/\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015 \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
  },
  {
    "path": "README.md",
    "content": "# ZXPUnicode\n在Xcode的控制台里支持array and dictionary 的中文输出,Xcode默认是不支持的.导入分类即可在控制台自动支持中文输出\n"
  },
  {
    "path": "ZXPUnicode/ZXPUnicode.h",
    "content": "//\n//  ZXPUnicode.h\n//\n//  blog : http://blog.csdn.net/biggercoffee\n//  github : https://github.com/biggercoffee/ZXPUnicode\n//\n//  Created by Mango on 2017/3/31.\n//  Copyright © 2017年 coffee. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n\n"
  },
  {
    "path": "ZXPUnicode/ZXPUnicode.m",
    "content": "//\n//  ZXPUnicode.m\n//\n//  blog : http://blog.csdn.net/biggercoffee\n//  github : https://github.com/biggercoffee/ZXPUnicode\n//\n//  Created by Mango on 2017/3/31.\n//  Copyright © 2017年 coffee. All rights reserved.\n//\n\n#import \"ZXPUnicode.h\"\n#import <objc/runtime.h>\n\nstatic inline void zxp_swizzleSelector(Class class, SEL originalSelector, SEL swizzledSelector) {\n    Method originalMethod = class_getInstanceMethod(class, originalSelector);\n    Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);\n    if (class_addMethod(class, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod))) {\n        class_replaceMethod(class, swizzledSelector, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod));\n    } else {\n        method_exchangeImplementations(originalMethod, swizzledMethod);\n    }\n}\n\n@implementation NSString (ZXPUnicode)\n\n- (NSString *)stringByReplaceUnicode {\n    NSMutableString *convertedString = [self mutableCopy];\n    [convertedString replaceOccurrencesOfString:@\"\\\\U\"\n                                     withString:@\"\\\\u\"\n                                        options:0\n                                          range:NSMakeRange(0, convertedString.length)];\n    \n    CFStringRef transform = CFSTR(\"Any-Hex/Java\");\n    CFStringTransform((__bridge CFMutableStringRef)convertedString, NULL, transform, YES);\n    return convertedString;\n}\n\n@end\n\n@implementation NSArray (ZXPUnicode)\n\n+ (void)load {\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        Class class = [self class];\n        zxp_swizzleSelector(class, @selector(description), @selector(zxp_description));\n        zxp_swizzleSelector(class, @selector(descriptionWithLocale:), @selector(zxp_descriptionWithLocale:));\n        zxp_swizzleSelector(class, @selector(descriptionWithLocale:indent:), @selector(zxp_descriptionWithLocale:indent:));\n    });\n}\n\n/**\n *  我觉得 \n *  可以把以下的方法放到一个NSObject的category中\n *  然后在需要的类中进行swizzle\n *  但是又觉得这样太粗暴了。。。。\n */\n\n- (NSString *)zxp_description {\n    return [[self zxp_description] stringByReplaceUnicode];\n}\n\n- (NSString *)zxp_descriptionWithLocale:(nullable id)locale {\n    return [[self zxp_descriptionWithLocale:locale] stringByReplaceUnicode];\n}\n\n- (NSString *)zxp_descriptionWithLocale:(nullable id)locale indent:(NSUInteger)level {\n    return [[self zxp_descriptionWithLocale:locale indent:level] stringByReplaceUnicode];\n}\n\n@end\n\n@implementation NSDictionary (ZXPUnicode)\n\n+ (void)load {\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        Class class = [self class];\n        zxp_swizzleSelector(class, @selector(description), @selector(zxp_description));\n        zxp_swizzleSelector(class, @selector(descriptionWithLocale:), @selector(zxp_descriptionWithLocale:));\n        zxp_swizzleSelector(class, @selector(descriptionWithLocale:indent:), @selector(zxp_descriptionWithLocale:indent:));\n    });\n}\n\n- (NSString *)zxp_description {\n    return [[self zxp_description] stringByReplaceUnicode];\n}\n\n- (NSString *)zxp_descriptionWithLocale:(nullable id)locale {\n    return [[self zxp_descriptionWithLocale:locale] stringByReplaceUnicode];\n}\n\n- (NSString *)zxp_descriptionWithLocale:(nullable id)locale indent:(NSUInteger)level {\n    return [[self zxp_descriptionWithLocale:locale indent:level] stringByReplaceUnicode];\n}\n\n@end\n\n@implementation NSSet (ZXPUnicode)\n\n+ (void)load {\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        Class class = [self class];\n        zxp_swizzleSelector(class, @selector(description), @selector(zxp_description));\n        zxp_swizzleSelector(class, @selector(descriptionWithLocale:), @selector(zxp_descriptionWithLocale:));\n        zxp_swizzleSelector(class, @selector(descriptionWithLocale:indent:), @selector(zxp_descriptionWithLocale:indent:));\n    });\n}\n\n- (NSString *)zxp_description {\n    return [[self zxp_description] stringByReplaceUnicode];\n}\n\n- (NSString *)zxp_descriptionWithLocale:(nullable id)locale {\n    return [[self zxp_descriptionWithLocale:locale] stringByReplaceUnicode];\n}\n\n- (NSString *)zxp_descriptionWithLocale:(nullable id)locale indent:(NSUInteger)level {\n    return [[self zxp_descriptionWithLocale:locale indent:level] stringByReplaceUnicode];\n}\n\n@end\n\n"
  },
  {
    "path": "demo/demo/main.m",
    "content": "//\n//  main.m\n//  demo\n//\n//  blog : http://blog.csdn.net/biggercoffee\n//  github : https://github.com/biggercoffee/ZXPUnicode\n\n//  Created by coffee on 15/11/23.\n//  Copyright © 2015年 coffee. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\nint main(int argc, const char * argv[]) {\n    @autoreleasepool {\n        NSMutableString *mutableString = [@\"中文可变字符串\" mutableCopy];\n        \n        NSDictionary *dictionary = @{@\"中文key\": @\"中文value\"};\n        NSArray *array = @[@\"第一个中文数组的值\", @\"第二个中文数组的值\", mutableString];\n        NSSet *set = [[NSSet alloc] initWithArray:array];\n        \n        NSLog(@\"dictionary:%@\",dictionary);\n        NSLog(@\"array:%@\",array);\n        NSLog(@\"set:%@\",set);\n    }\n    return 0;\n}\n"
  },
  {
    "path": "demo/demo.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t1D61351F1C031B0D00CAE85F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D61351E1C031B0D00CAE85F /* main.m */; };\n\t\tDBFC175A1E8E5FE900A3DFF1 /* ZXPUnicode.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFC17591E8E5FE900A3DFF1 /* ZXPUnicode.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\t1D6135191C031B0D00CAE85F /* CopyFiles */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = /usr/share/man/man1/;\n\t\t\tdstSubfolderSpec = 0;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 1;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t1D61351B1C031B0D00CAE85F /* demo */ = {isa = PBXFileReference; explicitFileType = \"compiled.mach-o.executable\"; includeInIndex = 0; path = demo; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t1D61351E1C031B0D00CAE85F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\tDBFC17581E8E5FE900A3DFF1 /* ZXPUnicode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZXPUnicode.h; sourceTree = \"<group>\"; };\n\t\tDBFC17591E8E5FE900A3DFF1 /* ZXPUnicode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZXPUnicode.m; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t1D6135181C031B0D00CAE85F /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t1D6135121C031B0D00CAE85F = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1D61351D1C031B0D00CAE85F /* demo */,\n\t\t\t\t1D61351C1C031B0D00CAE85F /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1D61351C1C031B0D00CAE85F /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1D61351B1C031B0D00CAE85F /* demo */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1D61351D1C031B0D00CAE85F /* demo */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1D61352F1C031BF200CAE85F /* ZXPUnicode */,\n\t\t\t\t1D61351E1C031B0D00CAE85F /* main.m */,\n\t\t\t);\n\t\t\tpath = demo;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1D61352F1C031BF200CAE85F /* ZXPUnicode */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tDBFC17581E8E5FE900A3DFF1 /* ZXPUnicode.h */,\n\t\t\t\tDBFC17591E8E5FE900A3DFF1 /* ZXPUnicode.m */,\n\t\t\t);\n\t\t\tname = ZXPUnicode;\n\t\t\tpath = ../../ZXPUnicode;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t1D61351A1C031B0D00CAE85F /* demo */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 1D6135221C031B0D00CAE85F /* Build configuration list for PBXNativeTarget \"demo\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t1D6135171C031B0D00CAE85F /* Sources */,\n\t\t\t\t1D6135181C031B0D00CAE85F /* Frameworks */,\n\t\t\t\t1D6135191C031B0D00CAE85F /* CopyFiles */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = demo;\n\t\t\tproductName = demo;\n\t\t\tproductReference = 1D61351B1C031B0D00CAE85F /* demo */;\n\t\t\tproductType = \"com.apple.product-type.tool\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t1D6135131C031B0D00CAE85F /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0710;\n\t\t\t\tORGANIZATIONNAME = coffee;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t1D61351A1C031B0D00CAE85F = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.1.1;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 1D6135161C031B0D00CAE85F /* Build configuration list for PBXProject \"demo\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t);\n\t\t\tmainGroup = 1D6135121C031B0D00CAE85F;\n\t\t\tproductRefGroup = 1D61351C1C031B0D00CAE85F /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t1D61351A1C031B0D00CAE85F /* demo */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t1D6135171C031B0D00CAE85F /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1D61351F1C031B0D00CAE85F /* main.m in Sources */,\n\t\t\t\tDBFC175A1E8E5FE900A3DFF1 /* ZXPUnicode.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin XCBuildConfiguration section */\n\t\t1D6135201C031B0D00CAE85F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1D6135211C031B0D00CAE85F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.11;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t1D6135231C031B0D00CAE85F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1D6135241C031B0D00CAE85F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t1D6135161C031B0D00CAE85F /* Build configuration list for PBXProject \"demo\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1D6135201C031B0D00CAE85F /* Debug */,\n\t\t\t\t1D6135211C031B0D00CAE85F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t1D6135221C031B0D00CAE85F /* Build configuration list for PBXNativeTarget \"demo\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1D6135231C031B0D00CAE85F /* Debug */,\n\t\t\t\t1D6135241C031B0D00CAE85F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 1D6135131C031B0D00CAE85F /* Project object */;\n}\n"
  },
  {
    "path": "demo/demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:demo.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  }
]