diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ec143a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Xcode +# +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +.DS_Store + +## Build generated +build/ +DerivedData/ + +## Various settings +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata/ +xcshareddata/ +xcworkspace/ +## Other +*.moved-aside +*.xcuserstate + +## Obj-C/Swift specific +*.hmap +*.ipa +*.dSYM.zip +*.dSYM + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# +# Pods/ + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md + +fastlane/report.xml +fastlane/screenshots + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ +/proj.ios_mac/.idea diff --git a/proj.ios/.DS_Store b/proj.ios/.DS_Store new file mode 100644 index 0000000..849190d Binary files /dev/null and b/proj.ios/.DS_Store differ diff --git a/proj.ios/AppDelegate.swift b/proj.ios/AppDelegate.swift new file mode 100644 index 0000000..22abb53 --- /dev/null +++ b/proj.ios/AppDelegate.swift @@ -0,0 +1,31 @@ +// +// AppDelegate.swift +// salmontemplate +// +// Created by Роберт Хайреев on 16/01/2017. +// +// + +import Foundation +import UIKit + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + + var window: UIWindow? + var viewController: UIViewController? + + func applicationDidFinishLaunching(_ application: UIApplication) { + window = UIWindow(frame: UIScreen.main.bounds) + + if UIDevice.current.userInterfaceIdiom == .phone { + viewController = ViewController(nibName: "ViewController_iPhone", bundle: nil) + } else { + viewController = ViewController(nibName: "ViewController_iPad", bundle: nil) + } + + window?.rootViewController = viewController + window?.makeKeyAndVisible() + } + +} diff --git a/proj.ios/CustomGLKView.h b/proj.ios/CustomGLKView.h new file mode 100755 index 0000000..77acd11 --- /dev/null +++ b/proj.ios/CustomGLKView.h @@ -0,0 +1,13 @@ +// +// CustomGLKView.h +// doublehitballs +// +// Created by vvv ооо on 15.07.12. +// Copyright (c) 2012 __MyCompanyName__. All rights reserved. +// + +#import "include/Utils/IosApi/ObjC/GLKViewTemplate.h" + +@interface CustomGLKView : GLKViewTemplate + +@end diff --git a/proj.ios/CustomGLKView.mm b/proj.ios/CustomGLKView.mm new file mode 100755 index 0000000..5b9214c --- /dev/null +++ b/proj.ios/CustomGLKView.mm @@ -0,0 +1,5 @@ +#import "CustomGLKView.h" + +@implementation CustomGLKView + +@end \ No newline at end of file diff --git a/proj.ios/CustomGLKView.swift b/proj.ios/CustomGLKView.swift new file mode 100644 index 0000000..c071e34 --- /dev/null +++ b/proj.ios/CustomGLKView.swift @@ -0,0 +1,95 @@ +// +// CustomGLKView.swift +// salmontemplate +// +// Created by Роберт Хайреев on 16/01/2017. +// +// + +import Foundation +import GLKit + +struct TTouchHashData { + var first: CGPoint! + var second: Bool! + var number: Int! +} + + + +class GLKViewTemplate: GLKView { + + var touchDict: [UITouch: TTouchHashData] = [:] + + override init(frame: CGRect) { + super.init(frame: frame) + isMultipleTouchEnabled = true + } + + required init?(coder aDecoder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } + + func addTouchToHash(touch: UITouch) { + let data = TTouchHashData() + touchDict[touch] = data + touchDict[touch]?.first = touch.location(in: self) + touchDict[touch]?.second = false + + for n in 0...255 { + var nExists = false + + for i in touchDict.values { + if i.number == n { + nExists = true + } + } + + if !nExists { + touchDict[touch]?.number = n + } + + } + + } + + func removeTouchFromHash(touch: UITouch) { + + } + + override func touchesBegan(_ touches: Set, with event: UIEvent?) { + for touch in touches { + let location = touch.location(in: self) + let prevLocation = touch.previousLocation(in: self) + + if abs(touchDict[touch]!.first!.x - location.x) > 10 || abs(touchDict[touch]!.first!.y - location.y) > 10 { + touchDict[touch]?.second = true + } + + let number = Int32(touchDict[touch]!.number) + + SE_AppOnScroll(Int32(Float(prevLocation.x) - Float(location.x)), -Int32(Float(prevLocation.y) - Float(location.y)), number) + } + } + + override func touchesEnded(_ touches: Set, with event: UIEvent?) { + for touch in touches { + let location = touch.location(in: self) + let number = Int32(touchDict[touch]!.number) + + if touchDict[touch]!.second == true { + SE_AppOnTapUpAfterMove(Int32(location.x), Int32(bounds.size.height - location.y), number) + } else { + SE_AppOnTapUp(Int32(location.x), Int32(bounds.size.height - location.y), number) + } + touchDict.removeValue(forKey: touch) + } + } + + override func touchesCancelled(_ touches: Set, with event: UIEvent?) { + for touch in touches { + touchDict.removeValue(forKey: touch) + } + } + +} diff --git a/proj.ios/SENamespaceWrapper.cpp b/proj.ios/SENamespaceWrapper.cpp new file mode 100644 index 0000000..d16ac9d --- /dev/null +++ b/proj.ios/SENamespaceWrapper.cpp @@ -0,0 +1,60 @@ +// +// SENamespaceWrapper.hpp +// salmontemplate +// +// Created by Роберт Хайреев on 16/01/2017. +// +// + +#include "include/Utils/Utils.h" + +//#import "include/Utils/IosApi/ObjC/ViewControllerTemplate.h" +#include "include/Utils/IosApi/IosWrapper.h" +#include "SENamespaceWrapper.h" + + +namespace SE { + void SetKeyboardText(const char* newText); + void OnKeyboardHide(); +} + + //TApplication *app = NULL; +void SE_AppDeinit() { + SE::AppDeinit(); +} + +void SE_AppUpdate(int dt) { + SE::AppUpdate(dt); +} + +void SE_AppDraw() { + SE::AppDraw(); +} + +void SE_AppOnTapDown(int posx, int posy, int touchNumber) { + SE::AppOnTapDown(posx, posy, touchNumber); +} + +void SE_AppOnTapUp(int posx, int posy, int touchNumber) { + SE::AppOnTapUp(posx, posy, touchNumber); +} + +void SE_AppOnTapUpAfterMove(int posx, int posy, int touchNumber) { + SE::AppOnTapUpAfterMove(posx, posy, touchNumber); +} + +void SE_AppOnScroll(int shiftx, int shifty, int touchNumber) { + SE::AppOnScroll(shiftx, shifty, touchNumber); +} + +void SE_AppOnScale(float scale) { + SE::AppOnScale(scale); +} + +void SE_SetKeyboardText(const char* newText) { + SE::SetKeyboardText(newText); +} + +void SE_OnKeyboardHide() { + SE::OnKeyboardHide(); +} diff --git a/proj.ios/SENamespaceWrapper.h b/proj.ios/SENamespaceWrapper.h new file mode 100644 index 0000000..8490729 --- /dev/null +++ b/proj.ios/SENamespaceWrapper.h @@ -0,0 +1,33 @@ +// +// SENamespaceWrapper.hpp +// salmontemplate +// +// Created by Роберт Хайреев on 16/01/2017. +// +// + +#ifndef SENamespace_h +#define SENamespace_h + +#ifdef __cplusplus +extern "C" { +#endif + //void SE_CreateEngine(); + //void SE_DestroyEngine(); + //TApplication *app = NULL; + void SE_AppDeinit(); + void SE_AppUpdate(int dt); + void SE_AppDraw(); + void SE_AppOnTapDown(int posx, int posy, int touchNumber); + void SE_AppOnTapUp(int posx, int posy, int touchNumber); + void SE_AppOnTapUpAfterMove(int posx, int posy, int touchNumber); + void SE_AppOnScroll(int shiftx, int shifty, int touchNumber); + void SE_AppOnScale(float scale); + void SE_SetKeyboardText(const char* newText); + void SE_OnKeyboardHide(); +#ifdef __cplusplus +} //end extern "C" +#endif + +#endif /* SENamespace_h */ + diff --git a/proj.ios/ViewController.swift b/proj.ios/ViewController.swift new file mode 100644 index 0000000..3d39c86 --- /dev/null +++ b/proj.ios/ViewController.swift @@ -0,0 +1,113 @@ +// +// ViewController.swift +// salmontemplate +// +// Created by Роберт Хайреев on 16/01/2017. +// +// + +import UIKit +import GLKit + +class ViewControllerTemplate: GLKViewController, UITextFieldDelegate { + + public var hiddenTextField: UITextField? + private var context: EAGLContext? + private var effect: GLKBaseEffect? + + override func viewDidLoad() { + super.viewDidLoad() + + guard let context = EAGLContext(api: .openGLES2) else { + print("Failed to create ES context") + return + } + + self.context = context + let view: GLKView = self.view as! GLKView + view.context = self.context! + view.drawableDepthFormat = .format24 + + //defaultView = view + + setupGL() + + let recognizer = UIPinchGestureRecognizer(target: self, action: #selector(respondToPinch(gestureRecognizer:))) + recognizer.delaysTouchesEnded = false + + view.addGestureRecognizer(recognizer) + view.isMultipleTouchEnabled = true + + hiddenTextField = UITextField(frame: CGRect(x: -200, y: -200, width: 0, height: 0)) + hiddenTextField?.autocorrectionType = .no + view.addSubview(hiddenTextField!) + hiddenTextField?.delegate = self + NotificationCenter.default.addObserver(self, selector: #selector(onReceiveKeyboardNotification(notification:)), name: .UITextFieldTextDidChange, object: nil) + } + + deinit { + tearDownGL() + } + + func setupGL() { + EAGLContext.setCurrent(context) + appInitCaller() + } + + func tearDownGL() { + EAGLContext.setCurrent(context) + SE_AppDeinit() + } + + func appInitCaller() { + // CustomAppInit() + } + + func respondToPinch(gestureRecognizer: UIPinchGestureRecognizer) { + SE_AppOnScale(Float(gestureRecognizer.scale)) + } + + func onReceiveKeyboardNotification(notification: NSNotification) { + if notification.name == .UITextFieldTextDidChange { + let textField = notification.object as! UITextField + let text = textField.text + SE_SetKeyboardText(text) + } + } + + func textFieldDidBeginEditing(_ textField: UITextField) { + print("Begin") + } + + func textFieldDidEndEditing(_ textField: UITextField) { + print("End") + } + + func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { + if string == "\n" { + textField.resignFirstResponder() + SE_OnKeyboardHide() + } + return true + } + + func update() { + SE_AppUpdate(Int32(self.timeSinceLastUpdate * 1000)) + } + + override func glkView(_ view: GLKView, drawIn rect: CGRect) { + SE_AppDraw() + } + +} + + +class ViewController: ViewControllerTemplate { + override func appInitCaller() { + CustomAppInit() + } + + override var supportedInterfaceOrientations: UIInterfaceOrientationMask { + return [.landscapeLeft, .landscapeRight] + } +} diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app.dSYM/Contents/Info.plist b/proj.ios/build/Debug-iphoneos/salmontemplate.app.dSYM/Contents/Info.plist new file mode 100644 index 0000000..67c68fd --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.fishrungames.template + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + + diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app.dSYM/Contents/Resources/DWARF/salmontemplate b/proj.ios/build/Debug-iphoneos/salmontemplate.app.dSYM/Contents/Resources/DWARF/salmontemplate new file mode 100644 index 0000000..f6e7361 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app.dSYM/Contents/Resources/DWARF/salmontemplate differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCore.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCore.dylib new file mode 100755 index 0000000..9bb9c09 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCore.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCoreGraphics.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 0000000..26403f2 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCoreImage.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 0000000..ea4497d Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftCoreImage.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftDarwin.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftDarwin.dylib new file mode 100755 index 0000000..6ffb3e2 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftDarwin.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftDispatch.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftDispatch.dylib new file mode 100755 index 0000000..b5d96a2 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftDispatch.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftFoundation.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftFoundation.dylib new file mode 100755 index 0000000..5110872 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftFoundation.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftGLKit.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftGLKit.dylib new file mode 100755 index 0000000..e5d0f5b Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftGLKit.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftObjectiveC.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 0000000..9614870 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftObjectiveC.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftQuartzCore.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftQuartzCore.dylib new file mode 100755 index 0000000..3d41757 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftQuartzCore.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftSwiftOnoneSupport.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftSwiftOnoneSupport.dylib new file mode 100755 index 0000000..05f3537 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftSwiftOnoneSupport.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftUIKit.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftUIKit.dylib new file mode 100755 index 0000000..a5daf5c Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftUIKit.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftsimd.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftsimd.dylib new file mode 100755 index 0000000..77cfb4c Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Frameworks/libswiftsimd.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Icon.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Icon.png new file mode 100644 index 0000000..2a5a6fe Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Icon.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Info.plist b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Info.plist new file mode 100644 index 0000000..70dccc8 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Info.plist differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/PkgInfo b/proj.ios/build/Debug-iphoneos/salmontemplate.app/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/Splash-landscape.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Splash-landscape.png new file mode 100644 index 0000000..5a7d97d Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/Splash-landscape.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/_CodeSignature/CodeResources b/proj.ios/build/Debug-iphoneos/salmontemplate.app/_CodeSignature/CodeResources new file mode 100644 index 0000000..d950884 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/_CodeSignature/CodeResources @@ -0,0 +1,1481 @@ + + + + + files + + Frameworks/libswiftCore.dylib + + 8qNCsqoIkT4fJq8ejLUJsYBTIek= + + Frameworks/libswiftCoreGraphics.dylib + + bE8sLvjGrZTIRIE5jpusEnQvnZE= + + Frameworks/libswiftCoreImage.dylib + + eP/sodmUQusI/tBTuJpJCtfi5l8= + + Frameworks/libswiftDarwin.dylib + + +IQQgwWaV+9PtS2eDP4QYDcxszg= + + Frameworks/libswiftDispatch.dylib + + i44z3ey5oc0uhTMEde5aaMB81KE= + + Frameworks/libswiftFoundation.dylib + + PSLEZHqMIeZjp/eR+BOooHigM+Y= + + Frameworks/libswiftGLKit.dylib + + ThoQizRg0ysCCrVw6kiLn9a4nec= + + Frameworks/libswiftObjectiveC.dylib + + mIgDQNfp5sKVkUkX335b98B8V+E= + + Frameworks/libswiftQuartzCore.dylib + + oSPHsXJ54ZzqOb+BFt/aSc3LPys= + + Frameworks/libswiftSwiftOnoneSupport.dylib + + 5PTT9HLZ0v071GULIg1DZicLKRM= + + Frameworks/libswiftUIKit.dylib + + 3d/lcyE8Z1m6KpCzO1tyJc4E334= + + Frameworks/libswiftsimd.dylib + + Hi9V8W7kWK3GeQ/cu5yEkERbKT0= + + Icon.png + + AH/+qXgIkSR1CROef+hi+PgSeKk= + + Info.plist + + dBkNPX0GQdfgjuNwNIXHcSRXU40= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + Splash-landscape.png + + 2ClxSP3FpZJxZVXIeSC+BTMwZmQ= + + assets/back_btn.png + + cKocOdMSaDy9rLnrRuhr73mVJr0= + + assets/ball.png + + p3x2bvFpLZtZadD/+0bzOVIdCDY= + + assets/ball_glow.png + + TxNUcKaKOgVRRsOoLJOGJiOSqxs= + + assets/block1.png + + IIawPQREOo16NYtXkyN0eu4i5m4= + + assets/block2.png + + MPKLXgXkGbWjKTUCgmGqDqnJuYE= + + assets/block3.png + + OjD5Z9UekQP3TrpxYQkejqhWhKU= + + assets/bonus_floor.png + + mvz/9luojo0KlKzyXW5VbOfCO3M= + + assets/bonus_gothrough.png + + 7iuheryhPjVaO2Tds3hygN5OaW4= + + assets/bonus_multiplier.png + + hnjblhor6K9IjeGDdLoQnVPDsqQ= + + assets/brickshader_fragment.txt + + O/CvlL6PBmgmNL4ldNEn1LbPtwg= + + assets/brickshader_vertex.txt + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + assets/console_bkg.bmp + + dCgOwtIZ5hup4Po98l6POD2bYxQ= + + assets/credits.png + + c37z8x/0le3nu2Uvis/7YTR609I= + + assets/droid_sans14_font_bitmap.png + + UXMXUoeassw6//f9ZuUISvPwc9U= + + assets/droid_sans14_font_charmap.txt + + VHGJtdVLKi8DQvp3wSRG8TiqYTk= + + assets/frameshader_fragment.txt + + IK3KYFtysPjh22YU8rUMdruKryI= + + assets/frameshader_vertex.txt + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + assets/game_end.png + + Ay1MwmcctVlLphpxKtrpBBuspv4= + + assets/level1.txt + + QYjbaPRcMyefTLjeplZqMfouvVQ= + + assets/level10.txt + + xmfwdUvnfTiUJE/OikHbbmZawDY= + + assets/level11.txt + + 5ATGSjYvohdDJxKXv0j/oBFVghA= + + assets/level12.txt + + kzn/U+BupsxycKBuz6OqQD9+niE= + + assets/level1ogg.ogg + + FTHSFgugybJ7qs6yRbtgjlNRKSw= + + assets/level2.txt + + peitD0ieKTIeeXZ5f+kU9T7uGF8= + + assets/level3.txt + + 9wtRUR7oEZ7AnVQqkFIpTJip9n4= + + assets/level4.txt + + LmbYihT6fA88tNV0yXIVqBY5iOI= + + assets/level5.txt + + hc7cINmVG5MmmQju0dym/Lboqmk= + + assets/level6.txt + + l2jEC5a63OymBw4VTf1Ogmq23Jw= + + assets/level7.txt + + pjumB3VjgzBoE1pgXzYNv6CskAs= + + assets/level8.txt + + XOqc7bSiijnh+gtOfcCEpJRpHmI= + + assets/level9.txt + + KKBCfDuWfcoO65yYzocq/Zj9ZuU= + + assets/levelshot1.png + + 4v+4s2cEGaix/CCNzQgV/2IEHxo= + + assets/levelshot10.png + + vuYuSY9U4Dh3RIasMcr3nngFvXI= + + assets/levelshot11.png + + QgOmquhKNyY0Q4JgcBvVO1410fg= + + assets/levelshot12.png + + fZQUrEbjZm+kRzbHXpmwn3R8sQk= + + assets/levelshot2.png + + 81bq++l2yPlqoJKWhr8SPrRfZjM= + + assets/levelshot3.png + + psbcjD6h+x/pHxqmRi+SKQWzPIY= + + assets/levelshot4.png + + G6zXxSUI8dFWqvwKRPuxKOnKp48= + + assets/levelshot5.png + + 2VTSndaAu3JAlZ39Xr/RXPxhP8U= + + assets/levelshot6.png + + /oF3S4ZzaABS6qh2SJJN+d768zk= + + assets/levelshot7.png + + iv+02IIxNV8l504ly1V+NQ7Vy14= + + assets/levelshot8.png + + mLW+HU6Lnj6Z3eCqgu3/6I3ulOU= + + assets/levelshot9.png + + RCwRwbTvWaOcq9OAZn16WtN4K48= + + assets/loading.png + + 1XGZHXKtkB7/L4y2wabtV6vilyU= + + assets/logo_small.png + + 9fcz+H+N4APCkwvvuPXK/nB71yI= + + assets/main_menu_bkg_left.png + + 6ouYrPONGUVGk/tE+RyuU2bhI58= + + assets/main_menu_bkg_right.png + + hQXf8FqdW6JAizbO+H0WUafMKRc= + + assets/reflector.png + + /EwnwE0PzEU/wzj3pHRsTYVga6Q= + + assets/select_level.png + + sQJl7oNgfKKd93bJbjAm79KOEuY= + + assets/shader1fragment.txt + + QZmis8owrDVi7eLK8muJd2OwPac= + + assets/shader1vertex.txt + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + assets/shutterstock1.png + + J+N+/qHxcwErLEGOkyGq+WElNi8= + + assets/shutterstock10.png + + uwO7IuHGpVXAkQ+tXDO1sOyF6rI= + + assets/shutterstock11.png + + lri+N0n5YSoZIlQurQeqrDFn3Q0= + + assets/shutterstock12.png + + pteTQhblWkP8sZD7CFGEj6qSPEc= + + assets/shutterstock2.png + + wint/PyIs94omiES4oglM+Q7P0w= + + assets/shutterstock3.png + + NxhjBnjuSgIuqlZWrnnHfhaWt2Y= + + assets/shutterstock4.png + + G4Xy8r9pNeFCEsmvoP5/BApHcQw= + + assets/shutterstock5.png + + hpiCg/6UPnfcbnu6jKTp6q/BTII= + + assets/shutterstock6.png + + pSKMT8jlcRUA+OdE4uWlXbcYmY8= + + assets/shutterstock7.png + + mQTT2IYfv0L5nrcBq8SS1pW+cwY= + + assets/shutterstock8.png + + ofx293vojybuw0LIFIAGHy7PVUg= + + assets/shutterstock9.png + + iT/Yuev5yCp5o3P8qN8RkqIgI38= + + assets/slide_up_btn.png + + G+TeiITJY2LaScFdoNGnaAYWb1A= + + assets/tap_to_continue_btn.png + + NDEqYDLOQ8WcDBfn9H5muu7lG1g= + + assets/wall_bonus.png + + hlIq6f0Gn6hdnz+5VqDG2xB8YOk= + + assets/wall_left.png + + WHYD1I3sOfmktsUSJh4lwnHxSRU= + + assets/wall_right.png + + gj+coCef36b8m++fAgIeuT6mgvM= + + assets/wall_up.png + + uLKWlHwMKFEvqOHngFSzVRixvEw= + + embedded.mobileprovision + + 6JJAza1TapDYgUP+/zCDySZ2/oQ= + + en.lproj/InfoPlist.strings + + hash + + zmV6UqBSo6r1NOz798vd5O4zTBA= + + optional + + + en.lproj/ViewController_iPad.nib + + hash + + EI2vhPv5w7glzcp21v1z9zxWGJk= + + optional + + + en.lproj/ViewController_iPhone.nib + + hash + + xoUOafPTdiCNsxUMlStTS3zz2fQ= + + optional + + + iTunesArtwork + + iroP/vUIOJrGVq03D9Pyk5a+L88= + + libswiftRemoteMirror.dylib + + mLrp2x+8MghtTSKcEXuNhKvPh74= + + + files2 + + Frameworks/libswiftCore.dylib + + hash + + 8qNCsqoIkT4fJq8ejLUJsYBTIek= + + hash2 + + +4a+YkDhdaWh03WzYiqMFyIA1/xaqeYU4qJzjObpm0Q= + + + Frameworks/libswiftCoreGraphics.dylib + + hash + + bE8sLvjGrZTIRIE5jpusEnQvnZE= + + hash2 + + 4Lb8MuXXk60Qjuif4XQoXKq03A7EXtPp87jWY8n6qJA= + + + Frameworks/libswiftCoreImage.dylib + + hash + + eP/sodmUQusI/tBTuJpJCtfi5l8= + + hash2 + + 2l3AWlyYT16GXThkVNgVRjikcJjqfJvAw1u0crOOVTk= + + + Frameworks/libswiftDarwin.dylib + + hash + + +IQQgwWaV+9PtS2eDP4QYDcxszg= + + hash2 + + 1Z80Z7hs0ei+o43HPTZjMZWnoAIQ1RhAoxMZHmKzkWQ= + + + Frameworks/libswiftDispatch.dylib + + hash + + i44z3ey5oc0uhTMEde5aaMB81KE= + + hash2 + + vhCZlUdJrqLh/ZyDwzVJwpH3iI5ghtDwn5Omo340veE= + + + Frameworks/libswiftFoundation.dylib + + hash + + PSLEZHqMIeZjp/eR+BOooHigM+Y= + + hash2 + + Ss/LA1YWCiwJipiTJifktLGmaVB8Mvm1n9vJaeSCE/I= + + + Frameworks/libswiftGLKit.dylib + + hash + + ThoQizRg0ysCCrVw6kiLn9a4nec= + + hash2 + + v9c9MS5FIoJsXAgsdS8anV1434SrKpfcQhzVmhbGRNs= + + + Frameworks/libswiftObjectiveC.dylib + + hash + + mIgDQNfp5sKVkUkX335b98B8V+E= + + hash2 + + co2uJ/UndSkk+aPJWZENPWZB2ZS/hmM8sv9b8GAK508= + + + Frameworks/libswiftQuartzCore.dylib + + hash + + oSPHsXJ54ZzqOb+BFt/aSc3LPys= + + hash2 + + 9HiC6LBcnRq2XBvmYhxTijmIW+orAiZ9N/vkqttPjI4= + + + Frameworks/libswiftSwiftOnoneSupport.dylib + + hash + + 5PTT9HLZ0v071GULIg1DZicLKRM= + + hash2 + + HwMWym53FjLyoi3pqVNMlwO8vUyfc94eRK37TGkzHV8= + + + Frameworks/libswiftUIKit.dylib + + hash + + 3d/lcyE8Z1m6KpCzO1tyJc4E334= + + hash2 + + gWchrvhKAWfpGxf3Go5+5HSILj0GkfG7vFXy5jjhC7Y= + + + Frameworks/libswiftsimd.dylib + + hash + + Hi9V8W7kWK3GeQ/cu5yEkERbKT0= + + hash2 + + aMiBvWRqGh1KEZVykQWtvt6RygD/4xhBoCXFs+Rhquk= + + + Icon.png + + hash + + AH/+qXgIkSR1CROef+hi+PgSeKk= + + hash2 + + WqzyCbmvSa5y4jmx1Z1NlrwFyPn5+1Ob94c59hjUPdY= + + + Splash-landscape.png + + hash + + 2ClxSP3FpZJxZVXIeSC+BTMwZmQ= + + hash2 + + HaCMimbuQE8I0u4E44if/qaZ/oWgHRJfr3ohHTgQNis= + + + assets/back_btn.png + + hash + + cKocOdMSaDy9rLnrRuhr73mVJr0= + + hash2 + + nJ+qMe2cJKfJNFsBZSsruaS8qaFYAWty6h9FUUJLtcY= + + + assets/ball.png + + hash + + p3x2bvFpLZtZadD/+0bzOVIdCDY= + + hash2 + + XAfVHYd7Gblff+uuAm2VnpjFHhE8X8+VtUnBqL4h4y4= + + + assets/ball_glow.png + + hash + + TxNUcKaKOgVRRsOoLJOGJiOSqxs= + + hash2 + + tIRCQPMii2WrTaEbN0DrB2r2obvLp/lBbWebxNbdXFg= + + + assets/block1.png + + hash + + IIawPQREOo16NYtXkyN0eu4i5m4= + + hash2 + + M4yTmOdOvxRKqtQJpEI5i+fz2eo7RgDca6eXg8pwDVY= + + + assets/block2.png + + hash + + MPKLXgXkGbWjKTUCgmGqDqnJuYE= + + hash2 + + UZVfZfAoD4eRH3zHcIwFhJjzaC0JYUNFINq8xQcaP3w= + + + assets/block3.png + + hash + + OjD5Z9UekQP3TrpxYQkejqhWhKU= + + hash2 + + 3qaNgJc1gvQFRuEfBQrN7mGZSmImdhiV/T64TEVlni4= + + + assets/bonus_floor.png + + hash + + mvz/9luojo0KlKzyXW5VbOfCO3M= + + hash2 + + 2DwdKi4Li18oh8XtpAQwQDL2UwD+Da5KoznU1uggXi4= + + + assets/bonus_gothrough.png + + hash + + 7iuheryhPjVaO2Tds3hygN5OaW4= + + hash2 + + teQkvQHqPBnEQgL8Nniz8fl7K1t7CM2RMGTB9OqG17U= + + + assets/bonus_multiplier.png + + hash + + hnjblhor6K9IjeGDdLoQnVPDsqQ= + + hash2 + + y3QfCPivooCpnD6GSckIKUV3v900RdRn4bh3NWviLGY= + + + assets/brickshader_fragment.txt + + hash + + O/CvlL6PBmgmNL4ldNEn1LbPtwg= + + hash2 + + EC/3Zi9ZElezjI5aeZztAjY4MWmrunNFr9ZEpSmCw7E= + + + assets/brickshader_vertex.txt + + hash + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + hash2 + + fV3ceQCAuWZ+CehVUzqdBqBkxrjihv7+5eJOpSybIUw= + + + assets/console_bkg.bmp + + hash + + dCgOwtIZ5hup4Po98l6POD2bYxQ= + + hash2 + + SLehlTw1rFH7lwl4ekur3NZtzIK9uafdCjBa0BFys3k= + + + assets/credits.png + + hash + + c37z8x/0le3nu2Uvis/7YTR609I= + + hash2 + + VfzKsc7sHcI5ZnzLmjB1O9ci7mKXH0sMzPPVAeygoag= + + + assets/droid_sans14_font_bitmap.png + + hash + + UXMXUoeassw6//f9ZuUISvPwc9U= + + hash2 + + WhhibDaM1WnKciEWf/WtYAZM7o88AR6L3S7bYtMRzAc= + + + assets/droid_sans14_font_charmap.txt + + hash + + VHGJtdVLKi8DQvp3wSRG8TiqYTk= + + hash2 + + O7UT/96xev1Uw1ubdVi9ZtwSW8T+XKf6c/21P8ohH4U= + + + assets/frameshader_fragment.txt + + hash + + IK3KYFtysPjh22YU8rUMdruKryI= + + hash2 + + nh0LyErDycsQGqbWl4W57sqLiJV/8CfBkAERSYMIdAU= + + + assets/frameshader_vertex.txt + + hash + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + hash2 + + fV3ceQCAuWZ+CehVUzqdBqBkxrjihv7+5eJOpSybIUw= + + + assets/game_end.png + + hash + + Ay1MwmcctVlLphpxKtrpBBuspv4= + + hash2 + + Go8cBNcuvSRuIGxl91apbb11UkEZgGDLi98nNy3gOVw= + + + assets/level1.txt + + hash + + QYjbaPRcMyefTLjeplZqMfouvVQ= + + hash2 + + pO41hym+FlewbBqAUWNLkLUxepgGMPFiaqSZchbSt6s= + + + assets/level10.txt + + hash + + xmfwdUvnfTiUJE/OikHbbmZawDY= + + hash2 + + +UmoKeYryRZQ0Hep1PV1NoQVBg4wc6Wr16m6Bo6Y2bk= + + + assets/level11.txt + + hash + + 5ATGSjYvohdDJxKXv0j/oBFVghA= + + hash2 + + qSHM69R9l9dq6fsePffS586RapykMKcA1dN5D6VpNS4= + + + assets/level12.txt + + hash + + kzn/U+BupsxycKBuz6OqQD9+niE= + + hash2 + + aNA1LjK6vF0p2lxiOAoZQz7O2WzQ/0KdgZnAPEBH7bM= + + + assets/level1ogg.ogg + + hash + + FTHSFgugybJ7qs6yRbtgjlNRKSw= + + hash2 + + j1at5s33mhUFvcijU8PXVwmTGeJYmiwhFeTWhXwOV1k= + + + assets/level2.txt + + hash + + peitD0ieKTIeeXZ5f+kU9T7uGF8= + + hash2 + + jrFLfI0KAVmgUGpPDKEAXdk9LckszEIDroEJFm0PEsI= + + + assets/level3.txt + + hash + + 9wtRUR7oEZ7AnVQqkFIpTJip9n4= + + hash2 + + wHe7geUAI2wzob/y5lEMWlfH1iEZCXgLtlwyzrAuXF4= + + + assets/level4.txt + + hash + + LmbYihT6fA88tNV0yXIVqBY5iOI= + + hash2 + + j8u8lw7z9+sKOr5x2uXmoKI87eDWrrwjtgDeygAY+fo= + + + assets/level5.txt + + hash + + hc7cINmVG5MmmQju0dym/Lboqmk= + + hash2 + + 6/tLXgIXJ/jB59Y+NFSH/i2lJWTdjO+EGvUzNDNqJ1M= + + + assets/level6.txt + + hash + + l2jEC5a63OymBw4VTf1Ogmq23Jw= + + hash2 + + jRV6OMTBOhcVBW9FAJutegF9fG6dt4+PSUxJDqOkuf0= + + + assets/level7.txt + + hash + + pjumB3VjgzBoE1pgXzYNv6CskAs= + + hash2 + + 2sgFk4J0Nssntty+8eVuoJVQQ7NCnYg9PVernEL3Dg4= + + + assets/level8.txt + + hash + + XOqc7bSiijnh+gtOfcCEpJRpHmI= + + hash2 + + MK1FxFoM5QrsobK3vULwSox3xN8Kxh7fAVcZc2nQr28= + + + assets/level9.txt + + hash + + KKBCfDuWfcoO65yYzocq/Zj9ZuU= + + hash2 + + NKZGE1mFkBZUyGakc5QhuhW5VAw5TGN6Eu5e7HNzO5c= + + + assets/levelshot1.png + + hash + + 4v+4s2cEGaix/CCNzQgV/2IEHxo= + + hash2 + + cOr8zcfnXfSwE48DgHhVIiwoN+DofLPzBc6Aandcwh4= + + + assets/levelshot10.png + + hash + + vuYuSY9U4Dh3RIasMcr3nngFvXI= + + hash2 + + qywElOvAsvHn7uD/b/d1G7RBgPNz3RCO92y0c7qMecE= + + + assets/levelshot11.png + + hash + + QgOmquhKNyY0Q4JgcBvVO1410fg= + + hash2 + + Pe71Pdl39CrTBfIpIxdZ5mnrkFekSYMpEuuCJx0tOTo= + + + assets/levelshot12.png + + hash + + fZQUrEbjZm+kRzbHXpmwn3R8sQk= + + hash2 + + TzOYHxuuxzXT2K6t6g7MsK0x1uozugmBK7L8HaGin6s= + + + assets/levelshot2.png + + hash + + 81bq++l2yPlqoJKWhr8SPrRfZjM= + + hash2 + + wp1QoleDf0XHwrve2FC8ZkG5DGV6NrcJpD6AtAeyNAY= + + + assets/levelshot3.png + + hash + + psbcjD6h+x/pHxqmRi+SKQWzPIY= + + hash2 + + +UYznZlmEJwSgGDu5zzFzRUFXRMB4iM4IDINFwWpaB0= + + + assets/levelshot4.png + + hash + + G6zXxSUI8dFWqvwKRPuxKOnKp48= + + hash2 + + ca2gPe3RZSIrtZkd8J8qicS+s9s63ymBgFkbRtN1/Ns= + + + assets/levelshot5.png + + hash + + 2VTSndaAu3JAlZ39Xr/RXPxhP8U= + + hash2 + + jTU6nWJ3eGlXzgUbvRpNmxIle9cwPuzGyXX7B1FYXaM= + + + assets/levelshot6.png + + hash + + /oF3S4ZzaABS6qh2SJJN+d768zk= + + hash2 + + P0sYjzrGFHrwNMkK1I4T4jKdPVBZwAtG+g4MbCJfwjc= + + + assets/levelshot7.png + + hash + + iv+02IIxNV8l504ly1V+NQ7Vy14= + + hash2 + + qPX68FMVwjBha4VwABTBcRBwaGIG5WkGNk3Arl2JWSg= + + + assets/levelshot8.png + + hash + + mLW+HU6Lnj6Z3eCqgu3/6I3ulOU= + + hash2 + + 4AnCjNCoeG4yqffvAZzOw24SsIjVEO7anXe9m4DrVZw= + + + assets/levelshot9.png + + hash + + RCwRwbTvWaOcq9OAZn16WtN4K48= + + hash2 + + oGJkjMvN/23xCGsDumax+PYUsDhUWWg0Ity6AEx3zFA= + + + assets/loading.png + + hash + + 1XGZHXKtkB7/L4y2wabtV6vilyU= + + hash2 + + BOuANSJs8EyYgJUHJCJoPhiTm4Mhv93gOPaoMBcFRQM= + + + assets/logo_small.png + + hash + + 9fcz+H+N4APCkwvvuPXK/nB71yI= + + hash2 + + p9Nbw8WBeTs2bQPFLedifotpyyeiX3sQHPNPB3NANI4= + + + assets/main_menu_bkg_left.png + + hash + + 6ouYrPONGUVGk/tE+RyuU2bhI58= + + hash2 + + MlIl7A/NMXTCwpqHPK5FIfM2F3PbOMfPVZWC98bOwsQ= + + + assets/main_menu_bkg_right.png + + hash + + hQXf8FqdW6JAizbO+H0WUafMKRc= + + hash2 + + a8Z0wnLtbP5epnd5Gi0K5b4H+toUZk7GEqKXEsU1bv0= + + + assets/reflector.png + + hash + + /EwnwE0PzEU/wzj3pHRsTYVga6Q= + + hash2 + + RNMbJdq4+UuahMZvcXEdvcAHc875OedYMEVSO/anJjk= + + + assets/select_level.png + + hash + + sQJl7oNgfKKd93bJbjAm79KOEuY= + + hash2 + + QYEXpFaVRtO4CB13KJEqm9JPoYonZcjQU0PgGZm4zx8= + + + assets/shader1fragment.txt + + hash + + QZmis8owrDVi7eLK8muJd2OwPac= + + hash2 + + cvP6o8QZETZV5Ko7tM0wk8pV+GRQMbUUInsY0dEUIB0= + + + assets/shader1vertex.txt + + hash + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + hash2 + + fV3ceQCAuWZ+CehVUzqdBqBkxrjihv7+5eJOpSybIUw= + + + assets/shutterstock1.png + + hash + + J+N+/qHxcwErLEGOkyGq+WElNi8= + + hash2 + + cGI7VXprpbwBMwVdnetiGqnCThlhSw6Qtp9AjvWzIGE= + + + assets/shutterstock10.png + + hash + + uwO7IuHGpVXAkQ+tXDO1sOyF6rI= + + hash2 + + HRAsT+5SVPn7YsYxQ3bzD5h5KZ897jcMq+srficvQLE= + + + assets/shutterstock11.png + + hash + + lri+N0n5YSoZIlQurQeqrDFn3Q0= + + hash2 + + 6AvqyMy5izGIcVQYrv0SiIgnQyEdbX3ApFJV+BXNFpA= + + + assets/shutterstock12.png + + hash + + pteTQhblWkP8sZD7CFGEj6qSPEc= + + hash2 + + mb2NXXFJkS8h48Z5hBU2rX4CM0wv4D6eqYa5m12WAFE= + + + assets/shutterstock2.png + + hash + + wint/PyIs94omiES4oglM+Q7P0w= + + hash2 + + i9r4fjJxW8UHv8sXby1u0TPOGpjNmfe+v7JJ/swfVSc= + + + assets/shutterstock3.png + + hash + + NxhjBnjuSgIuqlZWrnnHfhaWt2Y= + + hash2 + + 2lQ+bi2M6rcmPjTfL1ioLi5UHf5LTkSqYcCUQWr2z6A= + + + assets/shutterstock4.png + + hash + + G4Xy8r9pNeFCEsmvoP5/BApHcQw= + + hash2 + + WKNydbk903LFzfk0LZeBVbj+hF6tImpN7bgMNluh/rg= + + + assets/shutterstock5.png + + hash + + hpiCg/6UPnfcbnu6jKTp6q/BTII= + + hash2 + + i7mO1owHjlP1cj7wHwKwI1oYhhmUAKgRFbnrIbtjkWg= + + + assets/shutterstock6.png + + hash + + pSKMT8jlcRUA+OdE4uWlXbcYmY8= + + hash2 + + D9KSRjIKuOXYef76JGQl819mSKhdx/t4Zxi5mrHiLvU= + + + assets/shutterstock7.png + + hash + + mQTT2IYfv0L5nrcBq8SS1pW+cwY= + + hash2 + + xbrMl5i16xSnqEMxpC0GRGRo9fLvSDhvnDcZa2DghF0= + + + assets/shutterstock8.png + + hash + + ofx293vojybuw0LIFIAGHy7PVUg= + + hash2 + + PQcNxNKEXpHAFgDAd0u5T5yvN+jq//b7k578FbUOd1M= + + + assets/shutterstock9.png + + hash + + iT/Yuev5yCp5o3P8qN8RkqIgI38= + + hash2 + + AHc2aCldeuBcA042/rTWH3QRipmHtJkuIBTn2op2mqs= + + + assets/slide_up_btn.png + + hash + + G+TeiITJY2LaScFdoNGnaAYWb1A= + + hash2 + + 64rZxT2AeNfmY9iIehQPDZXY2dcleO1ZlyaOgHS/j0Y= + + + assets/tap_to_continue_btn.png + + hash + + NDEqYDLOQ8WcDBfn9H5muu7lG1g= + + hash2 + + ssv5N6+qT9U1CY0v2iLj7bM9mA77zYedrPWJpeoH27U= + + + assets/wall_bonus.png + + hash + + hlIq6f0Gn6hdnz+5VqDG2xB8YOk= + + hash2 + + 5yMgjUtLFnPM/ynwWpAbp4QgCtnr3mCwgbOsl+eaWSQ= + + + assets/wall_left.png + + hash + + WHYD1I3sOfmktsUSJh4lwnHxSRU= + + hash2 + + Kn61w2nTCU+ZH0LYFvh+kfyH4Kr7/k7JqwK1/9OHYp0= + + + assets/wall_right.png + + hash + + gj+coCef36b8m++fAgIeuT6mgvM= + + hash2 + + hqIvPQnlkSGA5fl/BvKpgoWGaWNwnvAvC+Yy6PC/mUA= + + + assets/wall_up.png + + hash + + uLKWlHwMKFEvqOHngFSzVRixvEw= + + hash2 + + KMRPmkHC0iDid3M9yYVUuv9eGemuJf3n6DBnylaPMZs= + + + embedded.mobileprovision + + hash + + 6JJAza1TapDYgUP+/zCDySZ2/oQ= + + hash2 + + GPwT1jfn/4h8Rywfespl52/cPTpVaoucyYN+XlbPZIA= + + + en.lproj/InfoPlist.strings + + hash + + zmV6UqBSo6r1NOz798vd5O4zTBA= + + hash2 + + kmHsztpgjvF0JW5f3HdMHm49z1M0CcG8OT1JDQHHE/E= + + optional + + + en.lproj/ViewController_iPad.nib + + hash + + EI2vhPv5w7glzcp21v1z9zxWGJk= + + hash2 + + WcFYTSuxUXrQyL+0LQM59EeX+KkF3ANyboZMGzCUZjU= + + optional + + + en.lproj/ViewController_iPhone.nib + + hash + + xoUOafPTdiCNsxUMlStTS3zz2fQ= + + hash2 + + JjxDGkE87R1VH5Q/51nLjubJkkrSKVxezLcbj0erkqc= + + optional + + + iTunesArtwork + + hash + + iroP/vUIOJrGVq03D9Pyk5a+L88= + + hash2 + + Tw0M7i7bNyeNfA2g0HvvGgep81XW1V8MDU75WwMGcQ8= + + + libswiftRemoteMirror.dylib + + hash + + mLrp2x+8MghtTSKcEXuNhKvPh74= + + hash2 + + Go03DiejVy4I0hbMBt6BXhrfUSjAaUplborBU6pqECg= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/back_btn.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/back_btn.png new file mode 100755 index 0000000..4176c8b Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/back_btn.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/ball.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/ball.png new file mode 100755 index 0000000..4a2cfc5 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/ball.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/ball_glow.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/ball_glow.png new file mode 100755 index 0000000..5fc1138 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/ball_glow.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block1.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block1.png new file mode 100755 index 0000000..8cd98ae Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block1.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block2.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block2.png new file mode 100755 index 0000000..d38c770 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block2.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block3.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block3.png new file mode 100755 index 0000000..2faf8e7 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/block3.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_floor.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_floor.png new file mode 100755 index 0000000..58648e9 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_floor.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_gothrough.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_gothrough.png new file mode 100755 index 0000000..a7eb20c Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_gothrough.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_multiplier.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_multiplier.png new file mode 100755 index 0000000..4efbc80 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/bonus_multiplier.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/brickshader_fragment.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/brickshader_fragment.txt new file mode 100755 index 0000000..ab2ef56 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/brickshader_fragment.txt @@ -0,0 +1,15 @@ +precision mediump float; +uniform sampler2D Texture; +uniform float Transparency; +uniform vec4 BrickColor; +varying vec2 texCoord; + +void main() +{ + vec4 color = BrickColor * texture2D(Texture,texCoord).rgba; + + gl_FragColor = vec4(color.rgb, color.a * Transparency); + + + +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/brickshader_vertex.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/brickshader_vertex.txt new file mode 100755 index 0000000..72d9f46 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/brickshader_vertex.txt @@ -0,0 +1,12 @@ +attribute vec3 vPosition; +attribute vec2 vTexCoord; +varying vec2 texCoord; + +uniform mat4 ProjectionMatrix; + +void main() +{ + //480x320 + gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0); + texCoord = vTexCoord; +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/console_bkg.bmp b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/console_bkg.bmp new file mode 100755 index 0000000..d32ee4c Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/console_bkg.bmp differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/credits.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/credits.png new file mode 100755 index 0000000..6debee7 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/credits.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/droid_sans14_font_bitmap.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/droid_sans14_font_bitmap.png new file mode 100755 index 0000000..b7d1985 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/droid_sans14_font_bitmap.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/droid_sans14_font_charmap.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/droid_sans14_font_charmap.txt new file mode 100755 index 0000000..f17cd0b --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/droid_sans14_font_charmap.txt @@ -0,0 +1,95 @@ +32 0.00976562 0.0195312 0 0.0546875 0 0 0.0078125 +49 0.0195312 0.0195312 0.00390625 0.015625 0.0078125 0.0390625 0.015625 +50 0.0371094 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +51 0.0605469 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +52 0.0820312 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +53 0.105469 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +54 0.126953 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +55 0.148438 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +56 0.169922 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +57 0.191406 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +48 0.212891 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +97 0.234375 0.0195312 0.00195312 0.0234375 0.00976562 0.03125 0.0136719 +98 0.253906 0.0195312 0.00195312 0.0117188 0.0117188 0.0429688 0.015625 +99 0.275391 0.0195312 0.00195312 0.0234375 0.00976562 0.03125 0.0136719 +100 0.294922 0.0195312 0.00195312 0.0117188 0.0117188 0.0429688 0.015625 +101 0.316406 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +102 0.337891 0.0195312 0 0.0117188 0.00976562 0.0429688 0.0078125 +103 0.357422 0.0195312 0.00195312 0.0234375 0.0136719 0.0429688 0.0136719 +104 0.380859 0.0195312 0.00195312 0.0117188 0.0117188 0.0429688 0.015625 +105 0.402344 0.0195312 0 0.0117188 0.00585938 0.0429688 0.0078125 +106 0.417969 0.0195312 -0.00195312 0.0117188 0.0078125 0.0546875 0.0078125 +107 0.435547 0.0195312 0.00195312 0.0117188 0.0136719 0.0429688 0.0136719 +108 0.458984 0.0195312 0.00195312 0.0117188 0.00390625 0.0429688 0.0078125 +109 0.472656 0.0195312 0.00195312 0.0234375 0.0214844 0.03125 0.0253906 +110 0.503906 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +111 0.525391 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +112 0.546875 0.0195312 0.00195312 0.0234375 0.0117188 0.0429688 0.015625 +113 0.568359 0.0195312 0.00195312 0.0234375 0.0117188 0.0429688 0.015625 +114 0.589844 0.0195312 0.00195312 0.0234375 0.0078125 0.03125 0.00976562 +115 0.607422 0.0195312 0 0.0234375 0.0117188 0.03125 0.0136719 +116 0.628906 0.0195312 0 0.015625 0.00976562 0.0390625 0.00976562 +117 0.648438 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +118 0.669922 0.0195312 -0.00195312 0.0234375 0.0175781 0.03125 0.0136719 +119 0.697266 0.0195312 -0.00195312 0.0234375 0.0234375 0.03125 0.0195312 +120 0.730469 0.0195312 0 0.0234375 0.0136719 0.03125 0.0136719 +121 0.753906 0.0195312 -0.00195312 0.0234375 0.0175781 0.0429688 0.0136719 +122 0.78125 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.0136719 +65 0.802734 0.0195312 -0.00195312 0.015625 0.0214844 0.0390625 0.0175781 +66 0.833984 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.0175781 +67 0.857422 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +68 0.880859 0.0195312 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +69 0.90625 0.0195312 0.00195312 0.015625 0.00976562 0.0390625 0.0136719 +70 0.925781 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.0136719 +71 0.947266 0.0195312 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +72 0.00976562 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +73 0.0351562 0.09375 0 0.015625 0.00976562 0.0390625 0.00976562 +74 0.0546875 0.09375 -0.00390625 0.015625 0.00976562 0.0507812 0.00585938 +75 0.0742188 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.015625 +76 0.0996094 0.09375 0.00195312 0.015625 0.0117188 0.0390625 0.0136719 +77 0.121094 0.09375 0.00195312 0.015625 0.0195312 0.0390625 0.0234375 +78 0.150391 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +79 0.175781 0.09375 0.00195312 0.015625 0.0175781 0.0390625 0.0214844 +80 0.203125 0.09375 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +81 0.224609 0.09375 0.00195312 0.015625 0.0175781 0.046875 0.0214844 +82 0.251953 0.09375 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +83 0.275391 0.09375 0 0.015625 0.0136719 0.0390625 0.0136719 +84 0.298828 0.09375 0 0.015625 0.0136719 0.0390625 0.0136719 +85 0.322266 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +86 0.347656 0.09375 -0.00195312 0.015625 0.0195312 0.0390625 0.015625 +87 0.376953 0.09375 -0.00195312 0.015625 0.0292969 0.0390625 0.0253906 +88 0.416016 0.09375 -0.00195312 0.015625 0.0195312 0.0390625 0.015625 +89 0.445312 0.09375 -0.00195312 0.015625 0.0175781 0.0390625 0.0136719 +90 0.472656 0.09375 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +46 0.494141 0.09375 0.00195312 0.046875 0.00390625 0.0078125 0.0078125 +44 0.507812 0.09375 0.00195312 0.046875 0.00390625 0.0117188 0.0078125 +58 0.521484 0.09375 0.00195312 0.0234375 0.00390625 0.03125 0.0078125 +59 0.535156 0.09375 0.00195312 0.0234375 0.00390625 0.0351562 0.0078125 +64 0.548828 0.09375 0.00195312 0.015625 0.0195312 0.0429688 0.0234375 +35 0.578125 0.09375 0 0.015625 0.015625 0.0390625 0.0175781 +36 0.603516 0.09375 0.00195312 0.0117188 0.0117188 0.046875 0.015625 +37 0.625 0.09375 0.00195312 0.015625 0.0195312 0.0390625 0.0234375 +94 0.654297 0.09375 0 0.015625 0.0136719 0.0234375 0.0136719 +38 0.677734 0.09375 0.00195312 0.015625 0.0175781 0.0390625 0.0195312 +42 0.705078 0.09375 0 0.0117188 0.0136719 0.0234375 0.015625 +33 0.728516 0.09375 0.00195312 0.015625 0.00390625 0.0390625 0.0078125 +63 0.742188 0.09375 0 0.015625 0.00976562 0.0390625 0.0117188 +40 0.761719 0.09375 0.00195312 0.015625 0.0078125 0.046875 0.0078125 +41 0.779297 0.09375 0 0.015625 0.00585938 0.046875 0.0078125 +91 0.794922 0.09375 0.00195312 0.015625 0.00585938 0.046875 0.0078125 +93 0.810547 0.09375 0 0.015625 0.00585938 0.046875 0.0078125 +123 0.826172 0.09375 0 0.015625 0.00976562 0.046875 0.00976562 +125 0.845703 0.09375 0 0.015625 0.00976562 0.046875 0.00976562 +60 0.865234 0.09375 0.00195312 0.0234375 0.0117188 0.0273438 0.015625 +62 0.886719 0.09375 0.00195312 0.0234375 0.0117188 0.0273438 0.015625 +95 0.908203 0.09375 0 0.0585938 0.0117188 0.00390625 0.0117188 +45 0.929688 0.09375 0.00195312 0.0390625 0.00585938 0.0078125 0.00976562 +43 0.945312 0.09375 0 0.0234375 0.0136719 0.0273438 0.015625 +61 0.00976562 0.167969 0 0.0273438 0.0136719 0.0195312 0.015625 +124 0.0332031 0.167969 0.00585938 0.0117188 0.00390625 0.0546875 0.0136719 +92 0.046875 0.167969 -0.00195312 0.015625 0.0136719 0.0390625 0.00976562 +47 0.0703125 0.167969 -0.00195312 0.015625 0.0136719 0.0390625 0.00976562 +126 0.09375 0.167969 0.00195312 0.03125 0.0117188 0.0117188 0.015625 +96 0.115234 0.167969 0.00585938 0.0117188 0.00585938 0.0078125 0.015625 +34 0.130859 0.167969 0.00195312 0.015625 0.00976562 0.015625 0.0117188 +39 0.150391 0.167969 0.00195312 0.015625 0.00390625 0.015625 0.00585938 \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/frameshader_fragment.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/frameshader_fragment.txt new file mode 100755 index 0000000..2781075 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/frameshader_fragment.txt @@ -0,0 +1,12 @@ +precision mediump float; +uniform sampler2D Texture; +uniform float Brightness; +varying vec2 texCoord; + +void main() +{ + vec3 color = texture2D(Texture,texCoord).rgb; + + gl_FragColor = vec4(color * Brightness, 1.0); + +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/frameshader_vertex.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/frameshader_vertex.txt new file mode 100755 index 0000000..72d9f46 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/frameshader_vertex.txt @@ -0,0 +1,12 @@ +attribute vec3 vPosition; +attribute vec2 vTexCoord; +varying vec2 texCoord; + +uniform mat4 ProjectionMatrix; + +void main() +{ + //480x320 + gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0); + texCoord = vTexCoord; +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/game_end.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/game_end.png new file mode 100755 index 0000000..e7fb288 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/game_end.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level1.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level1.txt new file mode 100755 index 0000000..4098cd8 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level1.txt @@ -0,0 +1,33 @@ +0, 255, 255, 255 +0, 0, 0, 255 +255, 0, 0, 255 +255, 40, 40, 255 +255, 128, 128, 255 +Colormap +111111111111 +111111111111 +111111111111 +222222222222 +222222222222 +222222222222 +222222222222 +333333333333 +333333333333 +333333333333 +000000000000 +000000000000 +000000000000 +Brickmap +111111111111 +111111111111 +111111111111 +000000000000 +111111111111 +111111111111 +000000000000 +111111111111 +111111111111 +000000000000 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level10.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level10.txt new file mode 100755 index 0000000..85caa92 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level10.txt @@ -0,0 +1,32 @@ +0, 255, 255, 255 +0, 0, 0, 255 +255, 0, 190, 255 +255, 0, 255, 255 +Colormap +002222222200 +002222222200 +000222222000 +000022220000 +111002200111 +111100001111 +011110011110 +001111111100 +000111111000 +000011110000 +000001100000 +000000000000 +000000000000 +Brickmap +002111111200 +002211112200 +000221122000 +000022220000 +111002200111 +221100001122 +022110011220 +002211112200 +000221122000 +000022220000 +000002200000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level11.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level11.txt new file mode 100755 index 0000000..e9570db --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level11.txt @@ -0,0 +1,33 @@ +255, 255, 255, 255 +0, 0, 0, 255 +0, 237, 255, 255 +0, 144, 255, 255 +0, 59, 255, 255 +Colormap +333333333333 +333333333333 +333333333333 +000000000000 +222220022222 +222220022222 +222220022222 +000000000000 +111110011111 +111110011111 +111110011111 +000000000000 +000000000000 +Brickmap +111111111111 +111111111111 +222222222222 +000000000000 +111110011111 +111110011111 +222220022222 +000000000000 +111110011111 +111110011111 +333330033333 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level12.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level12.txt new file mode 100755 index 0000000..3284830 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level12.txt @@ -0,0 +1,32 @@ +255, 128, 128, 255 +0, 0, 0, 255 +159, 240, 255, 255 +0, 148, 255, 255 +Colormap +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +Brickmap +000311113000 +000311113000 +333311113333 +111111111111 +111111111111 +222221122222 +333321123333 +000321123000 +000321123000 +000322223000 +000333333000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level1ogg.ogg b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level1ogg.ogg new file mode 100755 index 0000000..ce86d31 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level1ogg.ogg differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level2.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level2.txt new file mode 100755 index 0000000..c1bd395 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level2.txt @@ -0,0 +1,32 @@ +255, 0, 0, 255 +0, 0, 0, 255 +0, 255, 255, 255 +7, 255, 189, 255 +Colormap +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +000000000000 +Brickmap +111011110111 +111011110111 +222022220222 +000000000000 +111011110111 +222022220222 +000000000000 +111000000111 +222000000222 +000000000000 +222222222222 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level3.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level3.txt new file mode 100755 index 0000000..8a9521e --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level3.txt @@ -0,0 +1,33 @@ +0, 255, 255, 255 +0, 0, 0, 255 +0, 151, 113, 255 +7, 255, 189, 255 +128, 143, 128, 255 +Colormap +000000000000 +033333333330 +031111111130 +031111111130 +033333333330 +000000000000 +033330033330 +032230032230 +032230032230 +033330033330 +000000000000 +000000000000 +000000000000 +Brickmap +000000000000 +022222222220 +021111111120 +021111111120 +022222222220 +000000000000 +022220022220 +021120021120 +021120021120 +022220022220 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level4.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level4.txt new file mode 100755 index 0000000..7c83fc1 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level4.txt @@ -0,0 +1,33 @@ +255, 0, 0, 255 +0, 0, 0, 255 +101, 97, 255, 255 +5, 186, 255, 255 +105, 201, 255, 255 +Colormap +000000333333 +000003333333 +000033311111 +333333133333 +333331333333 +333313333333 +111133311111 +333333100000 +333331000000 +333310000000 +111100000000 +000000000000 +000000000000 +Brickmap +000000111111 +000001111111 +000011133333 +111111311111 +111113111111 +111131111111 +333311133333 +111111300000 +111113000000 +111130000000 +333300000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level5.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level5.txt new file mode 100755 index 0000000..1a5d7c4 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level5.txt @@ -0,0 +1,32 @@ +255, 0, 255, 255 +0, 0, 0, 255 +163, 255, 198, 255 +0, 255, 182, 255 +Colormap +000022220000 +000222222000 +000022220000 +111000000111 +111100001111 +111110011111 +111111111111 +111111111111 +111111111111 +111111111111 +000000000000 +000000000000 +000000000000 +Brickmap +000033330000 +000311113000 +000033330000 +111000000111 +111100001111 +111110011111 +111111111111 +111111111111 +111111111111 +222222222222 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level6.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level6.txt new file mode 100755 index 0000000..cf32e5e --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level6.txt @@ -0,0 +1,33 @@ +255, 255, 255, 255 +0, 0, 0, 255 +255, 200, 5, 255 +255, 153, 0, 255 +255, 97, 0, 255 +Colormap +000000000000 +000333000333 +000333000333 +000333000333 +222000222000 +222000222000 +222000222000 +000111000111 +000111000111 +000111000111 +000000000000 +000000000000 +000000000000 +Brickmap +000000000000 +000222000222 +000212000212 +000222000222 +222000222000 +212000212000 +222000222000 +000222000222 +000212000212 +000222000222 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level7.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level7.txt new file mode 100755 index 0000000..5a11037 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level7.txt @@ -0,0 +1,33 @@ +255, 255, 0, 255 +0, 0, 0, 255 +230, 230, 230, 255 +195, 195, 195, 255 +150, 150, 150, 255 +Colormap +333333333333 +030030030030 +030030030030 +030030030030 +222222222222 +020020020020 +020020020020 +010010010010 +010010010010 +020020020020 +000000000000 +000000000000 +000000000000 +Brickmap +111111111111 +010010010010 +010010010010 +010010010010 +222222222222 +010010010010 +010010010010 +010010010010 +010010010010 +020020020020 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level8.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level8.txt new file mode 100755 index 0000000..8e97e38 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level8.txt @@ -0,0 +1,32 @@ +0, 255, 255, 255 +0, 0, 0, 255 +217, 56, 62, 255 +132, 56, 62, 255 +Colormap +111111111111 +111111111111 +222211112222 +000211112000 +000211112000 +022211112220 +021111111120 +021111111120 +021111111120 +022222222220 +000000000000 +000000000000 +000000000000 +Brickmap +111111111111 +111111111111 +222211112222 +000211112000 +000211112000 +022211112220 +021111111120 +021111111120 +021111111120 +033333333330 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level9.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level9.txt new file mode 100755 index 0000000..e698b59 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/level9.txt @@ -0,0 +1,32 @@ +0, 255, 0, 255 +0, 0, 0, 255 +255, 221, 0, 255 +255, 0, 0, 255 +Colormap +222220022222 +222220022222 +222220022222 +222220022222 +000000000000 +111111111111 +111111111111 +000000000000 +111111111111 +111111111111 +000000000000 +000000000000 +000000000000 +Brickmap +111110011111 +111110011111 +111110011111 +222220022222 +000000000000 +111111111111 +333333333333 +000000000000 +111111111111 +222222222222 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot1.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot1.png new file mode 100755 index 0000000..48471ef Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot1.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot10.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot10.png new file mode 100755 index 0000000..de464ec Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot10.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot11.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot11.png new file mode 100755 index 0000000..96bf193 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot11.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot12.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot12.png new file mode 100755 index 0000000..4696264 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot12.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot2.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot2.png new file mode 100755 index 0000000..a9872d8 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot2.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot3.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot3.png new file mode 100755 index 0000000..02e5a20 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot3.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot4.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot4.png new file mode 100755 index 0000000..f17800d Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot4.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot5.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot5.png new file mode 100755 index 0000000..a80ca69 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot5.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot6.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot6.png new file mode 100755 index 0000000..a21edcc Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot6.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot7.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot7.png new file mode 100755 index 0000000..3875a7a Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot7.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot8.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot8.png new file mode 100755 index 0000000..6f99af8 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot8.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot9.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot9.png new file mode 100755 index 0000000..4fd00ec Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/levelshot9.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/loading.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/loading.png new file mode 100755 index 0000000..482d602 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/loading.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/logo_small.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/logo_small.png new file mode 100755 index 0000000..4596028 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/logo_small.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/main_menu_bkg_left.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/main_menu_bkg_left.png new file mode 100755 index 0000000..afd94ec Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/main_menu_bkg_left.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/main_menu_bkg_right.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/main_menu_bkg_right.png new file mode 100755 index 0000000..066d439 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/main_menu_bkg_right.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/reflector.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/reflector.png new file mode 100755 index 0000000..6d3bcd2 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/reflector.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/select_level.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/select_level.png new file mode 100755 index 0000000..9e2ee25 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/select_level.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shader1fragment.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shader1fragment.txt new file mode 100755 index 0000000..523790e --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shader1fragment.txt @@ -0,0 +1,14 @@ +precision mediump float; +uniform sampler2D Texture; +uniform float Transparency; +varying vec2 texCoord; + +void main() +{ + vec4 color = texture2D(Texture,texCoord).rgba; + + gl_FragColor = vec4(color.rgb, color.a * Transparency); + + + +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shader1vertex.txt b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shader1vertex.txt new file mode 100755 index 0000000..72d9f46 --- /dev/null +++ b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shader1vertex.txt @@ -0,0 +1,12 @@ +attribute vec3 vPosition; +attribute vec2 vTexCoord; +varying vec2 texCoord; + +uniform mat4 ProjectionMatrix; + +void main() +{ + //480x320 + gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0); + texCoord = vTexCoord; +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock1.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock1.png new file mode 100755 index 0000000..a9f949a Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock1.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock10.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock10.png new file mode 100755 index 0000000..e028dd6 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock10.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock11.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock11.png new file mode 100755 index 0000000..51f626e Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock11.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock12.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock12.png new file mode 100755 index 0000000..badbbe0 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock12.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock2.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock2.png new file mode 100755 index 0000000..c6ffbb5 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock2.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock3.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock3.png new file mode 100755 index 0000000..22b11ba Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock3.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock4.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock4.png new file mode 100755 index 0000000..5756d84 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock4.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock5.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock5.png new file mode 100755 index 0000000..fcb63f7 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock5.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock6.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock6.png new file mode 100755 index 0000000..40b1b3a Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock6.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock7.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock7.png new file mode 100755 index 0000000..12e82a6 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock7.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock8.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock8.png new file mode 100755 index 0000000..dba9cbe Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock8.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock9.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock9.png new file mode 100755 index 0000000..33ce46f Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/shutterstock9.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/slide_up_btn.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/slide_up_btn.png new file mode 100755 index 0000000..fb26969 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/slide_up_btn.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/tap_to_continue_btn.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/tap_to_continue_btn.png new file mode 100755 index 0000000..b9b51c1 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/tap_to_continue_btn.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_bonus.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_bonus.png new file mode 100755 index 0000000..7f94f41 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_bonus.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_left.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_left.png new file mode 100755 index 0000000..9baad70 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_left.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_right.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_right.png new file mode 100755 index 0000000..ab50ea3 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_right.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_up.png b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_up.png new file mode 100755 index 0000000..c14e614 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/assets/wall_up.png differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/embedded.mobileprovision b/proj.ios/build/Debug-iphoneos/salmontemplate.app/embedded.mobileprovision new file mode 100644 index 0000000..9db5dfd Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/embedded.mobileprovision differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/InfoPlist.strings b/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..3967e06 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/InfoPlist.strings differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/ViewController_iPad.nib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/ViewController_iPad.nib new file mode 100644 index 0000000..5654b13 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/ViewController_iPad.nib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/ViewController_iPhone.nib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/ViewController_iPhone.nib new file mode 100644 index 0000000..554ffc0 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/en.lproj/ViewController_iPhone.nib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/iTunesArtwork b/proj.ios/build/Debug-iphoneos/salmontemplate.app/iTunesArtwork new file mode 100755 index 0000000..876e97d Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/iTunesArtwork differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/libswiftRemoteMirror.dylib b/proj.ios/build/Debug-iphoneos/salmontemplate.app/libswiftRemoteMirror.dylib new file mode 100755 index 0000000..481df65 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/libswiftRemoteMirror.dylib differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.app/salmontemplate b/proj.ios/build/Debug-iphoneos/salmontemplate.app/salmontemplate new file mode 100755 index 0000000..79b55b9 Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.app/salmontemplate differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.swiftmodule/arm64.swiftdoc b/proj.ios/build/Debug-iphoneos/salmontemplate.swiftmodule/arm64.swiftdoc new file mode 100644 index 0000000..94ceb2b Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.swiftmodule/arm64.swiftdoc differ diff --git a/proj.ios/build/Debug-iphoneos/salmontemplate.swiftmodule/arm64.swiftmodule b/proj.ios/build/Debug-iphoneos/salmontemplate.swiftmodule/arm64.swiftmodule new file mode 100644 index 0000000..2103a4f Binary files /dev/null and b/proj.ios/build/Debug-iphoneos/salmontemplate.swiftmodule/arm64.swiftmodule differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app.dSYM/Contents/Info.plist b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app.dSYM/Contents/Info.plist new file mode 100644 index 0000000..67c68fd --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.fishrungames.template + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + + diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app.dSYM/Contents/Resources/DWARF/salmontemplate b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app.dSYM/Contents/Resources/DWARF/salmontemplate new file mode 100644 index 0000000..e39cf46 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app.dSYM/Contents/Resources/DWARF/salmontemplate differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCore.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCore.dylib new file mode 100755 index 0000000..2d57f41 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCore.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCoreGraphics.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 0000000..8299695 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCoreImage.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 0000000..0362901 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftCoreImage.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftDarwin.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftDarwin.dylib new file mode 100755 index 0000000..43db2f9 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftDarwin.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftDispatch.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftDispatch.dylib new file mode 100755 index 0000000..7313e32 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftDispatch.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftFoundation.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftFoundation.dylib new file mode 100755 index 0000000..f0dbf00 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftFoundation.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftGLKit.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftGLKit.dylib new file mode 100755 index 0000000..4d1f73c Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftGLKit.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftObjectiveC.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 0000000..40a0acd Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftObjectiveC.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftQuartzCore.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftQuartzCore.dylib new file mode 100755 index 0000000..4a32ddb Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftQuartzCore.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftSwiftOnoneSupport.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftSwiftOnoneSupport.dylib new file mode 100755 index 0000000..8318e78 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftSwiftOnoneSupport.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftUIKit.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftUIKit.dylib new file mode 100755 index 0000000..3080ed2 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftUIKit.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftsimd.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftsimd.dylib new file mode 100755 index 0000000..bdc8eb1 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Frameworks/libswiftsimd.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Icon.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Icon.png new file mode 100644 index 0000000..2a5a6fe Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Icon.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Info.plist b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Info.plist new file mode 100644 index 0000000..014b435 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Info.plist differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/PkgInfo b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/PkgInfo new file mode 100644 index 0000000..bd04210 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Splash-landscape.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Splash-landscape.png new file mode 100644 index 0000000..5a7d97d Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/Splash-landscape.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/_CodeSignature/CodeResources b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/_CodeSignature/CodeResources new file mode 100644 index 0000000..c39bf0a --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/_CodeSignature/CodeResources @@ -0,0 +1,1466 @@ + + + + + files + + Frameworks/libswiftCore.dylib + + blagc+UjPVBTHaTHbrlBKbVn20I= + + Frameworks/libswiftCoreGraphics.dylib + + ZwEZ2UKWKCWUP8IzyKJascCU0+g= + + Frameworks/libswiftCoreImage.dylib + + kczkyFkTsCEEfoO5GHHQIgCOuAU= + + Frameworks/libswiftDarwin.dylib + + 6AyKjKJx2BOxs2U2+zmyHkS4+Vg= + + Frameworks/libswiftDispatch.dylib + + u58ZPpBdRQ6Lk7gGRRqCiKnkbuM= + + Frameworks/libswiftFoundation.dylib + + MxmVCkFjPLhwbkpcTm8Knp8xPNE= + + Frameworks/libswiftGLKit.dylib + + 8at3uDCW7Bv4Re/mCevlZUcTOIQ= + + Frameworks/libswiftObjectiveC.dylib + + pJCo1uj+xpnkl3uidZR4eV4ig7g= + + Frameworks/libswiftQuartzCore.dylib + + GFkfH9LdwOjFdGgcp8dBIwEVzyA= + + Frameworks/libswiftSwiftOnoneSupport.dylib + + UIWHE/Dy6+jPX0wz0/+wacnjp9o= + + Frameworks/libswiftUIKit.dylib + + AA0v+jaj04fmfPqsLDKMF0ahBEo= + + Frameworks/libswiftsimd.dylib + + kU/SaH2/wGd2xRuez5cbVv4L3L8= + + Icon.png + + AH/+qXgIkSR1CROef+hi+PgSeKk= + + Info.plist + + 8ocSgyzGZyQJMYRQqw2eTiboY/s= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + Splash-landscape.png + + 2ClxSP3FpZJxZVXIeSC+BTMwZmQ= + + assets/back_btn.png + + cKocOdMSaDy9rLnrRuhr73mVJr0= + + assets/ball.png + + p3x2bvFpLZtZadD/+0bzOVIdCDY= + + assets/ball_glow.png + + TxNUcKaKOgVRRsOoLJOGJiOSqxs= + + assets/block1.png + + IIawPQREOo16NYtXkyN0eu4i5m4= + + assets/block2.png + + MPKLXgXkGbWjKTUCgmGqDqnJuYE= + + assets/block3.png + + OjD5Z9UekQP3TrpxYQkejqhWhKU= + + assets/bonus_floor.png + + mvz/9luojo0KlKzyXW5VbOfCO3M= + + assets/bonus_gothrough.png + + 7iuheryhPjVaO2Tds3hygN5OaW4= + + assets/bonus_multiplier.png + + hnjblhor6K9IjeGDdLoQnVPDsqQ= + + assets/brickshader_fragment.txt + + O/CvlL6PBmgmNL4ldNEn1LbPtwg= + + assets/brickshader_vertex.txt + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + assets/console_bkg.bmp + + dCgOwtIZ5hup4Po98l6POD2bYxQ= + + assets/credits.png + + c37z8x/0le3nu2Uvis/7YTR609I= + + assets/droid_sans14_font_bitmap.png + + UXMXUoeassw6//f9ZuUISvPwc9U= + + assets/droid_sans14_font_charmap.txt + + VHGJtdVLKi8DQvp3wSRG8TiqYTk= + + assets/frameshader_fragment.txt + + IK3KYFtysPjh22YU8rUMdruKryI= + + assets/frameshader_vertex.txt + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + assets/game_end.png + + Ay1MwmcctVlLphpxKtrpBBuspv4= + + assets/level1.txt + + QYjbaPRcMyefTLjeplZqMfouvVQ= + + assets/level10.txt + + xmfwdUvnfTiUJE/OikHbbmZawDY= + + assets/level11.txt + + 5ATGSjYvohdDJxKXv0j/oBFVghA= + + assets/level12.txt + + kzn/U+BupsxycKBuz6OqQD9+niE= + + assets/level1ogg.ogg + + FTHSFgugybJ7qs6yRbtgjlNRKSw= + + assets/level2.txt + + peitD0ieKTIeeXZ5f+kU9T7uGF8= + + assets/level3.txt + + 9wtRUR7oEZ7AnVQqkFIpTJip9n4= + + assets/level4.txt + + LmbYihT6fA88tNV0yXIVqBY5iOI= + + assets/level5.txt + + hc7cINmVG5MmmQju0dym/Lboqmk= + + assets/level6.txt + + l2jEC5a63OymBw4VTf1Ogmq23Jw= + + assets/level7.txt + + pjumB3VjgzBoE1pgXzYNv6CskAs= + + assets/level8.txt + + XOqc7bSiijnh+gtOfcCEpJRpHmI= + + assets/level9.txt + + KKBCfDuWfcoO65yYzocq/Zj9ZuU= + + assets/levelshot1.png + + 4v+4s2cEGaix/CCNzQgV/2IEHxo= + + assets/levelshot10.png + + vuYuSY9U4Dh3RIasMcr3nngFvXI= + + assets/levelshot11.png + + QgOmquhKNyY0Q4JgcBvVO1410fg= + + assets/levelshot12.png + + fZQUrEbjZm+kRzbHXpmwn3R8sQk= + + assets/levelshot2.png + + 81bq++l2yPlqoJKWhr8SPrRfZjM= + + assets/levelshot3.png + + psbcjD6h+x/pHxqmRi+SKQWzPIY= + + assets/levelshot4.png + + G6zXxSUI8dFWqvwKRPuxKOnKp48= + + assets/levelshot5.png + + 2VTSndaAu3JAlZ39Xr/RXPxhP8U= + + assets/levelshot6.png + + /oF3S4ZzaABS6qh2SJJN+d768zk= + + assets/levelshot7.png + + iv+02IIxNV8l504ly1V+NQ7Vy14= + + assets/levelshot8.png + + mLW+HU6Lnj6Z3eCqgu3/6I3ulOU= + + assets/levelshot9.png + + RCwRwbTvWaOcq9OAZn16WtN4K48= + + assets/loading.png + + 1XGZHXKtkB7/L4y2wabtV6vilyU= + + assets/logo_small.png + + 9fcz+H+N4APCkwvvuPXK/nB71yI= + + assets/main_menu_bkg_left.png + + 6ouYrPONGUVGk/tE+RyuU2bhI58= + + assets/main_menu_bkg_right.png + + hQXf8FqdW6JAizbO+H0WUafMKRc= + + assets/reflector.png + + /EwnwE0PzEU/wzj3pHRsTYVga6Q= + + assets/select_level.png + + sQJl7oNgfKKd93bJbjAm79KOEuY= + + assets/shader1fragment.txt + + QZmis8owrDVi7eLK8muJd2OwPac= + + assets/shader1vertex.txt + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + assets/shutterstock1.png + + J+N+/qHxcwErLEGOkyGq+WElNi8= + + assets/shutterstock10.png + + uwO7IuHGpVXAkQ+tXDO1sOyF6rI= + + assets/shutterstock11.png + + lri+N0n5YSoZIlQurQeqrDFn3Q0= + + assets/shutterstock12.png + + pteTQhblWkP8sZD7CFGEj6qSPEc= + + assets/shutterstock2.png + + wint/PyIs94omiES4oglM+Q7P0w= + + assets/shutterstock3.png + + NxhjBnjuSgIuqlZWrnnHfhaWt2Y= + + assets/shutterstock4.png + + G4Xy8r9pNeFCEsmvoP5/BApHcQw= + + assets/shutterstock5.png + + hpiCg/6UPnfcbnu6jKTp6q/BTII= + + assets/shutterstock6.png + + pSKMT8jlcRUA+OdE4uWlXbcYmY8= + + assets/shutterstock7.png + + mQTT2IYfv0L5nrcBq8SS1pW+cwY= + + assets/shutterstock8.png + + ofx293vojybuw0LIFIAGHy7PVUg= + + assets/shutterstock9.png + + iT/Yuev5yCp5o3P8qN8RkqIgI38= + + assets/slide_up_btn.png + + G+TeiITJY2LaScFdoNGnaAYWb1A= + + assets/tap_to_continue_btn.png + + NDEqYDLOQ8WcDBfn9H5muu7lG1g= + + assets/wall_bonus.png + + hlIq6f0Gn6hdnz+5VqDG2xB8YOk= + + assets/wall_left.png + + WHYD1I3sOfmktsUSJh4lwnHxSRU= + + assets/wall_right.png + + gj+coCef36b8m++fAgIeuT6mgvM= + + assets/wall_up.png + + uLKWlHwMKFEvqOHngFSzVRixvEw= + + en.lproj/InfoPlist.strings + + hash + + zmV6UqBSo6r1NOz798vd5O4zTBA= + + optional + + + en.lproj/ViewController_iPad.nib + + hash + + DD9xSC+k7WnqUV6Qw67BojzP+UI= + + optional + + + en.lproj/ViewController_iPhone.nib + + hash + + VQaEwolSVLvDXEICL7jLclvUq3g= + + optional + + + iTunesArtwork + + iroP/vUIOJrGVq03D9Pyk5a+L88= + + libswiftRemoteMirror.dylib + + uaH9d6M/V47nuESS+k+xBhtuaFY= + + + files2 + + Frameworks/libswiftCore.dylib + + hash + + blagc+UjPVBTHaTHbrlBKbVn20I= + + hash2 + + xo8sgCnm+oo5/jDmzTfasJiLCmh9N+4xlZRm3RyI/i0= + + + Frameworks/libswiftCoreGraphics.dylib + + hash + + ZwEZ2UKWKCWUP8IzyKJascCU0+g= + + hash2 + + Oh4dzU/Mo/++oAj30YuIo9OQvrArM2wT0ZDXf51l32c= + + + Frameworks/libswiftCoreImage.dylib + + hash + + kczkyFkTsCEEfoO5GHHQIgCOuAU= + + hash2 + + FnvDmgNFr2JomOicwx+7EKcBGQdHHuJ5gh2aixoStCM= + + + Frameworks/libswiftDarwin.dylib + + hash + + 6AyKjKJx2BOxs2U2+zmyHkS4+Vg= + + hash2 + + r6BK+aU/Ol6Jy2VvRkMfSCchm2qQGgkL/LJRjHvfZH4= + + + Frameworks/libswiftDispatch.dylib + + hash + + u58ZPpBdRQ6Lk7gGRRqCiKnkbuM= + + hash2 + + mMEYBQRiJbrtxpToV1gROvzsGsJexB2WPWmwSwpKUJ0= + + + Frameworks/libswiftFoundation.dylib + + hash + + MxmVCkFjPLhwbkpcTm8Knp8xPNE= + + hash2 + + MGCWh4dhaytcVAWiQxaOHew039Kv2yZRBWZI1BMZQPw= + + + Frameworks/libswiftGLKit.dylib + + hash + + 8at3uDCW7Bv4Re/mCevlZUcTOIQ= + + hash2 + + LHUgQYZicpmj/xEGJe9ggnq7g6DSZHDLSqfx+prT3yg= + + + Frameworks/libswiftObjectiveC.dylib + + hash + + pJCo1uj+xpnkl3uidZR4eV4ig7g= + + hash2 + + wxa7nr+6sAqMs0+ZRZWs7ZieYtNRpZxbtPcx1a3G748= + + + Frameworks/libswiftQuartzCore.dylib + + hash + + GFkfH9LdwOjFdGgcp8dBIwEVzyA= + + hash2 + + dxH7nkJwZgOMO2piVKprv0hM3N8S65eGT+hz/QFVXAY= + + + Frameworks/libswiftSwiftOnoneSupport.dylib + + hash + + UIWHE/Dy6+jPX0wz0/+wacnjp9o= + + hash2 + + nHurgKzrJA2HAB3zAAcrsBbrWB7w6l7ECEsEmb/5UmE= + + + Frameworks/libswiftUIKit.dylib + + hash + + AA0v+jaj04fmfPqsLDKMF0ahBEo= + + hash2 + + ThQ3KVRv0n/Z7aDaVS1UKV3XtUQaXCz3KLm50pf6ty8= + + + Frameworks/libswiftsimd.dylib + + hash + + kU/SaH2/wGd2xRuez5cbVv4L3L8= + + hash2 + + yvSNu9Y8bcDQVwDItOasakYpNZz6CkNrxO72gos6bZw= + + + Icon.png + + hash + + AH/+qXgIkSR1CROef+hi+PgSeKk= + + hash2 + + WqzyCbmvSa5y4jmx1Z1NlrwFyPn5+1Ob94c59hjUPdY= + + + Splash-landscape.png + + hash + + 2ClxSP3FpZJxZVXIeSC+BTMwZmQ= + + hash2 + + HaCMimbuQE8I0u4E44if/qaZ/oWgHRJfr3ohHTgQNis= + + + assets/back_btn.png + + hash + + cKocOdMSaDy9rLnrRuhr73mVJr0= + + hash2 + + nJ+qMe2cJKfJNFsBZSsruaS8qaFYAWty6h9FUUJLtcY= + + + assets/ball.png + + hash + + p3x2bvFpLZtZadD/+0bzOVIdCDY= + + hash2 + + XAfVHYd7Gblff+uuAm2VnpjFHhE8X8+VtUnBqL4h4y4= + + + assets/ball_glow.png + + hash + + TxNUcKaKOgVRRsOoLJOGJiOSqxs= + + hash2 + + tIRCQPMii2WrTaEbN0DrB2r2obvLp/lBbWebxNbdXFg= + + + assets/block1.png + + hash + + IIawPQREOo16NYtXkyN0eu4i5m4= + + hash2 + + M4yTmOdOvxRKqtQJpEI5i+fz2eo7RgDca6eXg8pwDVY= + + + assets/block2.png + + hash + + MPKLXgXkGbWjKTUCgmGqDqnJuYE= + + hash2 + + UZVfZfAoD4eRH3zHcIwFhJjzaC0JYUNFINq8xQcaP3w= + + + assets/block3.png + + hash + + OjD5Z9UekQP3TrpxYQkejqhWhKU= + + hash2 + + 3qaNgJc1gvQFRuEfBQrN7mGZSmImdhiV/T64TEVlni4= + + + assets/bonus_floor.png + + hash + + mvz/9luojo0KlKzyXW5VbOfCO3M= + + hash2 + + 2DwdKi4Li18oh8XtpAQwQDL2UwD+Da5KoznU1uggXi4= + + + assets/bonus_gothrough.png + + hash + + 7iuheryhPjVaO2Tds3hygN5OaW4= + + hash2 + + teQkvQHqPBnEQgL8Nniz8fl7K1t7CM2RMGTB9OqG17U= + + + assets/bonus_multiplier.png + + hash + + hnjblhor6K9IjeGDdLoQnVPDsqQ= + + hash2 + + y3QfCPivooCpnD6GSckIKUV3v900RdRn4bh3NWviLGY= + + + assets/brickshader_fragment.txt + + hash + + O/CvlL6PBmgmNL4ldNEn1LbPtwg= + + hash2 + + EC/3Zi9ZElezjI5aeZztAjY4MWmrunNFr9ZEpSmCw7E= + + + assets/brickshader_vertex.txt + + hash + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + hash2 + + fV3ceQCAuWZ+CehVUzqdBqBkxrjihv7+5eJOpSybIUw= + + + assets/console_bkg.bmp + + hash + + dCgOwtIZ5hup4Po98l6POD2bYxQ= + + hash2 + + SLehlTw1rFH7lwl4ekur3NZtzIK9uafdCjBa0BFys3k= + + + assets/credits.png + + hash + + c37z8x/0le3nu2Uvis/7YTR609I= + + hash2 + + VfzKsc7sHcI5ZnzLmjB1O9ci7mKXH0sMzPPVAeygoag= + + + assets/droid_sans14_font_bitmap.png + + hash + + UXMXUoeassw6//f9ZuUISvPwc9U= + + hash2 + + WhhibDaM1WnKciEWf/WtYAZM7o88AR6L3S7bYtMRzAc= + + + assets/droid_sans14_font_charmap.txt + + hash + + VHGJtdVLKi8DQvp3wSRG8TiqYTk= + + hash2 + + O7UT/96xev1Uw1ubdVi9ZtwSW8T+XKf6c/21P8ohH4U= + + + assets/frameshader_fragment.txt + + hash + + IK3KYFtysPjh22YU8rUMdruKryI= + + hash2 + + nh0LyErDycsQGqbWl4W57sqLiJV/8CfBkAERSYMIdAU= + + + assets/frameshader_vertex.txt + + hash + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + hash2 + + fV3ceQCAuWZ+CehVUzqdBqBkxrjihv7+5eJOpSybIUw= + + + assets/game_end.png + + hash + + Ay1MwmcctVlLphpxKtrpBBuspv4= + + hash2 + + Go8cBNcuvSRuIGxl91apbb11UkEZgGDLi98nNy3gOVw= + + + assets/level1.txt + + hash + + QYjbaPRcMyefTLjeplZqMfouvVQ= + + hash2 + + pO41hym+FlewbBqAUWNLkLUxepgGMPFiaqSZchbSt6s= + + + assets/level10.txt + + hash + + xmfwdUvnfTiUJE/OikHbbmZawDY= + + hash2 + + +UmoKeYryRZQ0Hep1PV1NoQVBg4wc6Wr16m6Bo6Y2bk= + + + assets/level11.txt + + hash + + 5ATGSjYvohdDJxKXv0j/oBFVghA= + + hash2 + + qSHM69R9l9dq6fsePffS586RapykMKcA1dN5D6VpNS4= + + + assets/level12.txt + + hash + + kzn/U+BupsxycKBuz6OqQD9+niE= + + hash2 + + aNA1LjK6vF0p2lxiOAoZQz7O2WzQ/0KdgZnAPEBH7bM= + + + assets/level1ogg.ogg + + hash + + FTHSFgugybJ7qs6yRbtgjlNRKSw= + + hash2 + + j1at5s33mhUFvcijU8PXVwmTGeJYmiwhFeTWhXwOV1k= + + + assets/level2.txt + + hash + + peitD0ieKTIeeXZ5f+kU9T7uGF8= + + hash2 + + jrFLfI0KAVmgUGpPDKEAXdk9LckszEIDroEJFm0PEsI= + + + assets/level3.txt + + hash + + 9wtRUR7oEZ7AnVQqkFIpTJip9n4= + + hash2 + + wHe7geUAI2wzob/y5lEMWlfH1iEZCXgLtlwyzrAuXF4= + + + assets/level4.txt + + hash + + LmbYihT6fA88tNV0yXIVqBY5iOI= + + hash2 + + j8u8lw7z9+sKOr5x2uXmoKI87eDWrrwjtgDeygAY+fo= + + + assets/level5.txt + + hash + + hc7cINmVG5MmmQju0dym/Lboqmk= + + hash2 + + 6/tLXgIXJ/jB59Y+NFSH/i2lJWTdjO+EGvUzNDNqJ1M= + + + assets/level6.txt + + hash + + l2jEC5a63OymBw4VTf1Ogmq23Jw= + + hash2 + + jRV6OMTBOhcVBW9FAJutegF9fG6dt4+PSUxJDqOkuf0= + + + assets/level7.txt + + hash + + pjumB3VjgzBoE1pgXzYNv6CskAs= + + hash2 + + 2sgFk4J0Nssntty+8eVuoJVQQ7NCnYg9PVernEL3Dg4= + + + assets/level8.txt + + hash + + XOqc7bSiijnh+gtOfcCEpJRpHmI= + + hash2 + + MK1FxFoM5QrsobK3vULwSox3xN8Kxh7fAVcZc2nQr28= + + + assets/level9.txt + + hash + + KKBCfDuWfcoO65yYzocq/Zj9ZuU= + + hash2 + + NKZGE1mFkBZUyGakc5QhuhW5VAw5TGN6Eu5e7HNzO5c= + + + assets/levelshot1.png + + hash + + 4v+4s2cEGaix/CCNzQgV/2IEHxo= + + hash2 + + cOr8zcfnXfSwE48DgHhVIiwoN+DofLPzBc6Aandcwh4= + + + assets/levelshot10.png + + hash + + vuYuSY9U4Dh3RIasMcr3nngFvXI= + + hash2 + + qywElOvAsvHn7uD/b/d1G7RBgPNz3RCO92y0c7qMecE= + + + assets/levelshot11.png + + hash + + QgOmquhKNyY0Q4JgcBvVO1410fg= + + hash2 + + Pe71Pdl39CrTBfIpIxdZ5mnrkFekSYMpEuuCJx0tOTo= + + + assets/levelshot12.png + + hash + + fZQUrEbjZm+kRzbHXpmwn3R8sQk= + + hash2 + + TzOYHxuuxzXT2K6t6g7MsK0x1uozugmBK7L8HaGin6s= + + + assets/levelshot2.png + + hash + + 81bq++l2yPlqoJKWhr8SPrRfZjM= + + hash2 + + wp1QoleDf0XHwrve2FC8ZkG5DGV6NrcJpD6AtAeyNAY= + + + assets/levelshot3.png + + hash + + psbcjD6h+x/pHxqmRi+SKQWzPIY= + + hash2 + + +UYznZlmEJwSgGDu5zzFzRUFXRMB4iM4IDINFwWpaB0= + + + assets/levelshot4.png + + hash + + G6zXxSUI8dFWqvwKRPuxKOnKp48= + + hash2 + + ca2gPe3RZSIrtZkd8J8qicS+s9s63ymBgFkbRtN1/Ns= + + + assets/levelshot5.png + + hash + + 2VTSndaAu3JAlZ39Xr/RXPxhP8U= + + hash2 + + jTU6nWJ3eGlXzgUbvRpNmxIle9cwPuzGyXX7B1FYXaM= + + + assets/levelshot6.png + + hash + + /oF3S4ZzaABS6qh2SJJN+d768zk= + + hash2 + + P0sYjzrGFHrwNMkK1I4T4jKdPVBZwAtG+g4MbCJfwjc= + + + assets/levelshot7.png + + hash + + iv+02IIxNV8l504ly1V+NQ7Vy14= + + hash2 + + qPX68FMVwjBha4VwABTBcRBwaGIG5WkGNk3Arl2JWSg= + + + assets/levelshot8.png + + hash + + mLW+HU6Lnj6Z3eCqgu3/6I3ulOU= + + hash2 + + 4AnCjNCoeG4yqffvAZzOw24SsIjVEO7anXe9m4DrVZw= + + + assets/levelshot9.png + + hash + + RCwRwbTvWaOcq9OAZn16WtN4K48= + + hash2 + + oGJkjMvN/23xCGsDumax+PYUsDhUWWg0Ity6AEx3zFA= + + + assets/loading.png + + hash + + 1XGZHXKtkB7/L4y2wabtV6vilyU= + + hash2 + + BOuANSJs8EyYgJUHJCJoPhiTm4Mhv93gOPaoMBcFRQM= + + + assets/logo_small.png + + hash + + 9fcz+H+N4APCkwvvuPXK/nB71yI= + + hash2 + + p9Nbw8WBeTs2bQPFLedifotpyyeiX3sQHPNPB3NANI4= + + + assets/main_menu_bkg_left.png + + hash + + 6ouYrPONGUVGk/tE+RyuU2bhI58= + + hash2 + + MlIl7A/NMXTCwpqHPK5FIfM2F3PbOMfPVZWC98bOwsQ= + + + assets/main_menu_bkg_right.png + + hash + + hQXf8FqdW6JAizbO+H0WUafMKRc= + + hash2 + + a8Z0wnLtbP5epnd5Gi0K5b4H+toUZk7GEqKXEsU1bv0= + + + assets/reflector.png + + hash + + /EwnwE0PzEU/wzj3pHRsTYVga6Q= + + hash2 + + RNMbJdq4+UuahMZvcXEdvcAHc875OedYMEVSO/anJjk= + + + assets/select_level.png + + hash + + sQJl7oNgfKKd93bJbjAm79KOEuY= + + hash2 + + QYEXpFaVRtO4CB13KJEqm9JPoYonZcjQU0PgGZm4zx8= + + + assets/shader1fragment.txt + + hash + + QZmis8owrDVi7eLK8muJd2OwPac= + + hash2 + + cvP6o8QZETZV5Ko7tM0wk8pV+GRQMbUUInsY0dEUIB0= + + + assets/shader1vertex.txt + + hash + + 1a3iM/TDY7nU1guiyADn2nMghcI= + + hash2 + + fV3ceQCAuWZ+CehVUzqdBqBkxrjihv7+5eJOpSybIUw= + + + assets/shutterstock1.png + + hash + + J+N+/qHxcwErLEGOkyGq+WElNi8= + + hash2 + + cGI7VXprpbwBMwVdnetiGqnCThlhSw6Qtp9AjvWzIGE= + + + assets/shutterstock10.png + + hash + + uwO7IuHGpVXAkQ+tXDO1sOyF6rI= + + hash2 + + HRAsT+5SVPn7YsYxQ3bzD5h5KZ897jcMq+srficvQLE= + + + assets/shutterstock11.png + + hash + + lri+N0n5YSoZIlQurQeqrDFn3Q0= + + hash2 + + 6AvqyMy5izGIcVQYrv0SiIgnQyEdbX3ApFJV+BXNFpA= + + + assets/shutterstock12.png + + hash + + pteTQhblWkP8sZD7CFGEj6qSPEc= + + hash2 + + mb2NXXFJkS8h48Z5hBU2rX4CM0wv4D6eqYa5m12WAFE= + + + assets/shutterstock2.png + + hash + + wint/PyIs94omiES4oglM+Q7P0w= + + hash2 + + i9r4fjJxW8UHv8sXby1u0TPOGpjNmfe+v7JJ/swfVSc= + + + assets/shutterstock3.png + + hash + + NxhjBnjuSgIuqlZWrnnHfhaWt2Y= + + hash2 + + 2lQ+bi2M6rcmPjTfL1ioLi5UHf5LTkSqYcCUQWr2z6A= + + + assets/shutterstock4.png + + hash + + G4Xy8r9pNeFCEsmvoP5/BApHcQw= + + hash2 + + WKNydbk903LFzfk0LZeBVbj+hF6tImpN7bgMNluh/rg= + + + assets/shutterstock5.png + + hash + + hpiCg/6UPnfcbnu6jKTp6q/BTII= + + hash2 + + i7mO1owHjlP1cj7wHwKwI1oYhhmUAKgRFbnrIbtjkWg= + + + assets/shutterstock6.png + + hash + + pSKMT8jlcRUA+OdE4uWlXbcYmY8= + + hash2 + + D9KSRjIKuOXYef76JGQl819mSKhdx/t4Zxi5mrHiLvU= + + + assets/shutterstock7.png + + hash + + mQTT2IYfv0L5nrcBq8SS1pW+cwY= + + hash2 + + xbrMl5i16xSnqEMxpC0GRGRo9fLvSDhvnDcZa2DghF0= + + + assets/shutterstock8.png + + hash + + ofx293vojybuw0LIFIAGHy7PVUg= + + hash2 + + PQcNxNKEXpHAFgDAd0u5T5yvN+jq//b7k578FbUOd1M= + + + assets/shutterstock9.png + + hash + + iT/Yuev5yCp5o3P8qN8RkqIgI38= + + hash2 + + AHc2aCldeuBcA042/rTWH3QRipmHtJkuIBTn2op2mqs= + + + assets/slide_up_btn.png + + hash + + G+TeiITJY2LaScFdoNGnaAYWb1A= + + hash2 + + 64rZxT2AeNfmY9iIehQPDZXY2dcleO1ZlyaOgHS/j0Y= + + + assets/tap_to_continue_btn.png + + hash + + NDEqYDLOQ8WcDBfn9H5muu7lG1g= + + hash2 + + ssv5N6+qT9U1CY0v2iLj7bM9mA77zYedrPWJpeoH27U= + + + assets/wall_bonus.png + + hash + + hlIq6f0Gn6hdnz+5VqDG2xB8YOk= + + hash2 + + 5yMgjUtLFnPM/ynwWpAbp4QgCtnr3mCwgbOsl+eaWSQ= + + + assets/wall_left.png + + hash + + WHYD1I3sOfmktsUSJh4lwnHxSRU= + + hash2 + + Kn61w2nTCU+ZH0LYFvh+kfyH4Kr7/k7JqwK1/9OHYp0= + + + assets/wall_right.png + + hash + + gj+coCef36b8m++fAgIeuT6mgvM= + + hash2 + + hqIvPQnlkSGA5fl/BvKpgoWGaWNwnvAvC+Yy6PC/mUA= + + + assets/wall_up.png + + hash + + uLKWlHwMKFEvqOHngFSzVRixvEw= + + hash2 + + KMRPmkHC0iDid3M9yYVUuv9eGemuJf3n6DBnylaPMZs= + + + en.lproj/InfoPlist.strings + + hash + + zmV6UqBSo6r1NOz798vd5O4zTBA= + + hash2 + + kmHsztpgjvF0JW5f3HdMHm49z1M0CcG8OT1JDQHHE/E= + + optional + + + en.lproj/ViewController_iPad.nib + + hash + + DD9xSC+k7WnqUV6Qw67BojzP+UI= + + hash2 + + H9mMApkGOoEcUWKaBtd2UK+NkM1CIdji+VuzfHXn2sQ= + + optional + + + en.lproj/ViewController_iPhone.nib + + hash + + VQaEwolSVLvDXEICL7jLclvUq3g= + + hash2 + + cfJHa7Jvo0s8D4svFjtKcX3qyoqGcdqAE6JX6Hc9Hx4= + + optional + + + iTunesArtwork + + hash + + iroP/vUIOJrGVq03D9Pyk5a+L88= + + hash2 + + Tw0M7i7bNyeNfA2g0HvvGgep81XW1V8MDU75WwMGcQ8= + + + libswiftRemoteMirror.dylib + + hash + + uaH9d6M/V47nuESS+k+xBhtuaFY= + + hash2 + + llHAZkO6n7nBJ/NRzRVfg87qHMoIjTZKIfCg7Ek9FsQ= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/back_btn.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/back_btn.png new file mode 100755 index 0000000..4176c8b Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/back_btn.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/ball.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/ball.png new file mode 100755 index 0000000..4a2cfc5 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/ball.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/ball_glow.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/ball_glow.png new file mode 100755 index 0000000..5fc1138 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/ball_glow.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block1.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block1.png new file mode 100755 index 0000000..8cd98ae Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block1.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block2.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block2.png new file mode 100755 index 0000000..d38c770 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block2.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block3.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block3.png new file mode 100755 index 0000000..2faf8e7 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/block3.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_floor.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_floor.png new file mode 100755 index 0000000..58648e9 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_floor.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_gothrough.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_gothrough.png new file mode 100755 index 0000000..a7eb20c Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_gothrough.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_multiplier.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_multiplier.png new file mode 100755 index 0000000..4efbc80 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/bonus_multiplier.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/brickshader_fragment.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/brickshader_fragment.txt new file mode 100755 index 0000000..ab2ef56 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/brickshader_fragment.txt @@ -0,0 +1,15 @@ +precision mediump float; +uniform sampler2D Texture; +uniform float Transparency; +uniform vec4 BrickColor; +varying vec2 texCoord; + +void main() +{ + vec4 color = BrickColor * texture2D(Texture,texCoord).rgba; + + gl_FragColor = vec4(color.rgb, color.a * Transparency); + + + +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/brickshader_vertex.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/brickshader_vertex.txt new file mode 100755 index 0000000..72d9f46 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/brickshader_vertex.txt @@ -0,0 +1,12 @@ +attribute vec3 vPosition; +attribute vec2 vTexCoord; +varying vec2 texCoord; + +uniform mat4 ProjectionMatrix; + +void main() +{ + //480x320 + gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0); + texCoord = vTexCoord; +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/console_bkg.bmp b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/console_bkg.bmp new file mode 100755 index 0000000..d32ee4c Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/console_bkg.bmp differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/credits.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/credits.png new file mode 100755 index 0000000..6debee7 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/credits.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/droid_sans14_font_bitmap.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/droid_sans14_font_bitmap.png new file mode 100755 index 0000000..b7d1985 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/droid_sans14_font_bitmap.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/droid_sans14_font_charmap.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/droid_sans14_font_charmap.txt new file mode 100755 index 0000000..f17cd0b --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/droid_sans14_font_charmap.txt @@ -0,0 +1,95 @@ +32 0.00976562 0.0195312 0 0.0546875 0 0 0.0078125 +49 0.0195312 0.0195312 0.00390625 0.015625 0.0078125 0.0390625 0.015625 +50 0.0371094 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +51 0.0605469 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +52 0.0820312 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +53 0.105469 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +54 0.126953 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +55 0.148438 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +56 0.169922 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +57 0.191406 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +48 0.212891 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +97 0.234375 0.0195312 0.00195312 0.0234375 0.00976562 0.03125 0.0136719 +98 0.253906 0.0195312 0.00195312 0.0117188 0.0117188 0.0429688 0.015625 +99 0.275391 0.0195312 0.00195312 0.0234375 0.00976562 0.03125 0.0136719 +100 0.294922 0.0195312 0.00195312 0.0117188 0.0117188 0.0429688 0.015625 +101 0.316406 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +102 0.337891 0.0195312 0 0.0117188 0.00976562 0.0429688 0.0078125 +103 0.357422 0.0195312 0.00195312 0.0234375 0.0136719 0.0429688 0.0136719 +104 0.380859 0.0195312 0.00195312 0.0117188 0.0117188 0.0429688 0.015625 +105 0.402344 0.0195312 0 0.0117188 0.00585938 0.0429688 0.0078125 +106 0.417969 0.0195312 -0.00195312 0.0117188 0.0078125 0.0546875 0.0078125 +107 0.435547 0.0195312 0.00195312 0.0117188 0.0136719 0.0429688 0.0136719 +108 0.458984 0.0195312 0.00195312 0.0117188 0.00390625 0.0429688 0.0078125 +109 0.472656 0.0195312 0.00195312 0.0234375 0.0214844 0.03125 0.0253906 +110 0.503906 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +111 0.525391 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +112 0.546875 0.0195312 0.00195312 0.0234375 0.0117188 0.0429688 0.015625 +113 0.568359 0.0195312 0.00195312 0.0234375 0.0117188 0.0429688 0.015625 +114 0.589844 0.0195312 0.00195312 0.0234375 0.0078125 0.03125 0.00976562 +115 0.607422 0.0195312 0 0.0234375 0.0117188 0.03125 0.0136719 +116 0.628906 0.0195312 0 0.015625 0.00976562 0.0390625 0.00976562 +117 0.648438 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.015625 +118 0.669922 0.0195312 -0.00195312 0.0234375 0.0175781 0.03125 0.0136719 +119 0.697266 0.0195312 -0.00195312 0.0234375 0.0234375 0.03125 0.0195312 +120 0.730469 0.0195312 0 0.0234375 0.0136719 0.03125 0.0136719 +121 0.753906 0.0195312 -0.00195312 0.0234375 0.0175781 0.0429688 0.0136719 +122 0.78125 0.0195312 0.00195312 0.0234375 0.0117188 0.03125 0.0136719 +65 0.802734 0.0195312 -0.00195312 0.015625 0.0214844 0.0390625 0.0175781 +66 0.833984 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.0175781 +67 0.857422 0.0195312 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +68 0.880859 0.0195312 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +69 0.90625 0.0195312 0.00195312 0.015625 0.00976562 0.0390625 0.0136719 +70 0.925781 0.0195312 0.00195312 0.015625 0.0117188 0.0390625 0.0136719 +71 0.947266 0.0195312 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +72 0.00976562 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +73 0.0351562 0.09375 0 0.015625 0.00976562 0.0390625 0.00976562 +74 0.0546875 0.09375 -0.00390625 0.015625 0.00976562 0.0507812 0.00585938 +75 0.0742188 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.015625 +76 0.0996094 0.09375 0.00195312 0.015625 0.0117188 0.0390625 0.0136719 +77 0.121094 0.09375 0.00195312 0.015625 0.0195312 0.0390625 0.0234375 +78 0.150391 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +79 0.175781 0.09375 0.00195312 0.015625 0.0175781 0.0390625 0.0214844 +80 0.203125 0.09375 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +81 0.224609 0.09375 0.00195312 0.015625 0.0175781 0.046875 0.0214844 +82 0.251953 0.09375 0.00195312 0.015625 0.0136719 0.0390625 0.015625 +83 0.275391 0.09375 0 0.015625 0.0136719 0.0390625 0.0136719 +84 0.298828 0.09375 0 0.015625 0.0136719 0.0390625 0.0136719 +85 0.322266 0.09375 0.00195312 0.015625 0.015625 0.0390625 0.0195312 +86 0.347656 0.09375 -0.00195312 0.015625 0.0195312 0.0390625 0.015625 +87 0.376953 0.09375 -0.00195312 0.015625 0.0292969 0.0390625 0.0253906 +88 0.416016 0.09375 -0.00195312 0.015625 0.0195312 0.0390625 0.015625 +89 0.445312 0.09375 -0.00195312 0.015625 0.0175781 0.0390625 0.0136719 +90 0.472656 0.09375 0.00195312 0.015625 0.0117188 0.0390625 0.015625 +46 0.494141 0.09375 0.00195312 0.046875 0.00390625 0.0078125 0.0078125 +44 0.507812 0.09375 0.00195312 0.046875 0.00390625 0.0117188 0.0078125 +58 0.521484 0.09375 0.00195312 0.0234375 0.00390625 0.03125 0.0078125 +59 0.535156 0.09375 0.00195312 0.0234375 0.00390625 0.0351562 0.0078125 +64 0.548828 0.09375 0.00195312 0.015625 0.0195312 0.0429688 0.0234375 +35 0.578125 0.09375 0 0.015625 0.015625 0.0390625 0.0175781 +36 0.603516 0.09375 0.00195312 0.0117188 0.0117188 0.046875 0.015625 +37 0.625 0.09375 0.00195312 0.015625 0.0195312 0.0390625 0.0234375 +94 0.654297 0.09375 0 0.015625 0.0136719 0.0234375 0.0136719 +38 0.677734 0.09375 0.00195312 0.015625 0.0175781 0.0390625 0.0195312 +42 0.705078 0.09375 0 0.0117188 0.0136719 0.0234375 0.015625 +33 0.728516 0.09375 0.00195312 0.015625 0.00390625 0.0390625 0.0078125 +63 0.742188 0.09375 0 0.015625 0.00976562 0.0390625 0.0117188 +40 0.761719 0.09375 0.00195312 0.015625 0.0078125 0.046875 0.0078125 +41 0.779297 0.09375 0 0.015625 0.00585938 0.046875 0.0078125 +91 0.794922 0.09375 0.00195312 0.015625 0.00585938 0.046875 0.0078125 +93 0.810547 0.09375 0 0.015625 0.00585938 0.046875 0.0078125 +123 0.826172 0.09375 0 0.015625 0.00976562 0.046875 0.00976562 +125 0.845703 0.09375 0 0.015625 0.00976562 0.046875 0.00976562 +60 0.865234 0.09375 0.00195312 0.0234375 0.0117188 0.0273438 0.015625 +62 0.886719 0.09375 0.00195312 0.0234375 0.0117188 0.0273438 0.015625 +95 0.908203 0.09375 0 0.0585938 0.0117188 0.00390625 0.0117188 +45 0.929688 0.09375 0.00195312 0.0390625 0.00585938 0.0078125 0.00976562 +43 0.945312 0.09375 0 0.0234375 0.0136719 0.0273438 0.015625 +61 0.00976562 0.167969 0 0.0273438 0.0136719 0.0195312 0.015625 +124 0.0332031 0.167969 0.00585938 0.0117188 0.00390625 0.0546875 0.0136719 +92 0.046875 0.167969 -0.00195312 0.015625 0.0136719 0.0390625 0.00976562 +47 0.0703125 0.167969 -0.00195312 0.015625 0.0136719 0.0390625 0.00976562 +126 0.09375 0.167969 0.00195312 0.03125 0.0117188 0.0117188 0.015625 +96 0.115234 0.167969 0.00585938 0.0117188 0.00585938 0.0078125 0.015625 +34 0.130859 0.167969 0.00195312 0.015625 0.00976562 0.015625 0.0117188 +39 0.150391 0.167969 0.00195312 0.015625 0.00390625 0.015625 0.00585938 \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/frameshader_fragment.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/frameshader_fragment.txt new file mode 100755 index 0000000..2781075 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/frameshader_fragment.txt @@ -0,0 +1,12 @@ +precision mediump float; +uniform sampler2D Texture; +uniform float Brightness; +varying vec2 texCoord; + +void main() +{ + vec3 color = texture2D(Texture,texCoord).rgb; + + gl_FragColor = vec4(color * Brightness, 1.0); + +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/frameshader_vertex.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/frameshader_vertex.txt new file mode 100755 index 0000000..72d9f46 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/frameshader_vertex.txt @@ -0,0 +1,12 @@ +attribute vec3 vPosition; +attribute vec2 vTexCoord; +varying vec2 texCoord; + +uniform mat4 ProjectionMatrix; + +void main() +{ + //480x320 + gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0); + texCoord = vTexCoord; +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/game_end.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/game_end.png new file mode 100755 index 0000000..e7fb288 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/game_end.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level1.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level1.txt new file mode 100755 index 0000000..4098cd8 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level1.txt @@ -0,0 +1,33 @@ +0, 255, 255, 255 +0, 0, 0, 255 +255, 0, 0, 255 +255, 40, 40, 255 +255, 128, 128, 255 +Colormap +111111111111 +111111111111 +111111111111 +222222222222 +222222222222 +222222222222 +222222222222 +333333333333 +333333333333 +333333333333 +000000000000 +000000000000 +000000000000 +Brickmap +111111111111 +111111111111 +111111111111 +000000000000 +111111111111 +111111111111 +000000000000 +111111111111 +111111111111 +000000000000 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level10.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level10.txt new file mode 100755 index 0000000..85caa92 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level10.txt @@ -0,0 +1,32 @@ +0, 255, 255, 255 +0, 0, 0, 255 +255, 0, 190, 255 +255, 0, 255, 255 +Colormap +002222222200 +002222222200 +000222222000 +000022220000 +111002200111 +111100001111 +011110011110 +001111111100 +000111111000 +000011110000 +000001100000 +000000000000 +000000000000 +Brickmap +002111111200 +002211112200 +000221122000 +000022220000 +111002200111 +221100001122 +022110011220 +002211112200 +000221122000 +000022220000 +000002200000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level11.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level11.txt new file mode 100755 index 0000000..e9570db --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level11.txt @@ -0,0 +1,33 @@ +255, 255, 255, 255 +0, 0, 0, 255 +0, 237, 255, 255 +0, 144, 255, 255 +0, 59, 255, 255 +Colormap +333333333333 +333333333333 +333333333333 +000000000000 +222220022222 +222220022222 +222220022222 +000000000000 +111110011111 +111110011111 +111110011111 +000000000000 +000000000000 +Brickmap +111111111111 +111111111111 +222222222222 +000000000000 +111110011111 +111110011111 +222220022222 +000000000000 +111110011111 +111110011111 +333330033333 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level12.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level12.txt new file mode 100755 index 0000000..3284830 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level12.txt @@ -0,0 +1,32 @@ +255, 128, 128, 255 +0, 0, 0, 255 +159, 240, 255, 255 +0, 148, 255, 255 +Colormap +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +Brickmap +000311113000 +000311113000 +333311113333 +111111111111 +111111111111 +222221122222 +333321123333 +000321123000 +000321123000 +000322223000 +000333333000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level1ogg.ogg b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level1ogg.ogg new file mode 100755 index 0000000..ce86d31 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level1ogg.ogg differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level2.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level2.txt new file mode 100755 index 0000000..c1bd395 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level2.txt @@ -0,0 +1,32 @@ +255, 0, 0, 255 +0, 0, 0, 255 +0, 255, 255, 255 +7, 255, 189, 255 +Colormap +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +111111111111 +222222222222 +000000000000 +Brickmap +111011110111 +111011110111 +222022220222 +000000000000 +111011110111 +222022220222 +000000000000 +111000000111 +222000000222 +000000000000 +222222222222 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level3.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level3.txt new file mode 100755 index 0000000..8a9521e --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level3.txt @@ -0,0 +1,33 @@ +0, 255, 255, 255 +0, 0, 0, 255 +0, 151, 113, 255 +7, 255, 189, 255 +128, 143, 128, 255 +Colormap +000000000000 +033333333330 +031111111130 +031111111130 +033333333330 +000000000000 +033330033330 +032230032230 +032230032230 +033330033330 +000000000000 +000000000000 +000000000000 +Brickmap +000000000000 +022222222220 +021111111120 +021111111120 +022222222220 +000000000000 +022220022220 +021120021120 +021120021120 +022220022220 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level4.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level4.txt new file mode 100755 index 0000000..7c83fc1 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level4.txt @@ -0,0 +1,33 @@ +255, 0, 0, 255 +0, 0, 0, 255 +101, 97, 255, 255 +5, 186, 255, 255 +105, 201, 255, 255 +Colormap +000000333333 +000003333333 +000033311111 +333333133333 +333331333333 +333313333333 +111133311111 +333333100000 +333331000000 +333310000000 +111100000000 +000000000000 +000000000000 +Brickmap +000000111111 +000001111111 +000011133333 +111111311111 +111113111111 +111131111111 +333311133333 +111111300000 +111113000000 +111130000000 +333300000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level5.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level5.txt new file mode 100755 index 0000000..1a5d7c4 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level5.txt @@ -0,0 +1,32 @@ +255, 0, 255, 255 +0, 0, 0, 255 +163, 255, 198, 255 +0, 255, 182, 255 +Colormap +000022220000 +000222222000 +000022220000 +111000000111 +111100001111 +111110011111 +111111111111 +111111111111 +111111111111 +111111111111 +000000000000 +000000000000 +000000000000 +Brickmap +000033330000 +000311113000 +000033330000 +111000000111 +111100001111 +111110011111 +111111111111 +111111111111 +111111111111 +222222222222 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level6.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level6.txt new file mode 100755 index 0000000..cf32e5e --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level6.txt @@ -0,0 +1,33 @@ +255, 255, 255, 255 +0, 0, 0, 255 +255, 200, 5, 255 +255, 153, 0, 255 +255, 97, 0, 255 +Colormap +000000000000 +000333000333 +000333000333 +000333000333 +222000222000 +222000222000 +222000222000 +000111000111 +000111000111 +000111000111 +000000000000 +000000000000 +000000000000 +Brickmap +000000000000 +000222000222 +000212000212 +000222000222 +222000222000 +212000212000 +222000222000 +000222000222 +000212000212 +000222000222 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level7.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level7.txt new file mode 100755 index 0000000..5a11037 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level7.txt @@ -0,0 +1,33 @@ +255, 255, 0, 255 +0, 0, 0, 255 +230, 230, 230, 255 +195, 195, 195, 255 +150, 150, 150, 255 +Colormap +333333333333 +030030030030 +030030030030 +030030030030 +222222222222 +020020020020 +020020020020 +010010010010 +010010010010 +020020020020 +000000000000 +000000000000 +000000000000 +Brickmap +111111111111 +010010010010 +010010010010 +010010010010 +222222222222 +010010010010 +010010010010 +010010010010 +010010010010 +020020020020 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level8.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level8.txt new file mode 100755 index 0000000..8e97e38 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level8.txt @@ -0,0 +1,32 @@ +0, 255, 255, 255 +0, 0, 0, 255 +217, 56, 62, 255 +132, 56, 62, 255 +Colormap +111111111111 +111111111111 +222211112222 +000211112000 +000211112000 +022211112220 +021111111120 +021111111120 +021111111120 +022222222220 +000000000000 +000000000000 +000000000000 +Brickmap +111111111111 +111111111111 +222211112222 +000211112000 +000211112000 +022211112220 +021111111120 +021111111120 +021111111120 +033333333330 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level9.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level9.txt new file mode 100755 index 0000000..e698b59 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/level9.txt @@ -0,0 +1,32 @@ +0, 255, 0, 255 +0, 0, 0, 255 +255, 221, 0, 255 +255, 0, 0, 255 +Colormap +222220022222 +222220022222 +222220022222 +222220022222 +000000000000 +111111111111 +111111111111 +000000000000 +111111111111 +111111111111 +000000000000 +000000000000 +000000000000 +Brickmap +111110011111 +111110011111 +111110011111 +222220022222 +000000000000 +111111111111 +333333333333 +000000000000 +111111111111 +222222222222 +000000000000 +000000000000 +000000000000 diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot1.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot1.png new file mode 100755 index 0000000..48471ef Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot1.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot10.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot10.png new file mode 100755 index 0000000..de464ec Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot10.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot11.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot11.png new file mode 100755 index 0000000..96bf193 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot11.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot12.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot12.png new file mode 100755 index 0000000..4696264 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot12.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot2.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot2.png new file mode 100755 index 0000000..a9872d8 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot2.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot3.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot3.png new file mode 100755 index 0000000..02e5a20 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot3.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot4.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot4.png new file mode 100755 index 0000000..f17800d Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot4.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot5.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot5.png new file mode 100755 index 0000000..a80ca69 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot5.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot6.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot6.png new file mode 100755 index 0000000..a21edcc Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot6.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot7.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot7.png new file mode 100755 index 0000000..3875a7a Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot7.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot8.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot8.png new file mode 100755 index 0000000..6f99af8 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot8.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot9.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot9.png new file mode 100755 index 0000000..4fd00ec Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/levelshot9.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/loading.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/loading.png new file mode 100755 index 0000000..482d602 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/loading.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/logo_small.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/logo_small.png new file mode 100755 index 0000000..4596028 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/logo_small.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/main_menu_bkg_left.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/main_menu_bkg_left.png new file mode 100755 index 0000000..afd94ec Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/main_menu_bkg_left.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/main_menu_bkg_right.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/main_menu_bkg_right.png new file mode 100755 index 0000000..066d439 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/main_menu_bkg_right.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/reflector.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/reflector.png new file mode 100755 index 0000000..6d3bcd2 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/reflector.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/select_level.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/select_level.png new file mode 100755 index 0000000..9e2ee25 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/select_level.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shader1fragment.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shader1fragment.txt new file mode 100755 index 0000000..523790e --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shader1fragment.txt @@ -0,0 +1,14 @@ +precision mediump float; +uniform sampler2D Texture; +uniform float Transparency; +varying vec2 texCoord; + +void main() +{ + vec4 color = texture2D(Texture,texCoord).rgba; + + gl_FragColor = vec4(color.rgb, color.a * Transparency); + + + +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shader1vertex.txt b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shader1vertex.txt new file mode 100755 index 0000000..72d9f46 --- /dev/null +++ b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shader1vertex.txt @@ -0,0 +1,12 @@ +attribute vec3 vPosition; +attribute vec2 vTexCoord; +varying vec2 texCoord; + +uniform mat4 ProjectionMatrix; + +void main() +{ + //480x320 + gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0); + texCoord = vTexCoord; +} \ No newline at end of file diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock1.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock1.png new file mode 100755 index 0000000..a9f949a Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock1.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock10.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock10.png new file mode 100755 index 0000000..e028dd6 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock10.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock11.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock11.png new file mode 100755 index 0000000..51f626e Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock11.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock12.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock12.png new file mode 100755 index 0000000..badbbe0 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock12.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock2.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock2.png new file mode 100755 index 0000000..c6ffbb5 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock2.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock3.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock3.png new file mode 100755 index 0000000..22b11ba Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock3.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock4.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock4.png new file mode 100755 index 0000000..5756d84 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock4.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock5.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock5.png new file mode 100755 index 0000000..fcb63f7 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock5.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock6.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock6.png new file mode 100755 index 0000000..40b1b3a Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock6.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock7.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock7.png new file mode 100755 index 0000000..12e82a6 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock7.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock8.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock8.png new file mode 100755 index 0000000..dba9cbe Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock8.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock9.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock9.png new file mode 100755 index 0000000..33ce46f Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/shutterstock9.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/slide_up_btn.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/slide_up_btn.png new file mode 100755 index 0000000..fb26969 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/slide_up_btn.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/tap_to_continue_btn.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/tap_to_continue_btn.png new file mode 100755 index 0000000..b9b51c1 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/tap_to_continue_btn.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_bonus.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_bonus.png new file mode 100755 index 0000000..7f94f41 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_bonus.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_left.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_left.png new file mode 100755 index 0000000..9baad70 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_left.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_right.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_right.png new file mode 100755 index 0000000..ab50ea3 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_right.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_up.png b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_up.png new file mode 100755 index 0000000..c14e614 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/assets/wall_up.png differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/InfoPlist.strings b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..3967e06 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/InfoPlist.strings differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/ViewController_iPad.nib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/ViewController_iPad.nib new file mode 100644 index 0000000..2604115 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/ViewController_iPad.nib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/ViewController_iPhone.nib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/ViewController_iPhone.nib new file mode 100644 index 0000000..7d12ec9 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/en.lproj/ViewController_iPhone.nib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/iTunesArtwork b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/iTunesArtwork new file mode 100755 index 0000000..876e97d Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/iTunesArtwork differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/libswiftRemoteMirror.dylib b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/libswiftRemoteMirror.dylib new file mode 100755 index 0000000..e0f1497 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/libswiftRemoteMirror.dylib differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/salmontemplate b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/salmontemplate new file mode 100755 index 0000000..ee91f46 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.app/salmontemplate differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.swiftmodule/x86_64.swiftdoc b/proj.ios/build/Debug-iphonesimulator/salmontemplate.swiftmodule/x86_64.swiftdoc new file mode 100644 index 0000000..342487f Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.swiftmodule/x86_64.swiftdoc differ diff --git a/proj.ios/build/Debug-iphonesimulator/salmontemplate.swiftmodule/x86_64.swiftmodule b/proj.ios/build/Debug-iphonesimulator/salmontemplate.swiftmodule/x86_64.swiftmodule new file mode 100644 index 0000000..bd918b1 Binary files /dev/null and b/proj.ios/build/Debug-iphonesimulator/salmontemplate.swiftmodule/x86_64.swiftmodule differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.d b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.d new file mode 100644 index 0000000..62e4c49 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.d @@ -0,0 +1,645 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdarg.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/assert.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdlib.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/wait.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/resource.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/alloca.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ctype.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/runetype.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/errno.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/errno.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/float.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/locale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_locale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/math.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/setjmp.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/signal.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stddef.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/__stddef_max_align_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdio.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/string.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/strings.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/time.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdbool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Block.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/MacTypes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/port.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/unistd.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/select.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_select.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/fcntl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/object.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/base.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/qos.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/message.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/acl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.data b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.data new file mode 100644 index 0000000..e6a1a8d --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.data @@ -0,0 +1,655 @@ +Identifier ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +CmdSignature d875763b41c07fd3998ba846ea0dbb1b +Description ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DTARGET_IOS -DDEBUG -DDEBUG=1 -DBOOST_NO_CXX11_NUMERIC_LIMITS -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wmove -fobjc-abi-version=2 -fobjc-legacy-dispatch -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator/include -I../../engine -I../../libs/lpng1510 -I../../libs/sqplus/sqplus -I../../libs/sqplus/include -I../../boost_1_63_0 -I../game -I../../libs/vorbis-tremor-ios/vorbis -I../../libs/jpeg-9 -I../../libs/jpeg-9/vc10 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/x86_64 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources -F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator -MD -MT dependencies -MF /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.d -c /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch -o /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch --serialize-diagnostics /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.dia +Environment LANG=en_US.US-ASCII PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin +BuilderIdent ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/CoreServices/SystemVersion.plist 0 1480571274 414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/module.modulemap 0 1475535088 3690 33188 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h 0 1477084413 16062 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h 0 1477084085 2392756 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h 0 1474670561 6943 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h 0 1480553505 1991 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h 0 1480553505 1399 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h 0 1478299113 6570 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h 0 1478299005 3238 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/types.h 0 1480479945 8057 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/appleapiopts.h 0 1480484470 2070 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/cdefs.h 0 1480484470 28085 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_symbol_aliasing.h 0 1480480041 13009 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_posix_availability.h 0 1480484471 2905 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/types.h 0 1480484461 1609 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/types.h 0 1475700453 4646 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_types.h 0 1480480030 4496 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int8_t.h 0 1480484464 1408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int16_t.h 0 1480484464 1405 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int32_t.h 0 1480484464 1403 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int64_t.h 0 1480484464 1408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int8_t.h 0 1480484465 1416 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int16_t.h 0 1480484465 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int32_t.h 0 1480484465 1419 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int64_t.h 0 1480484465 1424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_intptr_t.h 0 1480484464 1424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uintptr_t.h 0 1480484465 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types.h 0 1480484471 3716 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_types.h 0 1480484461 1547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_types.h 0 1477694218 3859 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/endian.h 0 1480484460 1613 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/endian.h 0 1475700453 4314 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_endian.h 0 1475700474 6398 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/_OSByteOrder.h 0 1480484464 4285 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/_OSByteOrder.h 0 1480484458 2736 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_dev_t.h 0 1480484462 1440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blkcnt_t.h 0 1480484462 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blksize_t.h 0 1480484462 1440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_gid_t.h 0 1480484463 1400 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_addr_t.h 0 1480484463 1458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_port_t.h 0 1480484463 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino_t.h 0 1480484464 1433 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino64_t.h 0 1480484463 1455 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_key_t.h 0 1480484464 1445 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mode_t.h 0 1480484464 1418 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_nlink_t.h 0 1480484464 1442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_id_t.h 0 1480484463 1445 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_pid_t.h 0 1480484465 1420 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_off_t.h 0 1480484464 1413 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uid_t.h 0 1480484465 1420 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_clock_t.h 0 1480484462 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_size_t.h 0 1480484465 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ssize_t.h 0 1480484465 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_time_t.h 0 1480484465 1419 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_useconds_t.h 0 1480484465 1434 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_suseconds_t.h 0 1480484465 1442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rsize_t.h 0 1480484465 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_errno_t.h 0 1480484462 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_def.h 0 1480484462 3259 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_setsize.h 0 1480484463 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_set.h 0 1480484463 1407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_clr.h 0 1480484462 1407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_zero.h 0 1480484463 1405 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_isset.h 0 1480484463 1415 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_copy.h 0 1480484462 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h 0 1477694218 1457 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h 0 1477694218 1454 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h 0 1477694218 1474 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h 0 1477694218 1458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h 0 1477694218 1479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h 0 1477694218 1454 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h 0 1477694218 1464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h 0 1477694218 1484 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_t.h 0 1477694218 1429 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h 0 1477694218 1449 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h 0 1480484463 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h 0 1480484463 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdarg.h 0 1475535088 2094 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/assert.h 0 1477696107 4197 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdlib.h 0 1477696107 14088 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types.h 0 1477696107 2192 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/wait.h 0 1479443002 9974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/signal.h 0 1480484471 15406 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/signal.h 0 1480484460 1547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/signal.h 0 1480484457 1575 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_mcontext.h 0 1480484461 1451 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_mcontext.h 0 1480484457 3474 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/_structs.h 0 1480484458 25297 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigaltstack.h 0 1480484465 1886 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ucontext.h 0 1480484465 2187 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigset_t.h 0 1480484465 1428 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/resource.h 0 1475700474 13109 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdint.h 0 1480376482 23608 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdint.h 0 1477693553 5408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint8_t.h 0 1477696107 1412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint16_t.h 0 1477696107 1417 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint32_t.h 0 1477696107 1415 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint64_t.h 0 1477696107 1421 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_intmax_t.h 0 1477696107 1579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uintmax_t.h 0 1477696107 1606 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timeval.h 0 1480484465 1562 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/alloca.h 0 1477696107 1376 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ct_rune_t.h 0 1480484462 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rune_t.h 0 1480484465 1412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wchar_t.h 0 1480484466 1500 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_null.h 0 1480484464 1390 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ctype.h 0 1477696107 10406 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/runetype.h 0 1477673801 4198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wint_t.h 0 1480484466 1410 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/errno.h 0 1477696107 1003 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/errno.h 0 1480484470 10964 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/float.h 0 1475535088 3881 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/limits.h 0 1475535088 3734 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/limits.h 0 1477693553 5910 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/limits.h 0 1480484460 339 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/limits.h 0 1480484457 4710 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_limits.h 0 1480484457 1069 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/syslimits.h 0 1480484471 5532 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/locale.h 0 1477696107 2288 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_locale.h 0 1477696107 2718 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/math.h 0 1477672306 33084 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/setjmp.h 0 1477694159 3139 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/signal.h 0 1477749704 5442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stddef.h 0 1480384577 4498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/__stddef_max_align_t.h 0 1475535088 1770 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdio.h 0 1473982444 19154 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_va_list.h 0 1480484466 1421 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/stdio.h 0 1480484471 2162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/string.h 0 1477696108 7633 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/strings.h 0 1477696108 4063 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/time.h 0 1473982868 7669 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timespec.h 0 1480484465 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h 0 1478299002 23482 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/TargetConditionals.h 0 1477694138 15170 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h 0 1478298187 7880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/availability.h 0 1477694138 2722 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityMacros.h 0 1477084406 188374 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdbool.h 0 1475535088 1730 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Block.h 0 1477696186 1775 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/MacTypes.h 0 1462314081 31722 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ConditionalMacros.h 0 1473730047 26794 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h 0 1478299004 31568 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h 0 1478299004 2678 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h 0 1478298183 13633 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h 0 1478299004 2089 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h 0 1473733149 6531 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/OSByteOrder.h 0 1475700463 10491 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/OSByteOrder.h 0 1480484458 2923 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_os_inline.h 0 1480484464 1537 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h 0 1478299004 3705 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h 0 1478301668 8990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h 0 1473734153 33122 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h 0 1478299002 4440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h 0 1478299004 4698 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h 0 1478299005 2579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h 0 1478299004 2176 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h 0 1473734153 46984 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h 0 1478301668 18464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h 0 1478298187 10891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h 0 1478299002 13363 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h 0 1478299004 3831 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h 0 1478301668 8580 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h 0 1478299004 5757 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h 0 1478298183 9294 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h 0 1478299005 13277 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h 0 1478298187 68147 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h 0 1478301668 9355 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/port.h 0 1480479936 14256 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/boolean.h 0 1480484465 2824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/boolean.h 0 1480484460 1560 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/boolean.h 0 1480484458 2677 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/vm_types.h 0 1480484461 1564 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_types.h 0 1475700453 4710 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_param.h 0 1480480031 6173 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mach_port_t.h 0 1480484464 2059 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h 0 1478299005 10938 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/dispatch.h 0 1477697082 2121 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/unistd.h 0 1473982868 28283 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/unistd.h 0 1480479945 8691 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_posix_vdisable.h 0 1480484465 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_seek_set.h 0 1480484465 1578 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/select.h 0 1475700474 5362 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_select.h 0 1480484471 2294 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uuid_t.h 0 1480484465 1414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/gethostuuid.h 0 1480483890 1878 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/fcntl.h 0 1477696107 1002 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/fcntl.h 0 1480479943 19547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_sync.h 0 1480484464 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_dsync.h 0 1480484464 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_s_ifmt.h 0 1480484465 3287 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_filesec_t.h 0 1480484463 1444 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/object.h 0 1477673968 8490 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/base.h 0 1473730454 7167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObject.h 0 1477698011 3199 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc.h 0 1473733248 7254 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc-api.h 0 1473731998 7153 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObjCRuntime.h 0 1477698011 782 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/base.h 0 1474670255 7072 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/time.h 0 1477697082 3046 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/clock_types.h 0 1480484328 4170 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/time_value.h 0 1480484467 3328 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/object.h 0 1474670255 17691 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/queue.h 0 1477697082 49871 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/qos.h 0 1471902464 7951 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/block.h 0 1474670255 17797 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/source.h 0 1474670850 27132 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/message.h 0 1480484330 29400 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/kern_return.h 0 1480484329 9357 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/kern_return.h 0 1480484460 1576 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/kern_return.h 0 1480484458 2732 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/group.h 0 1474670255 8516 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/semaphore.h 0 1477697082 3360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/once.h 0 1477697082 3281 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/data.h 0 1474926834 11129 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/io.h 0 1477673968 25906 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h 0 1478301668 21121 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h 0 1478299005 9530 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h 0 1478299002 13811 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h 0 1473733149 6741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h 0 1478299005 2514 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h 0 1478299004 487 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h 0 1478299002 15741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h 0 1478299004 2946 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h 0 1473733149 5418 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h 0 1478299004 1804 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h 0 1473734153 11595 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h 0 1478301669 7623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h 0 1478298187 8874 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/acl.h 0 1477696108 8682 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/kauth.h 0 1480484373 14183 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_guid_t.h 0 1480484463 1574 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h 0 1478299002 12432 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h 0 1478299004 2118 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h 0 1473734292 24585 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h 0 1473735398 9399 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h 0 1473735398 4495 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h 0 1478299113 3945 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h 0 1478299113 1194 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h 0 1478299113 1286 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h 0 1478299113 4172 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h 0 1478299113 424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h 0 1473734292 17227 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h 0 1473734292 39832 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h 0 1473735398 8238 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h 0 1473735398 4517 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h 0 1478577418 28365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h 0 1478299113 2448 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h 0 1473735398 5717 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h 0 1478298269 33126 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h 0 1478299113 2330 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h 0 1478299113 3880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h 0 1473734292 10320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h 0 1478298314 10198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h 0 1478299113 2678 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h 0 1478299113 6572 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h 0 1478299113 3724 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h 0 1478299113 2974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h 0 1473734292 4261 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h 0 1478299113 2079 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h 0 1478299113 2177 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h 0 1478299113 2133 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h 0 1478299113 2423 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h 0 1473734292 19124 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h 0 1478299113 3510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h 0 1478577418 7618 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h 0 1478577418 10985 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h 0 1478299113 1614 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h 0 1478298269 4618 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h 0 1478299113 3832 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h 0 1473734292 6320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h 0 1478299113 2151 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h 0 1478577418 11883 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h 0 1473734292 11584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h 0 1478299113 3835 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h 0 1478299113 3027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h 0 1473734292 40019 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h 0 1473734292 6147 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h 0 1478298315 72108 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h 0 1478298314 6885 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h 0 1478298314 8553 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h 0 1473734292 14280 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h 0 1473734292 6870 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h 0 1478299113 2036 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h 0 1478577418 6459 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h 0 1478299113 2105 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h 0 1478299113 3801 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h 0 1478298315 28066 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h 0 1473734292 8368 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h 0 1478299113 20790 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h 0 1478299164 11902 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h 0 1478298269 4314 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h 0 1478299113 1479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h 0 1473735398 8943 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h 0 1478299113 741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h 0 1478299113 1386 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h 0 1478299113 237 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h 0 1473734292 4360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h 0 1478299113 2931 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h 0 1478299113 3072 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h 0 1473735398 6510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h 0 1478299164 15490 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h 0 1478299113 893 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h 0 1473734292 10673 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h 0 1473734292 7489 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h 0 1478299113 3036 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h 0 1473735398 10412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h 0 1478299113 3700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h 0 1478299113 3440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h 0 1478298315 4879 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h 0 1478298269 5782 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h 0 1478299113 9626 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h 0 1473734292 22324 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h 0 1478299164 7157 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h 0 1480397725 1423 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h 0 1480398827 4700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h 0 1480397725 3435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h 0 1480397725 2811 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h 0 1480397725 4049 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h 0 1480397751 4876 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h 0 1474940549 59458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h 0 1480397744 56194 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h 0 1480398824 19264 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h 0 1480397725 2286 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h 0 1474940544 7040 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h 0 1480398827 34659 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h 0 1478298269 6999 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h 0 1478577418 8464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h 0 1473735399 5927 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h 0 1479361449 1230 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h 0 1479361449 744 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h 0 1479361449 8371 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h 0 1478574297 20559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h 0 1478573743 14695 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h 0 1478573743 43346 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h 0 1478573743 12252 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h 0 1478574297 17236 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h 0 1462314086 9973 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h 0 1479362138 13840 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h 0 1479361449 5328 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h 0 1479361449 18046 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h 0 1473734292 14697 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h 0 1478299164 24623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h 0 1473735399 6980 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h 0 1478299164 19555 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h 0 1478299113 2340 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h 0 1473734292 12844 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h 0 1473734292 10295 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h 0 1478299113 3124 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h 0 1478577418 5929 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h 0 1478299113 1028 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h 0 1478299113 3988 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h 0 1478299113 3598 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h 0 1478299113 1459 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h 0 1478577418 7927 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h 0 1473735399 11622 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h 0 1478299113 2587 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h 0 1478299113 1732 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h 0 1478299113 4788 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h 0 1478299113 1117 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h 0 1478299165 31086 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h 0 1478298269 16171 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h 0 1478298315 12824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h 0 1478298269 14817 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h 0 1478299113 11438 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h 0 1478299113 7107 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h 0 1478298269 19359 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h 0 1478298315 18636 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h 0 1478299113 2379 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h 0 1478298269 7064 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h 0 1478299113 47129 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h 0 1480398827 54956 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h 0 1480397725 11816 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h 0 1478577418 7737 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h 0 1478299113 1275 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/uuid/uuid.h 0 1480484462 2695 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h 0 1478299164 13134 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h 0 1480553506 20304 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h 0 1478752831 1327 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h 0 1478055485 7843 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h 0 1462314081 5067 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h 0 1478055485 9683 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h 0 1478752831 6653 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h 0 1478752830 44274 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h 0 1478752830 5367 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h 0 1478055487 14841 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h 0 1473734416 7168 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h 0 1478752830 3163 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h 0 1478055378 12310 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h 0 1473735548 4226 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h 0 1478752830 11209 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h 0 1473734416 17408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h 0 1478055488 7037 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h 0 1478752830 3475 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h 0 1478752800 4656 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h 0 1478752831 3916 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h 0 1478752830 1798 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h 0 1478752830 1091 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h 0 1478752831 1516 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h 0 1478752830 3763 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h 0 1478752800 4131 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h 0 1478752830 2155 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h 0 1478752830 2683 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h 0 1478752831 688 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h 0 1478752830 2610 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h 0 1478752830 1721 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h 0 1478055488 13114 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h 0 1478752830 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h 0 1473734416 4363 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h 0 1480553505 3629 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h 0 1480553506 1311 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h 0 1480553505 3533 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h 0 1478487938 44637 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h 0 1478669118 192 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h 0 1478669119 1022 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h 0 1478668934 7407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h 0 1478669118 4059 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h 0 1479283451 12225 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h 0 1478668414 33696 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h 0 1478669119 2891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h 0 1478669118 3107 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h 0 1478669118 1023 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h 0 1478576441 2933 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h 0 1478576441 2715 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterBehavior.h 0 1478668414 4602 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h 0 1478668934 4541 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h 0 1479283450 4824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h 0 1478669119 1864 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h 0 1478669119 2163 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h 0 1478669118 1920 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h 0 1478669118 1648 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h 0 1478668414 4439 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h 0 1478669118 2914 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h 0 1478669118 2360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h 0 1478669119 4668 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h 0 1478669118 1269 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h 0 1478669119 2365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h 0 1478487938 9748 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h 0 1480553505 2681 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h 0 1480553505 4009 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h 0 1478487938 5503 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h 0 1477700806 843 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h 0 1477700806 814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h 0 1477700806 2990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h 0 1477700806 3913 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h 0 1477678305 18593 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h 0 1477700252 1520 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h 0 1477700326 4167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h 0 1477700326 11027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h 0 1477677759 8141 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h 0 1477677759 28166 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h 0 1477677759 14983 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h 0 1477677908 8351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h 0 1477700252 3526 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h 0 1478576441 865 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h 0 1477677908 7685 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h 0 1477677908 8579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h 0 1477700252 3255 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h 0 1469926475 6452 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h 0 1478309252 18475 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h 0 1477700806 17096 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h 0 1477700806 344 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h 0 1478309252 8525 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h 0 1478309252 7391 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h 0 1477701422 4426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h 0 1477700806 2990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h 0 1478309252 8028 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h 0 1477700806 2834 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h 0 1477700806 1740 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h 0 1477700806 3027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h 0 1477701422 9505 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h 0 1480553505 3530 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h 0 1478487938 10616 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h 0 1480553506 3559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h 0 1480553506 2190 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h 0 1474670561 5242 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h 0 1478488062 9535 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h 0 1480553505 3783 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h 0 1478487938 5737 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h 0 1462314082 4956 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h 0 1480553505 2122 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h 0 1480553506 4999 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h 0 1480553505 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h 0 1480553505 2060 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h 0 1480553506 990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h 0 1480553521 11990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h 0 1480553506 1167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h 0 1480553521 7108 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h 0 1480553506 10817 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h 0 1480553506 851 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h 0 1480553505 3466 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h 0 1478488063 15514 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h 0 1478487938 8594 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h 0 1480553506 1623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h 0 1480553506 880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h 0 1478487938 11180 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h 0 1480553505 1809 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h 0 1480553506 936 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h 0 1480553506 2700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h 0 1480553505 1371 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h 0 1480553506 4479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h 0 1480553506 2669 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h 0 1480553506 1627 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h 0 1480553521 40016 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h 0 1480553505 46063 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h 0 1480553505 156 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h 0 1478487938 4767 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h 0 1480553505 7780 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h 0 1462314082 6914 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h 0 1474672216 7961 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h 0 1480553505 1650 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h 0 1478392611 18206 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h 0 1478392620 3341 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h 0 1480553506 727 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h 0 1480553506 4320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h 0 1480553505 3966 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h 0 1480553506 1759 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h 0 1480553521 7043 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h 0 1480553505 2103 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h 0 1480553505 2446 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h 0 1480553505 6313 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h 0 1480553506 14733 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h 0 1480553506 2792 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h 0 1480553506 1988 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h 0 1480553506 3377 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h 0 1480553522 14819 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h 0 1480553506 891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h 0 1480553506 1182 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h 0 1480553505 2380 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h 0 1480553506 16037 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h 0 1462314081 6664 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h 0 1480553505 1812 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h 0 1480553506 1392 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h 0 1480553505 1892 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h 0 1480553505 3576 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h 0 1480553505 2862 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h 0 1480553522 4325 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h 0 1480553506 8774 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h 0 1480553505 2292 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h 0 1480553506 2287 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h 0 1480553506 2162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h 0 1480553506 1392 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h 0 1480553506 1000 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h 0 1480553505 1175 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h 0 1462314086 8453 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h 0 1478488062 9389 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h 0 1480553506 1226 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h 0 1480553506 1020 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h 0 1480553505 2591 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h 0 1480553505 781 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h 0 1480553506 2131 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h 0 1480553505 4299 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h 0 1480553506 930 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h 0 1480553506 3760 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h 0 1478488062 4699 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h 0 1480553505 7702 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h 0 1480553506 1511 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h 0 1480553506 1301 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h 0 1480553505 3365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h 0 1480553506 2270 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h 0 1480553505 3835 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h 0 1478488062 9308 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h 0 1480553505 1077 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h 0 1480553505 370 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h 0 1480553505 703 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h 0 1480553505 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h 0 1462314086 8356 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h 0 1480553506 5784 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h 0 1480553506 745 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h 0 1462314081 5552 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h 0 1480553506 1320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h 0 1480553506 2119 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h 0 1480553506 1567 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h 0 1480553506 535 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h 0 1480553506 4930 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h 0 1480553506 3433 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h 0 1480553506 585 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h 0 1480553506 3671 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h 0 1480553506 2186 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h 0 1480553506 5837 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h 0 1480553506 2105 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h 0 1480553506 715 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h 0 1480553505 1668 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h 0 1480553505 938 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h 0 1480553506 716 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h 0 1478488062 5599 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h 0 1480553506 638 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h 0 1480553506 488 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h 0 1478487938 11453 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h 0 1480553505 607 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h 0 1480553505 3041 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h 0 1480553521 5529 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h 0 1480553522 8494 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h 0 1480553505 13814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h 0 1480553505 3356 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h 0 1480553505 2904 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h 0 1480553505 763 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h 0 1480553522 4505 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h 0 1478488062 25351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h 0 1480553506 1584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h 0 1478488062 11743 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h 0 1462314082 7243 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h 0 1480553505 3077 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h 0 1480553506 12162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h 0 1480553506 2814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h 0 1480553506 584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h 0 1480553506 525 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h 0 1480553506 2260 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h 0 1480553505 1252 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h 0 1478487938 7776 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h 0 1478488062 4831 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h 0 1480553505 3676 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h 0 1480553506 1276 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h 0 1480553505 1492 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h 0 1480553506 2815 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h 0 1480553521 5027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h 0 1480553506 307 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h 0 1480553505 3992 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h 0 1480553506 1727 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h 0 1480553505 3820 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h 0 1480553521 4614 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h 0 1474672216 15649 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h 0 1480553506 3411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h 0 1478487939 7686 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h 0 1478488062 42838 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h 0 1478488062 5853 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h 0 1480553506 975 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h 0 1480553505 4080 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h 0 1462314082 4214 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h 0 1478487938 5325 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h 0 1480553506 1650 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h 0 1480553505 3791 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h 0 1480553506 2723 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h 0 1480553506 1409 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h 0 1480553506 687 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h 0 1480553506 2510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h 0 1478487938 6879 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h 0 1480553506 990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h 0 1462314086 5974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h 0 1480553506 2559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h 0 1480553505 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h 0 1480553505 4362 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h 0 1480553506 626 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h 0 1480553505 478 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h 0 1480553505 687 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h 0 1480553506 731 33188 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.dia b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.dia differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch new file mode 100644 index 0000000..63286fd Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch.hash-criteria b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch.hash-criteria new file mode 100644 index 0000000..2da64ab --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-atwdbmmmjzvsrjanadqyedvnxvsb/template-Prefix.pch.pch.hash-criteria @@ -0,0 +1,43 @@ +-x +objective-c++ +-arch +x86_64 +-std=c++11 +-stdlib=libc++ +-fobjc-arc +-fmodules +-gmodules +-fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache +-fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation +-fpascal-strings +-O0 +-fno-common +-DTARGET_IOS +-DDEBUG +-DDEBUG=1 +-DBOOST_NO_CXX11_NUMERIC_LIMITS +-DOBJC_OLD_DISPATCH_PROTOTYPES=0 +-isysroot +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk +-fasm-blocks +-mios-simulator-version-min=8.0 +-g +-fobjc-abi-version=2 +-fobjc-legacy-dispatch +-iquote +-iquote +-I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator/include +-I../../engine +-I../../libs/lpng1510 +-I../../libs/sqplus/sqplus +-I../../libs/sqplus/include +-I../../boost_1_63_0 +-I../game +-I../../libs/vorbis-tremor-ios/vorbis +-I../../libs/jpeg-9 +-I../../libs/jpeg-9/vc10 +-F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator +x86_64-apple-darwin16.3.0 +"4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)" +SDK_PRODUCT_BUILD_VERSION=14C89 +14C89 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.d b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.d new file mode 100644 index 0000000..bcb2ec5 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.d @@ -0,0 +1,645 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdarg.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/assert.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdlib.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/wait.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_mcontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/_structs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/resource.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/alloca.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ctype.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/runetype.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/errno.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/errno.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/float.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/locale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_locale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/math.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/setjmp.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/signal.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stddef.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/__stddef_max_align_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdio.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/string.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/strings.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/time.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdbool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Block.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/MacTypes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/port.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_param.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/unistd.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/select.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_select.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/fcntl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/object.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/base.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/qos.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/message.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/acl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.data b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.data new file mode 100644 index 0000000..52a6eab --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.data @@ -0,0 +1,655 @@ +Identifier ProcessPCH++\ /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +CmdSignature 49b7f648470102db8fdf2754e42d54a7 +Description ProcessPCH++\ /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DTARGET_IOS -DDEBUG -DDEBUG=1 -DBOOST_NO_CXX11_NUMERIC_LIMITS -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wmove -fobjc-abi-version=2 -fobjc-legacy-dispatch -iquote /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap -iquote /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator/include -I../../engine -I../../libs/lpng1510 -I../../libs/sqplus/sqplus -I../../libs/sqplus/include -I../../boost_1_63_0 -I../game -I../../libs/vorbis-tremor-ios/vorbis -I../../libs/jpeg-9 -I../../libs/jpeg-9/vc10 -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/x86_64 -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources -F/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator -MD -MT dependencies -MF /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.d -c /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch -o /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch --serialize-diagnostics /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.dia +Environment LANG=en_US.US-ASCII PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin +BuilderIdent ProcessPCH++\ /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/CoreServices/SystemVersion.plist 0 1480571274 414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/module.modulemap 0 1475535088 3690 33188 +InputFile /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h 0 1477084413 16062 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h 0 1477084085 2392756 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h 0 1474670561 6943 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h 0 1480553505 1991 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h 0 1480553505 1399 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h 0 1478299113 6570 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h 0 1478299005 3238 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/types.h 0 1480479945 8057 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/appleapiopts.h 0 1480484470 2070 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/cdefs.h 0 1480484470 28085 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_symbol_aliasing.h 0 1480480041 13009 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_posix_availability.h 0 1480484471 2905 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/types.h 0 1480484461 1609 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/types.h 0 1475700453 4646 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_types.h 0 1480480030 4496 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int8_t.h 0 1480484464 1408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int16_t.h 0 1480484464 1405 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int32_t.h 0 1480484464 1403 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_int64_t.h 0 1480484464 1408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int8_t.h 0 1480484465 1416 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int16_t.h 0 1480484465 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int32_t.h 0 1480484465 1419 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_u_int64_t.h 0 1480484465 1424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_intptr_t.h 0 1480484464 1424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uintptr_t.h 0 1480484465 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types.h 0 1480484471 3716 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_types.h 0 1480484461 1547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_types.h 0 1477694218 3859 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/endian.h 0 1480484460 1613 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/endian.h 0 1475700453 4314 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_endian.h 0 1475700474 6398 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/_OSByteOrder.h 0 1480484464 4285 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/_OSByteOrder.h 0 1480484458 2736 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_dev_t.h 0 1480484462 1440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blkcnt_t.h 0 1480484462 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_blksize_t.h 0 1480484462 1440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_gid_t.h 0 1480484463 1400 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_addr_t.h 0 1480484463 1458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_in_port_t.h 0 1480484463 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino_t.h 0 1480484464 1433 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ino64_t.h 0 1480484463 1455 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_key_t.h 0 1480484464 1445 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mode_t.h 0 1480484464 1418 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_nlink_t.h 0 1480484464 1442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_id_t.h 0 1480484463 1445 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_pid_t.h 0 1480484465 1420 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_off_t.h 0 1480484464 1413 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uid_t.h 0 1480484465 1420 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_clock_t.h 0 1480484462 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_size_t.h 0 1480484465 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ssize_t.h 0 1480484465 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_time_t.h 0 1480484465 1419 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_useconds_t.h 0 1480484465 1434 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_suseconds_t.h 0 1480484465 1442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rsize_t.h 0 1480484465 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_errno_t.h 0 1480484462 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_def.h 0 1480484462 3259 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_setsize.h 0 1480484463 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_set.h 0 1480484463 1407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_clr.h 0 1480484462 1407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_zero.h 0 1480484463 1405 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_isset.h 0 1480484463 1415 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fd_copy.h 0 1480484462 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h 0 1477694218 1457 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h 0 1477694218 1454 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h 0 1477694218 1474 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h 0 1477694218 1458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h 0 1477694218 1479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h 0 1477694218 1454 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h 0 1477694218 1464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h 0 1477694218 1484 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_t.h 0 1477694218 1429 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h 0 1477694218 1449 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h 0 1480484463 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h 0 1480484463 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdarg.h 0 1475535088 2094 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/assert.h 0 1477696107 4197 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdlib.h 0 1477696107 14088 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types.h 0 1477696107 2192 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/wait.h 0 1479443002 9974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/signal.h 0 1480484471 15406 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/signal.h 0 1480484460 1547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/signal.h 0 1480484457 1575 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/_mcontext.h 0 1480484461 1451 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_mcontext.h 0 1480484457 3474 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/_structs.h 0 1480484458 25297 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigaltstack.h 0 1480484465 1886 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ucontext.h 0 1480484465 2187 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_sigset_t.h 0 1480484465 1428 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/resource.h 0 1475700474 13109 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdint.h 0 1480376482 23608 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdint.h 0 1477693553 5408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint8_t.h 0 1477696107 1412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint16_t.h 0 1477696107 1417 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint32_t.h 0 1477696107 1415 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uint64_t.h 0 1477696107 1421 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_intmax_t.h 0 1477696107 1579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_types/_uintmax_t.h 0 1477696107 1606 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timeval.h 0 1480484465 1562 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/alloca.h 0 1477696107 1376 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_ct_rune_t.h 0 1480484462 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_rune_t.h 0 1480484465 1412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wchar_t.h 0 1480484466 1500 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_null.h 0 1480484464 1390 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ctype.h 0 1477696107 10406 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/runetype.h 0 1477673801 4198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_wint_t.h 0 1480484466 1410 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/errno.h 0 1477696107 1003 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/errno.h 0 1480484470 10964 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/float.h 0 1475535088 3881 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/limits.h 0 1475535088 3734 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/limits.h 0 1477693553 5910 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/machine/limits.h 0 1480484460 339 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/limits.h 0 1480484457 4710 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/i386/_limits.h 0 1480484457 1069 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/syslimits.h 0 1480484471 5532 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/locale.h 0 1477696107 2288 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/_locale.h 0 1477696107 2718 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/math.h 0 1477672306 33084 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/setjmp.h 0 1477694159 3139 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/signal.h 0 1477749704 5442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stddef.h 0 1480384577 4498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/__stddef_max_align_t.h 0 1475535088 1770 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/stdio.h 0 1473982444 19154 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_va_list.h 0 1480484466 1421 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/stdio.h 0 1480484471 2162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/string.h 0 1477696108 7633 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/strings.h 0 1477696108 4063 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/time.h 0 1473982868 7669 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_timespec.h 0 1480484465 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h 0 1478299002 23482 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/TargetConditionals.h 0 1477694138 15170 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h 0 1478298187 7880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/availability.h 0 1477694138 2722 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityMacros.h 0 1477084406 188374 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdbool.h 0 1475535088 1730 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Block.h 0 1477696186 1775 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/MacTypes.h 0 1462314081 31722 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/ConditionalMacros.h 0 1473730047 26794 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h 0 1478299004 31568 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h 0 1478299004 2678 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h 0 1478298183 13633 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h 0 1478299004 2089 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h 0 1473733149 6531 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/OSByteOrder.h 0 1475700463 10491 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/libkern/i386/OSByteOrder.h 0 1480484458 2923 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_os_inline.h 0 1480484464 1537 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h 0 1478299004 3705 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h 0 1478301668 8990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h 0 1473734153 33122 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h 0 1478299002 4440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h 0 1478299004 4698 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h 0 1478299005 2579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h 0 1478299004 2176 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h 0 1473734153 46984 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h 0 1478301668 18464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h 0 1478298187 10891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h 0 1478299002 13363 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h 0 1478299004 3831 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h 0 1478301668 8580 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h 0 1478299004 5757 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h 0 1478298183 9294 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h 0 1478299005 13277 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h 0 1478298187 68147 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h 0 1478301668 9355 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/port.h 0 1480479936 14256 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/boolean.h 0 1480484465 2824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/boolean.h 0 1480484460 1560 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/boolean.h 0 1480484458 2677 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/vm_types.h 0 1480484461 1564 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_types.h 0 1475700453 4710 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/vm_param.h 0 1480480031 6173 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_mach_port_t.h 0 1480484464 2059 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h 0 1478299005 10938 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/dispatch.h 0 1477697082 2121 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/unistd.h 0 1473982868 28283 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/unistd.h 0 1480479945 8691 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_posix_vdisable.h 0 1480484465 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_seek_set.h 0 1480484465 1578 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/select.h 0 1475700474 5362 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_select.h 0 1480484471 2294 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_uuid_t.h 0 1480484465 1414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/gethostuuid.h 0 1480483890 1878 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/fcntl.h 0 1477696107 1002 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/fcntl.h 0 1480479943 19547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_sync.h 0 1480484464 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_o_dsync.h 0 1480484464 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_s_ifmt.h 0 1480484465 3287 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_filesec_t.h 0 1480484463 1444 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/object.h 0 1477673968 8490 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/os/base.h 0 1473730454 7167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObject.h 0 1477698011 3199 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc.h 0 1473733248 7254 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/objc-api.h 0 1473731998 7153 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/objc/NSObjCRuntime.h 0 1477698011 782 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/base.h 0 1474670255 7072 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/time.h 0 1477697082 3046 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/clock_types.h 0 1480484328 4170 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/time_value.h 0 1480484467 3328 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/object.h 0 1474670255 17691 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/queue.h 0 1477697082 49871 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/qos.h 0 1471902464 7951 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/block.h 0 1474670255 17797 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/source.h 0 1474670850 27132 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/message.h 0 1480484330 29400 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/kern_return.h 0 1480484329 9357 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/machine/kern_return.h 0 1480484460 1576 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/mach/i386/kern_return.h 0 1480484458 2732 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/group.h 0 1474670255 8516 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/semaphore.h 0 1477697082 3360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/once.h 0 1477697082 3281 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/data.h 0 1474926834 11129 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/dispatch/io.h 0 1477673968 25906 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h 0 1478301668 21121 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h 0 1478299005 9530 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h 0 1478299002 13811 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h 0 1473733149 6741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h 0 1478299005 2514 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h 0 1478299004 487 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h 0 1478299002 15741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h 0 1478299004 2946 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h 0 1473733149 5418 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h 0 1478299004 1804 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h 0 1473734153 11595 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h 0 1478301669 7623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h 0 1478298187 8874 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/acl.h 0 1477696108 8682 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/kauth.h 0 1480484373 14183 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/sys/_types/_guid_t.h 0 1480484463 1574 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h 0 1478299002 12432 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h 0 1478299004 2118 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h 0 1473734292 24585 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h 0 1473735398 9399 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h 0 1473735398 4495 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h 0 1478299113 3945 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h 0 1478299113 1194 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h 0 1478299113 1286 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h 0 1478299113 4172 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h 0 1478299113 424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h 0 1473734292 17227 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h 0 1473734292 39832 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h 0 1473735398 8238 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h 0 1473735398 4517 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h 0 1478577418 28365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h 0 1478299113 2448 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h 0 1473735398 5717 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h 0 1478298269 33126 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h 0 1478299113 2330 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h 0 1478299113 3880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h 0 1473734292 10320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h 0 1478298314 10198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h 0 1478299113 2678 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h 0 1478299113 6572 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h 0 1478299113 3724 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h 0 1478299113 2974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h 0 1473734292 4261 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h 0 1478299113 2079 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h 0 1478299113 2177 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h 0 1478299113 2133 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h 0 1478299113 2423 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h 0 1473734292 19124 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h 0 1478299113 3510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h 0 1478577418 7618 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h 0 1478577418 10985 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h 0 1478299113 1614 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h 0 1478298269 4618 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h 0 1478299113 3832 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h 0 1473734292 6320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h 0 1478299113 2151 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h 0 1478577418 11883 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h 0 1473734292 11584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h 0 1478299113 3835 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h 0 1478299113 3027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h 0 1473734292 40019 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h 0 1473734292 6147 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h 0 1478298315 72108 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h 0 1478298314 6885 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h 0 1478298314 8553 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h 0 1473734292 14280 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h 0 1473734292 6870 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h 0 1478299113 2036 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h 0 1478577418 6459 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h 0 1478299113 2105 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h 0 1478299113 3801 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h 0 1478298315 28066 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h 0 1473734292 8368 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h 0 1478299113 20790 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h 0 1478299164 11902 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h 0 1478298269 4314 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h 0 1478299113 1479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h 0 1473735398 8943 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h 0 1478299113 741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h 0 1478299113 1386 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h 0 1478299113 237 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h 0 1473734292 4360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h 0 1478299113 2931 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h 0 1478299113 3072 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h 0 1473735398 6510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h 0 1478299164 15490 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h 0 1478299113 893 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h 0 1473734292 10673 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h 0 1473734292 7489 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h 0 1478299113 3036 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h 0 1473735398 10412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h 0 1478299113 3700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h 0 1478299113 3440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h 0 1478298315 4879 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h 0 1478298269 5782 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h 0 1478299113 9626 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h 0 1473734292 22324 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h 0 1478299164 7157 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h 0 1480397725 1423 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h 0 1480398827 4700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h 0 1480397725 3435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h 0 1480397725 2811 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h 0 1480397725 4049 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h 0 1480397751 4876 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h 0 1474940549 59458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h 0 1480397744 56194 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h 0 1480398824 19264 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h 0 1480397725 2286 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h 0 1474940544 7040 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h 0 1480398827 34659 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h 0 1478298269 6999 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h 0 1478577418 8464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h 0 1473735399 5927 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h 0 1479361449 1230 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h 0 1479361449 744 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h 0 1479361449 8371 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h 0 1478574297 20559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h 0 1478573743 14695 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h 0 1478573743 43346 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h 0 1478573743 12252 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h 0 1478574297 17236 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h 0 1462314086 9973 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h 0 1479362138 13840 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h 0 1479361449 5328 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h 0 1479361449 18046 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h 0 1473734292 14697 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h 0 1478299164 24623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h 0 1473735399 6980 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h 0 1478299164 19555 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h 0 1478299113 2340 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h 0 1473734292 12844 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h 0 1473734292 10295 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h 0 1478299113 3124 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h 0 1478577418 5929 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h 0 1478299113 1028 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h 0 1478299113 3988 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h 0 1478299113 3598 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h 0 1478299113 1459 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h 0 1478577418 7927 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h 0 1473735399 11622 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h 0 1478299113 2587 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h 0 1478299113 1732 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h 0 1478299113 4788 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h 0 1478299113 1117 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h 0 1478299165 31086 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h 0 1478298269 16171 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h 0 1478298315 12824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h 0 1478298269 14817 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h 0 1478299113 11438 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h 0 1478299113 7107 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h 0 1478298269 19359 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h 0 1478298315 18636 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h 0 1478299113 2379 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h 0 1478298269 7064 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h 0 1478299113 47129 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h 0 1480398827 54956 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h 0 1480397725 11816 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h 0 1478577418 7737 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h 0 1478299113 1275 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/uuid/uuid.h 0 1480484462 2695 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h 0 1478299164 13134 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h 0 1480553506 20304 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h 0 1478752831 1327 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h 0 1478055485 7843 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h 0 1462314081 5067 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h 0 1478055485 9683 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h 0 1478752831 6653 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h 0 1478752830 44274 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h 0 1478752830 5367 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h 0 1478055487 14841 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h 0 1473734416 7168 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h 0 1478752830 3163 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h 0 1478055378 12310 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h 0 1473735548 4226 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h 0 1478752830 11209 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h 0 1473734416 17408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h 0 1478055488 7037 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h 0 1478752830 3475 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h 0 1478752800 4656 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h 0 1478752831 3916 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h 0 1478752830 1798 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h 0 1478752830 1091 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h 0 1478752831 1516 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h 0 1478752830 3763 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h 0 1478752800 4131 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h 0 1478752830 2155 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h 0 1478752830 2683 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h 0 1478752831 688 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h 0 1478752830 2610 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h 0 1478752830 1721 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h 0 1478055488 13114 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h 0 1478752830 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h 0 1473734416 4363 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h 0 1480553505 3629 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h 0 1480553506 1311 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h 0 1480553505 3533 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h 0 1478487938 44637 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h 0 1478669118 192 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h 0 1478669119 1022 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h 0 1478668934 7407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h 0 1478669118 4059 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h 0 1479283451 12225 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h 0 1478668414 33696 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h 0 1478669119 2891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h 0 1478669118 3107 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h 0 1478669118 1023 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h 0 1478576441 2933 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h 0 1478576441 2715 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterBehavior.h 0 1478668414 4602 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h 0 1478668934 4541 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h 0 1479283450 4824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h 0 1478669119 1864 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h 0 1478669119 2163 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h 0 1478669118 1920 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h 0 1478669118 1648 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h 0 1478668414 4439 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h 0 1478669118 2914 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h 0 1478669118 2360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h 0 1478669119 4668 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h 0 1478669118 1269 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h 0 1478669119 2365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h 0 1478487938 9748 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h 0 1480553505 2681 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h 0 1480553505 4009 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h 0 1478487938 5503 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h 0 1477700806 843 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h 0 1477700806 814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h 0 1477700806 2990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h 0 1477700806 3913 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h 0 1477678305 18593 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h 0 1477700252 1520 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h 0 1477700326 4167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h 0 1477700326 11027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h 0 1477677759 8141 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h 0 1477677759 28166 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h 0 1477677759 14983 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h 0 1477677908 8351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h 0 1477700252 3526 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h 0 1478576441 865 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h 0 1477677908 7685 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h 0 1477677908 8579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h 0 1477700252 3255 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h 0 1469926475 6452 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h 0 1478309252 18475 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h 0 1477700806 17096 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h 0 1477700806 344 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h 0 1478309252 8525 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h 0 1478309252 7391 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h 0 1477701422 4426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h 0 1477700806 2990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h 0 1478309252 8028 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h 0 1477700806 2834 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h 0 1477700806 1740 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h 0 1477700806 3027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h 0 1477701422 9505 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h 0 1480553505 3530 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h 0 1478487938 10616 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h 0 1480553506 3559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h 0 1480553506 2190 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h 0 1474670561 5242 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h 0 1478488062 9535 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h 0 1480553505 3783 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h 0 1478487938 5737 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h 0 1462314082 4956 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h 0 1480553505 2122 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h 0 1480553506 4999 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h 0 1480553505 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h 0 1480553505 2060 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h 0 1480553506 990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h 0 1480553521 11990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h 0 1480553506 1167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h 0 1480553521 7108 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h 0 1480553506 10817 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h 0 1480553506 851 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h 0 1480553505 3466 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h 0 1478488063 15514 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h 0 1478487938 8594 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h 0 1480553506 1623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h 0 1480553506 880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h 0 1478487938 11180 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h 0 1480553505 1809 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h 0 1480553506 936 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h 0 1480553506 2700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h 0 1480553505 1371 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h 0 1480553506 4479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h 0 1480553506 2669 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h 0 1480553506 1627 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h 0 1480553521 40016 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h 0 1480553505 46063 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h 0 1480553505 156 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h 0 1478487938 4767 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h 0 1480553505 7780 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h 0 1462314082 6914 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h 0 1474672216 7961 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h 0 1480553505 1650 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h 0 1478392611 18206 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h 0 1478392620 3341 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h 0 1480553506 727 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h 0 1480553506 4320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h 0 1480553505 3966 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h 0 1480553506 1759 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h 0 1480553521 7043 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h 0 1480553505 2103 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h 0 1480553505 2446 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h 0 1480553505 6313 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h 0 1480553506 14733 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h 0 1480553506 2792 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h 0 1480553506 1988 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h 0 1480553506 3377 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h 0 1480553522 14819 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h 0 1480553506 891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h 0 1480553506 1182 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h 0 1480553505 2380 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h 0 1480553506 16037 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h 0 1462314081 6664 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h 0 1480553505 1812 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h 0 1480553506 1392 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h 0 1480553505 1892 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h 0 1480553505 3576 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h 0 1480553505 2862 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h 0 1480553522 4325 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h 0 1480553506 8774 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h 0 1480553505 2292 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h 0 1480553506 2287 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h 0 1480553506 2162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h 0 1480553506 1392 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h 0 1480553506 1000 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h 0 1480553505 1175 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h 0 1462314086 8453 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h 0 1478488062 9389 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h 0 1480553506 1226 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h 0 1480553506 1020 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h 0 1480553505 2591 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h 0 1480553505 781 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h 0 1480553506 2131 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h 0 1480553505 4299 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h 0 1480553506 930 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h 0 1480553506 3760 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h 0 1478488062 4699 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h 0 1480553505 7702 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h 0 1480553506 1511 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h 0 1480553506 1301 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h 0 1480553505 3365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h 0 1480553506 2270 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h 0 1480553505 3835 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h 0 1478488062 9308 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h 0 1480553505 1077 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h 0 1480553505 370 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h 0 1480553505 703 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h 0 1480553505 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h 0 1462314086 8356 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h 0 1480553506 5784 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h 0 1480553506 745 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h 0 1462314081 5552 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h 0 1480553506 1320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h 0 1480553506 2119 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h 0 1480553506 1567 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h 0 1480553506 535 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h 0 1480553506 4930 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h 0 1480553506 3433 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h 0 1480553506 585 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h 0 1480553506 3671 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h 0 1480553506 2186 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h 0 1480553506 5837 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h 0 1480553506 2105 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h 0 1480553506 715 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h 0 1480553505 1668 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h 0 1480553505 938 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h 0 1480553506 716 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h 0 1478488062 5599 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h 0 1480553506 638 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h 0 1480553506 488 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h 0 1478487938 11453 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h 0 1480553505 607 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h 0 1480553505 3041 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h 0 1480553521 5529 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h 0 1480553522 8494 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h 0 1480553505 13814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h 0 1480553505 3356 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h 0 1480553505 2904 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h 0 1480553505 763 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h 0 1480553522 4505 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h 0 1478488062 25351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h 0 1480553506 1584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h 0 1478488062 11743 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h 0 1462314082 7243 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h 0 1480553505 3077 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h 0 1480553506 12162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h 0 1480553506 2814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h 0 1480553506 584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h 0 1480553506 525 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h 0 1480553506 2260 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h 0 1480553505 1252 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h 0 1478487938 7776 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h 0 1478488062 4831 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h 0 1480553505 3676 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h 0 1480553506 1276 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h 0 1480553505 1492 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h 0 1480553506 2815 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h 0 1480553521 5027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h 0 1480553506 307 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h 0 1480553505 3992 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h 0 1480553506 1727 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h 0 1480553505 3820 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h 0 1480553521 4614 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h 0 1474672216 15649 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h 0 1480553506 3411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h 0 1478487939 7686 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h 0 1478488062 42838 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h 0 1478488062 5853 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h 0 1480553506 975 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h 0 1480553505 4080 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h 0 1462314082 4214 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h 0 1478487938 5325 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h 0 1480553506 1650 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h 0 1480553505 3791 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h 0 1480553506 2723 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h 0 1480553506 1409 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h 0 1480553506 687 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h 0 1480553506 2510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h 0 1478487938 6879 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h 0 1480553506 990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h 0 1462314086 5974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h 0 1480553506 2559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h 0 1480553505 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h 0 1480553505 4362 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h 0 1480553506 626 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h 0 1480553505 478 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h 0 1480553505 687 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h 0 1480553506 731 33188 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.dia b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.dia differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch new file mode 100644 index 0000000..eab2cf3 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch.hash-criteria b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch.hash-criteria new file mode 100644 index 0000000..4918c00 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-avvevswzbhcvukaomxgpvjdlbvyy/template-Prefix.pch.pch.hash-criteria @@ -0,0 +1,43 @@ +-x +objective-c++ +-arch +x86_64 +-std=c++11 +-stdlib=libc++ +-fobjc-arc +-fmodules +-gmodules +-fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache +-fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation +-fpascal-strings +-O0 +-fno-common +-DTARGET_IOS +-DDEBUG +-DDEBUG=1 +-DBOOST_NO_CXX11_NUMERIC_LIMITS +-DOBJC_OLD_DISPATCH_PROTOTYPES=0 +-isysroot +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk +-fasm-blocks +-mios-simulator-version-min=8.0 +-g +-fobjc-abi-version=2 +-fobjc-legacy-dispatch +-iquote +-iquote +-I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator/include +-I../../engine +-I../../libs/lpng1510 +-I../../libs/sqplus/sqplus +-I../../libs/sqplus/include +-I../../boost_1_63_0 +-I../game +-I../../libs/vorbis-tremor-ios/vorbis +-I../../libs/jpeg-9 +-I../../libs/jpeg-9/vc10 +-F/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator +x86_64-apple-darwin16.3.0 +"4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)" +SDK_PRODUCT_BUILD_VERSION=14C89 +14C89 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.d b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.d new file mode 100644 index 0000000..b53dd94 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.data b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.data new file mode 100644 index 0000000..10555d5 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.data @@ -0,0 +1,14 @@ +Identifier ProcessPCH++\ /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +CmdSignature 61448eb34a53573489b9adeef42b23c6 +Description ProcessPCH++\ /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTARGET_IOS -DDEBUG -DDEBUG=1 -DBOOST_NO_CXX11_NUMERIC_LIMITS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wmove -iquote /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap -iquote /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator/include -I../../engine -I../../libs/lpng1510 -I../../libs/sqplus/sqplus -I../../libs/sqplus/include -I../../boost_1_63_0 -I../game -I../../libs/vorbis-tremor-ios/vorbis -I../../libs/jpeg-9 -I../../libs/jpeg-9/vc10 -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/x86_64 -I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources -F/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator -MD -MT dependencies -MF /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.d -c /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch -o /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch --serialize-diagnostics /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.dia +Environment LANG=en_US.US-ASCII PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin +BuilderIdent ProcessPCH++\ /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/CoreServices/SystemVersion.plist 0 1480571274 414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/module.modulemap 0 1475535088 3690 33188 +InputFile /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h 0 1477084413 16062 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h 0 1477084085 2392756 33188 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.dia b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.dia differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch new file mode 100644 index 0000000..9b360d7 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch.hash-criteria b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch.hash-criteria new file mode 100644 index 0000000..774396f --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-dzutcyywzneqrgajtvngsgwvnyck/template-Prefix.pch.pch.hash-criteria @@ -0,0 +1,39 @@ +-x +c++ +-arch +x86_64 +-std=c++11 +-stdlib=libc++ +-fmodules +-gmodules +-fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache +-fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation +-fpascal-strings +-O0 +-fno-common +-DTARGET_IOS +-DDEBUG +-DDEBUG=1 +-DBOOST_NO_CXX11_NUMERIC_LIMITS +-isysroot +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk +-fasm-blocks +-mios-simulator-version-min=8.0 +-g +-iquote +-iquote +-I/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator/include +-I../../engine +-I../../libs/lpng1510 +-I../../libs/sqplus/sqplus +-I../../libs/sqplus/include +-I../../boost_1_63_0 +-I../game +-I../../libs/vorbis-tremor-ios/vorbis +-I../../libs/jpeg-9 +-I../../libs/jpeg-9/vc10 +-F/Users/robertkhayreev/ios_workspace/SalmonEngineTemplate/proj.ios/build/Debug-iphonesimulator +x86_64-apple-darwin16.3.0 +"4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)" +SDK_PRODUCT_BUILD_VERSION=14C89 +14C89 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.d b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.d new file mode 100644 index 0000000..7d641fc --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.d @@ -0,0 +1,648 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/Availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/AvailabilityInternal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/appleapiopts.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/cdefs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_symbol_aliasing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_posix_availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_intptr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_endian.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/libkern/_OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/libkern/arm/OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/stdint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint8_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint16_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint32_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_intmax_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uintmax_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/arch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_os_inline.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_dev_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_blksize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_gid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_in_port_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ino_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ino64_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_key_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_mode_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_nlink_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_id_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_pid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_off_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_uid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_clock_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_size_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ssize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_time_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_useconds_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_rsize_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_errno_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_def.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_set.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_clr.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_zero.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_isset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_copy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdarg.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/assert.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/stdlib.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/wait.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/signal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/_mcontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/_mcontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/_structs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ucontext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_sigset_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/resource.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_timeval.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/alloca.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_rune_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_wchar_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_null.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/ctype.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/runetype.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_wint_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/errno.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/errno.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/float.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/_limits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/syslimits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/locale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_locale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/math.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/setjmp.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/signal.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stddef.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/__stddef_max_align_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/stdio.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_va_list.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/stdio.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/string.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/strings.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/time.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_timespec.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/TargetConditionals.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/os/availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/AvailabilityMacros.h \ + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/8.0.0/include/stdbool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/Block.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/MacTypes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/ConditionalMacros.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/libkern/OSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/port.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/machine/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/boolean.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/machine/vm_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/vm_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/dispatch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/unistd.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/unistd.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_seek_set.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/select.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_select.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_uuid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/gethostuuid.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/fcntl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/fcntl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_o_sync.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_o_dsync.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_filesec_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/os/object.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/os/base.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/NSObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/objc.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/objc-api.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/NSObjCRuntime.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/base.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/time.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/clock_types.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/time_value.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/object.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/queue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/qos.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/block.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/source.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/message.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/machine/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/kern_return.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/group.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/semaphore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/once.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/data.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/io.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/acl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/kauth.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_guid_t.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/uuid/uuid.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.data b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.data new file mode 100644 index 0000000..a3b44fa --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.data @@ -0,0 +1,658 @@ +Identifier ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ arm64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +CmdSignature 56d443be0b2cab972f4c392d95f4c15c +Description ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ arm64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++-header -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -DTARGET_IOS -DDEBUG -DDEBUG=1 -DBOOST_NO_CXX11_NUMERIC_LIMITS -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wmove -fembed-bitcode-marker -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-generated-files.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-own-target-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-target-headers.hmap -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-project-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos/include -I../../engine -I../../libs/lpng1510 -I../../libs/sqplus/sqplus -I../../libs/sqplus/include -I../../boost_1_63_0 -I../game -I../../libs/vorbis-tremor-ios/vorbis -I../../libs/jpeg-9 -I../../libs/jpeg-9/vc10 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources/arm64 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources -F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos -MD -MT dependencies -MF /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.d -c /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch -o /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch --serialize-diagnostics /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.dia +Environment LANG=en_US.US-ASCII PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin +BuilderIdent ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ arm64\ objective-c++\ com.apple.compilers.llvm.clang.1_0.compiler +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/SDKSettings.plist 0 1477692216 989 33204 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/CoreServices/SystemVersion.plist 0 1480571272 414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/module.modulemap 0 1475535088 3690 33188 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/SDKSettings.plist 0 1477692216 989 33204 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/Availability.h 0 1477084413 16062 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/AvailabilityInternal.h 0 1477084085 2392756 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h 0 1474670561 6943 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h 0 1480553521 1991 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h 0 1480553521 1399 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h 0 1478299113 6570 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h 0 1478299002 3238 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/types.h 0 1480479945 8057 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/appleapiopts.h 0 1480484371 2070 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/cdefs.h 0 1480484371 28078 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_symbol_aliasing.h 0 1480480041 13009 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_posix_availability.h 0 1480484379 2905 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/types.h 0 1480484326 1609 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/types.h 0 1480484318 3759 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/_types.h 0 1480484318 3220 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int8_t.h 0 1480484348 1408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int16_t.h 0 1480484347 1405 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int32_t.h 0 1480484347 1403 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_int64_t.h 0 1480484348 1408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int8_t.h 0 1480484351 1416 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int16_t.h 0 1480484350 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int32_t.h 0 1480484351 1419 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_u_int64_t.h 0 1480484351 1424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_intptr_t.h 0 1480484348 1424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_uintptr_t.h 0 1480484351 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types.h 0 1480484378 3716 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/_types.h 0 1480484326 1547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_types.h 0 1480484014 3859 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/endian.h 0 1480484325 1613 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/endian.h 0 1480484317 3038 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_endian.h 0 1475700474 6398 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/libkern/_OSByteOrder.h 0 1480484328 3571 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/libkern/arm/OSByteOrder.h 0 1480484318 2777 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdint.h 0 1480376482 23608 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/stdint.h 0 1477693553 5408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint8_t.h 0 1477749701 1412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint16_t.h 0 1477749701 1417 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint32_t.h 0 1477749701 1415 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uint64_t.h 0 1477749701 1421 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_intmax_t.h 0 1477749701 1579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types/_uintmax_t.h 0 1477749701 1606 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/arch.h 0 1480484318 1134 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_os_inline.h 0 1480484348 1537 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_dev_t.h 0 1480484345 1440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_blkcnt_t.h 0 1480484345 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_blksize_t.h 0 1480484345 1440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_gid_t.h 0 1480484347 1400 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_in_addr_t.h 0 1480484347 1458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_in_port_t.h 0 1480484347 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ino_t.h 0 1480484347 1433 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ino64_t.h 0 1480484347 1455 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_key_t.h 0 1480484348 1445 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_mode_t.h 0 1480484348 1418 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_nlink_t.h 0 1480484348 1442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_id_t.h 0 1480484347 1445 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_pid_t.h 0 1480484349 1420 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_off_t.h 0 1480484348 1413 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_uid_t.h 0 1480484350 1420 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_clock_t.h 0 1480484345 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_size_t.h 0 1480484349 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ssize_t.h 0 1480484350 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_time_t.h 0 1480484350 1419 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_useconds_t.h 0 1480484351 1434 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_suseconds_t.h 0 1480484350 1442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_rsize_t.h 0 1480484349 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_errno_t.h 0 1480484345 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_def.h 0 1480484346 3259 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_setsize.h 0 1480484346 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_set.h 0 1480484346 1407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_clr.h 0 1480484345 1407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_zero.h 0 1480484346 1405 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_isset.h 0 1480484346 1415 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fd_copy.h 0 1480484345 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h 0 1480484014 1457 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h 0 1480484014 1454 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h 0 1480484014 1474 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h 0 1480484014 1458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h 0 1480484014 1479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h 0 1480484014 1454 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h 0 1480484014 1464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h 0 1480484014 1484 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_t.h 0 1480484014 1429 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h 0 1480484014 1449 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h 0 1480484346 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h 0 1480484346 1435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdarg.h 0 1475535088 2094 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/assert.h 0 1477696107 4197 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/stdlib.h 0 1477696107 14088 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_types.h 0 1477749701 2192 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/wait.h 0 1479443002 9974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/signal.h 0 1480484471 15406 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/signal.h 0 1480484325 1547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/signal.h 0 1480484318 293 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/_mcontext.h 0 1480484326 1450 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/_mcontext.h 0 1480484318 2721 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/_structs.h 0 1480484319 7351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_sigaltstack.h 0 1480484349 1886 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ucontext.h 0 1480484350 2187 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_sigset_t.h 0 1480484349 1428 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/resource.h 0 1475700474 13109 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_timeval.h 0 1480484350 1562 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/alloca.h 0 1477749701 1376 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_ct_rune_t.h 0 1480484345 1425 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_rune_t.h 0 1480484349 1412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_wchar_t.h 0 1480484351 1500 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_null.h 0 1480484348 1390 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/ctype.h 0 1477696107 10406 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/runetype.h 0 1477673801 4198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_wint_t.h 0 1480484351 1410 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/errno.h 0 1477749702 1003 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/errno.h 0 1480484470 10964 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/float.h 0 1475535088 3881 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/limits.h 0 1475535088 3734 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/limits.h 0 1477693553 5910 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/machine/limits.h 0 1480484325 339 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/limits.h 0 1475700459 4772 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/arm/_limits.h 0 1480484318 198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/syslimits.h 0 1480484471 5532 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/locale.h 0 1477749703 2288 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/_locale.h 0 1477749701 2718 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/math.h 0 1477672306 33084 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/setjmp.h 0 1477694430 3139 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/signal.h 0 1477749704 5442 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stddef.h 0 1480384577 4498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/__stddef_max_align_t.h 0 1475535088 1770 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/stdio.h 0 1473982444 19154 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_va_list.h 0 1480484351 1421 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/stdio.h 0 1480484376 2162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/string.h 0 1477696108 7633 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/strings.h 0 1477749705 4063 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/time.h 0 1473982868 7669 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_timespec.h 0 1480484350 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h 0 1478299002 23482 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/TargetConditionals.h 0 1477694183 15170 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h 0 1478298187 7880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/os/availability.h 0 1477694183 2722 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/AvailabilityMacros.h 0 1477084406 188374 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/stdbool.h 0 1475535088 1730 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/Block.h 0 1477694788 1775 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/MacTypes.h 0 1462314081 31722 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/ConditionalMacros.h 0 1473730047 26794 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h 0 1478299004 31568 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h 0 1478299002 2678 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h 0 1478298183 13633 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h 0 1478299002 2089 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h 0 1473733149 6531 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/libkern/OSByteOrder.h 0 1480484327 10489 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h 0 1478299002 3705 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h 0 1478301668 8990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h 0 1473734153 33122 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h 0 1478299002 4440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h 0 1478299004 4698 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h 0 1478299002 2579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h 0 1478299002 2176 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h 0 1473734153 46984 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h 0 1478301668 18464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h 0 1478298187 10891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h 0 1478299002 13363 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h 0 1478299002 3831 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h 0 1478301668 8580 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h 0 1478299004 5757 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h 0 1478298183 9294 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h 0 1478299005 13277 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h 0 1478298187 68147 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h 0 1478301668 9355 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/port.h 0 1480479936 14256 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/boolean.h 0 1480484328 2824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/machine/boolean.h 0 1480484322 1560 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/boolean.h 0 1480484318 2574 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/machine/vm_types.h 0 1480484323 1564 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/vm_types.h 0 1480484319 3889 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_mach_port_t.h 0 1480484348 2059 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h 0 1478299005 10938 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/dispatch.h 0 1477694905 2121 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/unistd.h 0 1473982868 28283 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/unistd.h 0 1480479945 8691 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_posix_vdisable.h 0 1480484349 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_seek_set.h 0 1480484349 1578 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/select.h 0 1475700474 5362 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_select.h 0 1480484378 2294 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_uuid_t.h 0 1480484351 1414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/gethostuuid.h 0 1480483900 1878 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/fcntl.h 0 1477749702 1002 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/fcntl.h 0 1480479943 19547 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_o_sync.h 0 1480484348 1422 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_o_dsync.h 0 1480484348 1426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_s_ifmt.h 0 1480484349 3287 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_filesec_t.h 0 1480484346 1444 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/os/object.h 0 1477673968 8490 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/os/base.h 0 1473730454 7167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/NSObject.h 0 1477695999 3199 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/objc.h 0 1473733248 7254 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/objc-api.h 0 1473731998 7153 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/objc/NSObjCRuntime.h 0 1477695999 782 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/base.h 0 1474670255 7072 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/time.h 0 1477694906 3046 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/clock_types.h 0 1480484328 4170 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/time_value.h 0 1480484333 3328 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/object.h 0 1474670255 17691 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/queue.h 0 1477697082 49871 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/qos.h 0 1471902464 7951 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/block.h 0 1474670255 17797 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/source.h 0 1474670850 27132 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/message.h 0 1480484330 29400 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/kern_return.h 0 1480484329 9357 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/machine/kern_return.h 0 1480484323 1576 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/mach/arm/kern_return.h 0 1480484318 1461 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/group.h 0 1474670255 8516 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/semaphore.h 0 1477694906 3360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/once.h 0 1477694906 3281 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/data.h 0 1474926834 11129 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/dispatch/io.h 0 1477673968 25906 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h 0 1478301668 21121 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h 0 1478299005 9530 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h 0 1478299002 13811 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h 0 1473733149 6741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h 0 1478299002 2514 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h 0 1478299002 487 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h 0 1478299002 15741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h 0 1478299002 2946 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h 0 1473733149 5418 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h 0 1478299002 1804 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h 0 1473734153 11595 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h 0 1478301669 7623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h 0 1478298187 8874 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/acl.h 0 1477696108 8682 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/kauth.h 0 1480484373 14183 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/sys/_types/_guid_t.h 0 1480484347 1574 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h 0 1478299002 12432 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h 0 1478299002 2118 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h 0 1473734292 24585 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h 0 1473735398 9399 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h 0 1473735398 4495 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h 0 1478299164 3945 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h 0 1478299164 1194 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h 0 1478299164 1286 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h 0 1478299113 4172 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h 0 1478299164 424 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h 0 1473734292 17227 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h 0 1473734292 39832 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h 0 1473735398 8238 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h 0 1473735398 4517 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h 0 1478577418 28365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h 0 1478299164 2448 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h 0 1473735398 5717 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h 0 1478298314 32862 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h 0 1478299164 2330 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h 0 1478299164 3880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h 0 1473734292 10320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h 0 1478298314 10198 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h 0 1478299164 2678 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h 0 1473734292 6308 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h 0 1478299164 3724 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h 0 1478299165 2974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h 0 1473734292 4261 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h 0 1478299164 2079 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h 0 1478299164 2177 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h 0 1478299164 2133 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h 0 1478299164 2423 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h 0 1473734292 19124 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h 0 1478299165 3510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h 0 1478577418 7618 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h 0 1478299164 10721 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h 0 1478299164 1614 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h 0 1478298269 4618 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h 0 1478299164 3832 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h 0 1473734292 6320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h 0 1478299164 2151 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h 0 1478577418 11883 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h 0 1473734292 11584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h 0 1478299164 3835 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h 0 1478299164 3027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h 0 1473734292 40019 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h 0 1473734292 6147 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h 0 1478298315 72108 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h 0 1478298314 6885 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h 0 1478298314 8553 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h 0 1473734292 14280 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h 0 1473734292 6870 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h 0 1478299164 2036 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h 0 1478577418 6459 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h 0 1478299164 2105 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h 0 1478299164 3801 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h 0 1478298315 28066 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h 0 1473734292 8368 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h 0 1478299113 20790 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h 0 1478299164 11902 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h 0 1478298269 4314 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h 0 1478299164 1479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h 0 1473735398 8943 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h 0 1478299164 741 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h 0 1478299164 1386 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h 0 1478299164 237 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h 0 1473734292 4360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h 0 1478299164 2931 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h 0 1478299164 3072 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h 0 1473735398 6510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h 0 1478299164 15490 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h 0 1478299164 893 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h 0 1473734292 10673 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h 0 1473734292 7489 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h 0 1478299164 3036 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h 0 1473735398 10412 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h 0 1478299164 3700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h 0 1478299164 3440 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h 0 1478298315 4879 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h 0 1478298269 5782 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h 0 1478299113 9626 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h 0 1473734292 22324 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h 0 1478299164 7157 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h 0 1480397744 1423 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h 0 1480398827 4700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h 0 1480397744 3435 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h 0 1480397744 2811 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h 0 1480397744 4049 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h 0 1480397751 4876 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h 0 1474940549 59458 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h 0 1480397744 56194 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h 0 1480398824 19264 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h 0 1480397744 2286 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h 0 1474940544 7040 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h 0 1480398827 34659 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h 0 1478298269 6999 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h 0 1478577418 8464 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h 0 1473735399 5927 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h 0 1479362138 1230 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h 0 1479362138 744 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h 0 1479361449 8371 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h 0 1478574297 20559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h 0 1478573743 14695 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h 0 1478573743 43346 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h 0 1478573743 12252 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h 0 1478574297 17236 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h 0 1462314086 9973 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h 0 1479362138 13840 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h 0 1479361449 5328 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h 0 1479361449 18046 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h 0 1473734292 14697 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h 0 1478299164 24623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h 0 1473735399 6980 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h 0 1478299164 19555 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h 0 1478299164 2340 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h 0 1473734292 12844 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h 0 1473734292 10295 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h 0 1478299164 3124 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h 0 1478577418 5929 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h 0 1478299164 1028 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h 0 1478299164 3988 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h 0 1478299164 3598 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h 0 1478299164 1459 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h 0 1478577418 7927 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h 0 1473735399 11622 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h 0 1478299164 2587 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h 0 1478299164 1732 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h 0 1478299113 4788 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h 0 1478299164 1117 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h 0 1478299165 31086 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h 0 1478298269 16171 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h 0 1478298315 12824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h 0 1478298269 14817 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h 0 1478299113 11438 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h 0 1478299113 7107 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h 0 1478298269 19359 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h 0 1478298315 18636 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h 0 1478299164 2379 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h 0 1478298269 7064 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h 0 1478299113 47129 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h 0 1480398827 54956 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h 0 1480397725 11816 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h 0 1478577418 7737 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h 0 1478299164 1275 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/uuid/uuid.h 0 1480484346 2695 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h 0 1478299164 13134 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h 0 1480553506 20304 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h 0 1478752800 1327 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h 0 1478055485 7843 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h 0 1462314081 5067 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h 0 1478055485 9683 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h 0 1478752831 6653 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h 0 1478752830 44274 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h 0 1478752830 5367 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h 0 1478055487 14841 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h 0 1473734416 7168 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h 0 1478752800 3163 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h 0 1478055378 12310 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h 0 1473735548 4226 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h 0 1478752830 11209 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h 0 1473734416 17408 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h 0 1478055488 7037 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h 0 1478752800 3475 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h 0 1478752800 4656 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h 0 1478752800 3916 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h 0 1478752800 1798 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h 0 1478752800 1091 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h 0 1478752800 1516 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h 0 1478752800 3763 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h 0 1478752800 4131 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h 0 1478752800 2155 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h 0 1478752800 2683 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h 0 1478752800 688 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h 0 1478752800 2610 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h 0 1478752800 1721 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h 0 1478055488 13114 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h 0 1478752800 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h 0 1473734416 4363 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h 0 1480553521 3629 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h 0 1480553522 1311 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h 0 1480553521 3533 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h 0 1478487938 44637 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h 0 1478668934 192 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h 0 1478668934 1058 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h 0 1478668934 7407 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h 0 1478668934 4059 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h 0 1479283451 12225 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h 0 1478668414 33696 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h 0 1478668934 2891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h 0 1478668934 3107 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h 0 1478668934 1023 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h 0 1478577561 2933 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h 0 1478577561 2715 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h 0 1478668934 3040 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h 0 1477699740 9103 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h 0 1477699740 765 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h 0 1477699740 591 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterBehavior.h 0 1478668414 4602 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h 0 1478668934 4541 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h 0 1479283450 4824 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h 0 1478668934 1864 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h 0 1478668934 2163 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h 0 1478668934 1920 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h 0 1478668934 1648 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h 0 1478668414 4439 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h 0 1478668934 2914 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h 0 1478668934 2360 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h 0 1478669119 4668 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h 0 1478668934 1269 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h 0 1478668934 2365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h 0 1478487938 9748 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h 0 1480553521 2681 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h 0 1480553521 4009 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h 0 1478487938 5503 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h 0 1477701422 843 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h 0 1477701422 814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h 0 1477701422 2990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h 0 1477701422 3913 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h 0 1477678305 18593 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h 0 1477700326 1520 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h 0 1477700326 4167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h 0 1477700326 11027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h 0 1477677759 8141 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h 0 1477677759 28166 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h 0 1477677759 14983 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h 0 1477677908 8351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h 0 1477700326 3526 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h 0 1478577560 865 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h 0 1477677908 7685 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h 0 1477677908 8579 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h 0 1477700326 3255 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h 0 1469926475 6452 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h 0 1478309252 18475 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h 0 1477700806 17096 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h 0 1477701422 344 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h 0 1478309252 8525 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h 0 1478309252 7391 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h 0 1477701422 4426 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h 0 1477701422 2990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h 0 1478309252 8028 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h 0 1477701422 2834 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h 0 1477701422 1740 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h 0 1477701422 3027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h 0 1477701422 9505 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h 0 1480553521 3530 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h 0 1478487938 10616 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h 0 1480553522 3559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h 0 1480553522 2190 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h 0 1474670561 5242 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h 0 1478488062 9535 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h 0 1480553521 3783 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h 0 1478487938 5737 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h 0 1462314082 4956 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h 0 1480553521 2122 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h 0 1480553506 4999 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h 0 1480553521 1498 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h 0 1480553521 2060 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h 0 1480553521 990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h 0 1480553521 11990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h 0 1480553522 1167 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h 0 1480553521 7108 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h 0 1480553506 10817 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h 0 1480553522 851 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h 0 1480553521 3466 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h 0 1478488063 15514 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h 0 1478487938 8594 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h 0 1480553522 1623 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h 0 1480553522 880 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h 0 1478487938 11180 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h 0 1480553521 1809 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h 0 1480553522 936 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h 0 1480553522 2700 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h 0 1480553521 1371 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h 0 1480553506 4479 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h 0 1480553522 2669 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h 0 1480553522 1627 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h 0 1480553521 40016 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h 0 1480553505 46063 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h 0 1480553521 156 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h 0 1478487938 4767 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h 0 1480553505 7780 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h 0 1462314082 6914 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h 0 1474672216 7961 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h 0 1480553521 1650 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h 0 1478392611 18206 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h 0 1478393667 3341 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h 0 1480553522 727 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h 0 1480553506 4320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h 0 1480553521 3966 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h 0 1480553522 1759 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h 0 1480553521 7043 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h 0 1480553521 2103 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h 0 1480553521 2446 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h 0 1480553505 6313 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h 0 1480553506 14733 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h 0 1480553522 2792 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h 0 1480553522 1988 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h 0 1480553522 3377 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h 0 1480553522 14819 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h 0 1480553522 891 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h 0 1480553522 1182 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h 0 1480553521 2380 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h 0 1480553506 16037 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h 0 1462314081 6664 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h 0 1480553521 1812 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h 0 1480553522 1392 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h 0 1480553521 1892 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h 0 1480553521 3576 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h 0 1480553521 2862 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h 0 1480553522 4325 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h 0 1480553506 8774 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h 0 1480553521 2292 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h 0 1480553522 2287 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h 0 1480553522 2162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h 0 1480553522 1392 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h 0 1480553522 1000 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h 0 1480553521 1175 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h 0 1462314086 8453 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h 0 1478488062 9389 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h 0 1480553522 1226 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h 0 1480553522 1020 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h 0 1480553521 2591 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h 0 1480553521 781 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h 0 1480553522 2131 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h 0 1480553505 4299 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h 0 1480553522 930 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h 0 1480553522 3760 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h 0 1478488062 4699 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h 0 1480553505 7702 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h 0 1480553522 1511 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h 0 1480553522 1301 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h 0 1480553521 3365 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h 0 1480553522 2270 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h 0 1480553521 3835 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h 0 1478488062 9308 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h 0 1480553521 1077 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h 0 1480553521 370 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h 0 1480553521 703 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h 0 1480553521 1430 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h 0 1462314086 8356 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h 0 1480553506 5784 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h 0 1480553521 745 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h 0 1462314081 5552 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h 0 1480553522 1320 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h 0 1480553522 2119 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h 0 1480553522 1567 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h 0 1480553522 535 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h 0 1480553506 4930 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h 0 1480553522 3433 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h 0 1480553522 585 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h 0 1480553522 3671 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h 0 1480553522 2186 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h 0 1480553506 5837 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h 0 1480553522 2105 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h 0 1480553522 715 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h 0 1480553521 1668 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h 0 1480553521 938 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h 0 1480553522 716 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h 0 1478488062 5599 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h 0 1480553522 638 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h 0 1480553522 488 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h 0 1478487938 11453 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h 0 1480553521 607 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h 0 1480553521 3041 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h 0 1480553521 5529 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h 0 1480553522 8494 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h 0 1480553505 13814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h 0 1480553521 3356 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h 0 1480553521 2904 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h 0 1480553521 763 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h 0 1480553522 4505 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h 0 1478488062 25351 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h 0 1480553522 1584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h 0 1478488062 11743 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h 0 1462314082 7243 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h 0 1480553521 3077 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h 0 1480553506 12162 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h 0 1480553522 2814 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h 0 1480553522 584 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h 0 1480553522 525 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h 0 1480553522 2260 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h 0 1480553521 1252 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h 0 1478487938 7776 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h 0 1478488062 4831 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h 0 1480553521 3676 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h 0 1480553522 1276 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h 0 1480553521 1492 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h 0 1480553522 2815 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h 0 1480553521 5027 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h 0 1480553522 307 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h 0 1480553521 3992 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h 0 1480553522 1727 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h 0 1480553521 3820 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h 0 1480553521 4614 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h 0 1474672216 15649 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h 0 1480553522 3411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h 0 1478487939 7686 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h 0 1478488062 42838 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h 0 1478488062 5853 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h 0 1480553522 975 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h 0 1480553521 4080 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h 0 1462314082 4214 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h 0 1478487938 5325 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h 0 1480553522 1650 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h 0 1480553521 3791 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h 0 1480553522 2723 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h 0 1480553522 1409 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h 0 1480553522 687 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h 0 1480553522 2510 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h 0 1478487938 6879 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h 0 1480553522 990 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h 0 1462314086 5974 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h 0 1480553522 2559 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h 0 1480553521 1411 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h 0 1480553505 4362 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h 0 1480553522 626 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h 0 1480553521 478 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h 0 1480553521 687 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h 0 1480553521 731 33188 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.dia b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.dia differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch new file mode 100644 index 0000000..0c4a09e Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch.hash-criteria b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch.hash-criteria new file mode 100644 index 0000000..c213272 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-ehgrjfhrubqofthbrbsrlprqotwf/template-Prefix.pch.pch.hash-criteria @@ -0,0 +1,41 @@ +-x +objective-c++ +-arch +arm64 +-std=c++11 +-stdlib=libc++ +-fobjc-arc +-fmodules +-gmodules +-fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache +-fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation +-fpascal-strings +-O0 +-fno-common +-DTARGET_IOS +-DDEBUG +-DDEBUG=1 +-DBOOST_NO_CXX11_NUMERIC_LIMITS +-DOBJC_OLD_DISPATCH_PROTOTYPES=0 +-isysroot +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk +-miphoneos-version-min=8.0 +-g +-fembed-bitcode-marker +-iquote +-iquote +-I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos/include +-I../../engine +-I../../libs/lpng1510 +-I../../libs/sqplus/sqplus +-I../../libs/sqplus/include +-I../../boost_1_63_0 +-I../game +-I../../libs/vorbis-tremor-ios/vorbis +-I../../libs/jpeg-9 +-I../../libs/jpeg-9/vc10 +-F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos +aarch64-apple-darwin16.3.0 +"4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)" +SDK_PRODUCT_BUILD_VERSION=14C89 +14C89 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.d b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.d new file mode 100644 index 0000000..d8c86ca --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.data b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.data new file mode 100644 index 0000000..c426422 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.data @@ -0,0 +1,14 @@ +Identifier ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +CmdSignature 1d7aab83b65e6c526922cf4ca148509f +Description ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTARGET_IOS -DDEBUG -DDEBUG=1 -DBOOST_NO_CXX11_NUMERIC_LIMITS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wmove -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator/include -I../../engine -I../../libs/lpng1510 -I../../libs/sqplus/sqplus -I../../libs/sqplus/include -I../../boost_1_63_0 -I../game -I../../libs/vorbis-tremor-ios/vorbis -I../../libs/jpeg-9 -I../../libs/jpeg-9/vc10 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/x86_64 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources -F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator -MD -MT dependencies -MF /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.d -c /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch -o /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch --serialize-diagnostics /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.dia +Environment LANG=en_US.US-ASCII PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin +BuilderIdent ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ x86_64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/System/Library/CoreServices/SystemVersion.plist 0 1480571274 414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/module.modulemap 0 1475535088 3690 33188 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/SDKSettings.plist 0 1480627873 1868 33204 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/Availability.h 0 1477084413 16062 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk/usr/include/AvailabilityInternal.h 0 1477084085 2392756 33188 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.dia b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.dia differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch new file mode 100644 index 0000000..6eafe46 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch.hash-criteria b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch.hash-criteria new file mode 100644 index 0000000..8c3b8dd --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-excvhqjnpbgghydpniavhxsqsmja/template-Prefix.pch.pch.hash-criteria @@ -0,0 +1,39 @@ +-x +c++ +-arch +x86_64 +-std=c++11 +-stdlib=libc++ +-fmodules +-gmodules +-fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache +-fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation +-fpascal-strings +-O0 +-fno-common +-DTARGET_IOS +-DDEBUG +-DDEBUG=1 +-DBOOST_NO_CXX11_NUMERIC_LIMITS +-isysroot +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk +-fasm-blocks +-mios-simulator-version-min=8.0 +-g +-iquote +-iquote +-I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator/include +-I../../engine +-I../../libs/lpng1510 +-I../../libs/sqplus/sqplus +-I../../libs/sqplus/include +-I../../boost_1_63_0 +-I../game +-I../../libs/vorbis-tremor-ios/vorbis +-I../../libs/jpeg-9 +-I../../libs/jpeg-9/vc10 +-F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphonesimulator +x86_64-apple-darwin16.3.0 +"4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)" +SDK_PRODUCT_BUILD_VERSION=14C89 +14C89 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.d b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.d new file mode 100644 index 0000000..c6a7dd6 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/Availability.h \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/AvailabilityInternal.h diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.data b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.data new file mode 100644 index 0000000..071453a --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.data @@ -0,0 +1,14 @@ +Identifier ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ arm64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +CmdSignature 1863a58056b64392099e1bfaaeef2224 +Description ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ arm64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +CommandLine /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++-header -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -stdlib=libc++ -fmodules -gmodules -fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Wunreachable-code -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -DTARGET_IOS -DDEBUG -DDEBUG=1 -DBOOST_NO_CXX11_NUMERIC_LIMITS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wmove -fembed-bitcode-marker -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-generated-files.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-own-target-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-target-headers.hmap -iquote /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-project-headers.hmap -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos/include -I../../engine -I../../libs/lpng1510 -I../../libs/sqplus/sqplus -I../../libs/sqplus/include -I../../boost_1_63_0 -I../game -I../../libs/vorbis-tremor-ios/vorbis -I../../libs/jpeg-9 -I../../libs/jpeg-9/vc10 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources/arm64 -I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources -F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos -MD -MT dependencies -MF /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.d -c /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch -o /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch --serialize-diagnostics /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.dia +Environment LANG=en_US.US-ASCII PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin +BuilderIdent ProcessPCH++\ /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch\ template-Prefix.pch\ normal\ arm64\ c++\ com.apple.compilers.llvm.clang.1_0.compiler +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/SDKSettings.plist 0 1477692216 989 33204 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/System/Library/CoreServices/SystemVersion.plist 0 1480571272 414 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/8.0.0/include/module.modulemap 0 1475535088 3690 33188 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/SDKSettings.plist 0 1477692216 989 33204 +InputFile /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/template-Prefix.pch 0 1484564165 345 33261 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/Availability.h 0 1477084413 16062 33188 +InputFile /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk/usr/include/AvailabilityInternal.h 0 1477084085 2392756 33188 diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.dia b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.dia differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch new file mode 100644 index 0000000..aefe83d Binary files /dev/null and b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch differ diff --git a/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch.hash-criteria b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch.hash-criteria new file mode 100644 index 0000000..4191e04 --- /dev/null +++ b/proj.ios/build/SharedPrecompiledHeaders/template-Prefix-gydawrvksgyboabzetnlnclbiyzf/template-Prefix.pch.pch.hash-criteria @@ -0,0 +1,39 @@ +-x +c++ +-arch +arm64 +-std=c++11 +-stdlib=libc++ +-fmodules +-gmodules +-fmodules-cache-path=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache +-fbuild-session-file=/Users/robertkhayreev/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation +-fpascal-strings +-O0 +-fno-common +-DTARGET_IOS +-DDEBUG +-DDEBUG=1 +-DBOOST_NO_CXX11_NUMERIC_LIMITS +-isysroot +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.2.sdk +-miphoneos-version-min=8.0 +-g +-fembed-bitcode-marker +-iquote +-iquote +-I/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos/include +-I../../engine +-I../../libs/lpng1510 +-I../../libs/sqplus/sqplus +-I../../libs/sqplus/include +-I../../boost_1_63_0 +-I../game +-I../../libs/vorbis-tremor-ios/vorbis +-I../../libs/jpeg-9 +-I../../libs/jpeg-9/vc10 +-F/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/Debug-iphoneos +aarch64-apple-darwin16.3.0 +"4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)" +SDK_PRODUCT_BUILD_VERSION=14C89 +14C89 diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources/salmontemplate-Swift.h b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources/salmontemplate-Swift.h new file mode 100644 index 0000000..fc2d6c1 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/DerivedSources/salmontemplate-Swift.h @@ -0,0 +1,188 @@ +// Generated by Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if defined(__has_attribute) && __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +@import GLKit; +@import CoreGraphics; +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UIWindow; +@class UIViewController; +@class UIApplication; + +SWIFT_CLASS("_TtC14salmontemplate11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +@property (nonatomic, strong) UIViewController * _Nullable viewController; +- (void)applicationDidFinishLaunching:(UIApplication * _Nonnull)application; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class NSCoder; +@class UITouch; +@class UIEvent; +@class EAGLContext; + +SWIFT_CLASS("_TtC14salmontemplate15GLKViewTemplate") +@interface GLKViewTemplate : GLKView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +- (void)addTouchToHashWithTouch:(UITouch * _Nonnull)touch; +- (void)removeTouchFromHashWithTouch:(UITouch * _Nonnull)touch; +- (void)touchesBegan:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesEnded:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesCancelled:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (nonnull instancetype)initWithFrame:(CGRect)frame context:(EAGLContext * _Nonnull)context SWIFT_UNAVAILABLE; +@end + +@class UITextField; +@class UIPinchGestureRecognizer; +@class NSNotification; +@class NSBundle; + +SWIFT_CLASS("_TtC14salmontemplate22ViewControllerTemplate") +@interface ViewControllerTemplate : GLKViewController +@property (nonatomic, strong) UITextField * _Nullable hiddenTextField; +- (void)viewDidLoad; +- (void)setupGL; +- (void)tearDownGL; +- (void)appInitCaller; +- (void)respondToPinchWithGestureRecognizer:(UIPinchGestureRecognizer * _Nonnull)gestureRecognizer; +- (void)onReceiveKeyboardNotificationWithNotification:(NSNotification * _Nonnull)notification; +- (void)textFieldDidBeginEditing:(UITextField * _Nonnull)textField; +- (void)textFieldDidEndEditing:(UITextField * _Nonnull)textField; +- (BOOL)textField:(UITextField * _Nonnull)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString * _Nonnull)string; +- (void)update; +- (void)glkView:(GLKView * _Nonnull)view drawInRect:(CGRect)rect; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC14salmontemplate14ViewController") +@interface ViewController : ViewControllerTemplate +- (void)appInitCaller; +@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +#pragma clang diagnostic pop diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.d new file mode 100644 index 0000000..8878055 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.d @@ -0,0 +1,3 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.o : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.dia new file mode 100644 index 0000000..bb0ec51 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.o new file mode 100644 index 0000000..a50551e Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.swiftdeps new file mode 100644 index 0000000..36ff156 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.swiftdeps @@ -0,0 +1,539 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AppDelegate" +provides-nominal: +- "C14salmontemplate11AppDelegate" +provides-member: +- ["C14salmontemplate11AppDelegate", ""] +provides-dynamic-lookup: +- "viewController" +- "window" +- "applicationDidFinishLaunching" +depends-top-level: +- "AssignmentPrecedence" +- "UIWindow" +- !private "==" +- !private "UIDevice" +- "UIApplication" +- "UIApplicationDelegate" +- !private "ViewController" +- "UIResponder" +- !private "UIScreen" +- "AppDelegate" +- "UIViewController" +- !private "StringLiteralType" +depends-member: +- !private ["Ps9AnyObject", "UIDevice"] +- !private ["Ps9AnyObject", "UIScreen"] +- !private ["Ps9AnyObject", "UIWindow"] +- !private ["Ps9AnyObject", "ViewController"] +- ["Ps9AnyObject", "application"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationDidEnterBackground"] +- ["Ps9AnyObject", "applicationDidFinishLaunching"] +- ["Ps9AnyObject", "applicationDidReceiveMemoryWarning"] +- ["Ps9AnyObject", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9AnyObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9AnyObject", "applicationShouldRequestHealthAuthorization"] +- ["Ps9AnyObject", "applicationSignificantTimeChange"] +- ["Ps9AnyObject", "applicationWillEnterForeground"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "bounds"] +- !private ["Ps9AnyObject", "current"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "main"] +- !private ["Ps9AnyObject", "makeKeyAndVisible"] +- !private ["Ps9AnyObject", "rootViewController"] +- !private ["Ps9AnyObject", "userInterfaceIdiom"] +- ["Ps9AnyObject", "viewController"] +- ["Ps9AnyObject", "window"] +- ["Ps9AnyObject", ""] +- ["C14salmontemplate11AppDelegate", "UIApplication"] +- !private ["C14salmontemplate11AppDelegate", "UIDevice"] +- !private ["C14salmontemplate11AppDelegate", "UIScreen"] +- ["C14salmontemplate11AppDelegate", "UIViewController"] +- ["C14salmontemplate11AppDelegate", "UIWindow"] +- !private ["C14salmontemplate11AppDelegate", "ViewController"] +- ["C14salmontemplate11AppDelegate", "application"] +- ["C14salmontemplate11AppDelegate", "applicationDidBecomeActive"] +- ["C14salmontemplate11AppDelegate", "applicationDidEnterBackground"] +- ["C14salmontemplate11AppDelegate", "applicationDidFinishLaunching"] +- ["C14salmontemplate11AppDelegate", "applicationDidReceiveMemoryWarning"] +- ["C14salmontemplate11AppDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["C14salmontemplate11AppDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["C14salmontemplate11AppDelegate", "applicationShouldRequestHealthAuthorization"] +- ["C14salmontemplate11AppDelegate", "applicationSignificantTimeChange"] +- ["C14salmontemplate11AppDelegate", "applicationWillEnterForeground"] +- ["C14salmontemplate11AppDelegate", "applicationWillResignActive"] +- ["C14salmontemplate11AppDelegate", "applicationWillTerminate"] +- ["C14salmontemplate11AppDelegate", "deinit"] +- ["C14salmontemplate11AppDelegate", "init"] +- ["C14salmontemplate11AppDelegate", "viewController"] +- ["C14salmontemplate11AppDelegate", "window"] +- !private ["Sb", "_getBuiltinLogicValue"] +- ["Sb", "deinit"] +- !private ["PSo15CALayerDelegate", "init"] +- !private ["PSo15CALayerDelegate", "makeKeyAndVisible"] +- !private ["PSo15CALayerDelegate", "rootViewController"] +- ["VSC6CGRect", "deinit"] +- !private ["Ps7CVarArg", "UIDevice"] +- !private ["Ps7CVarArg", "UIScreen"] +- !private ["Ps7CVarArg", "UIWindow"] +- !private ["Ps7CVarArg", "ViewController"] +- ["Ps7CVarArg", "application"] +- ["Ps7CVarArg", "applicationDidBecomeActive"] +- ["Ps7CVarArg", "applicationDidEnterBackground"] +- ["Ps7CVarArg", "applicationDidFinishLaunching"] +- ["Ps7CVarArg", "applicationDidReceiveMemoryWarning"] +- ["Ps7CVarArg", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps7CVarArg", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps7CVarArg", "applicationShouldRequestHealthAuthorization"] +- ["Ps7CVarArg", "applicationSignificantTimeChange"] +- ["Ps7CVarArg", "applicationWillEnterForeground"] +- ["Ps7CVarArg", "applicationWillResignActive"] +- ["Ps7CVarArg", "applicationWillTerminate"] +- !private ["Ps7CVarArg", "bounds"] +- !private ["Ps7CVarArg", "current"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "main"] +- !private ["Ps7CVarArg", "makeKeyAndVisible"] +- !private ["Ps7CVarArg", "rootViewController"] +- !private ["Ps7CVarArg", "userInterfaceIdiom"] +- ["Ps7CVarArg", "viewController"] +- ["Ps7CVarArg", "window"] +- ["Ps7CVarArg", ""] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "UIDevice"] +- !private ["Ps28CustomDebugStringConvertible", "UIScreen"] +- !private ["Ps28CustomDebugStringConvertible", "UIWindow"] +- !private ["Ps28CustomDebugStringConvertible", "ViewController"] +- ["Ps28CustomDebugStringConvertible", "application"] +- ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- ["Ps28CustomDebugStringConvertible", "applicationDidFinishLaunching"] +- ["Ps28CustomDebugStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps28CustomDebugStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps28CustomDebugStringConvertible", "applicationSignificantTimeChange"] +- ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "bounds"] +- !private ["Ps28CustomDebugStringConvertible", "current"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "main"] +- !private ["Ps28CustomDebugStringConvertible", "makeKeyAndVisible"] +- !private ["Ps28CustomDebugStringConvertible", "rootViewController"] +- !private ["Ps28CustomDebugStringConvertible", "userInterfaceIdiom"] +- ["Ps28CustomDebugStringConvertible", "viewController"] +- ["Ps28CustomDebugStringConvertible", "window"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps23CustomStringConvertible", "UIDevice"] +- !private ["Ps23CustomStringConvertible", "UIScreen"] +- !private ["Ps23CustomStringConvertible", "UIWindow"] +- !private ["Ps23CustomStringConvertible", "ViewController"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- ["Ps23CustomStringConvertible", "application"] +- ["Ps23CustomStringConvertible", "applicationDidBecomeActive"] +- ["Ps23CustomStringConvertible", "applicationDidEnterBackground"] +- ["Ps23CustomStringConvertible", "applicationDidFinishLaunching"] +- ["Ps23CustomStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps23CustomStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps23CustomStringConvertible", "applicationSignificantTimeChange"] +- ["Ps23CustomStringConvertible", "applicationWillEnterForeground"] +- ["Ps23CustomStringConvertible", "applicationWillResignActive"] +- ["Ps23CustomStringConvertible", "applicationWillTerminate"] +- !private ["Ps23CustomStringConvertible", "bounds"] +- !private ["Ps23CustomStringConvertible", "current"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "main"] +- !private ["Ps23CustomStringConvertible", "makeKeyAndVisible"] +- !private ["Ps23CustomStringConvertible", "rootViewController"] +- !private ["Ps23CustomStringConvertible", "userInterfaceIdiom"] +- ["Ps23CustomStringConvertible", "viewController"] +- ["Ps23CustomStringConvertible", "window"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "UIDevice"] +- !private ["Ps9Equatable", "UIScreen"] +- !private ["Ps9Equatable", "UIWindow"] +- !private ["Ps9Equatable", "ViewController"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- ["Ps9Equatable", "application"] +- ["Ps9Equatable", "applicationDidBecomeActive"] +- ["Ps9Equatable", "applicationDidEnterBackground"] +- ["Ps9Equatable", "applicationDidFinishLaunching"] +- ["Ps9Equatable", "applicationDidReceiveMemoryWarning"] +- ["Ps9Equatable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9Equatable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9Equatable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9Equatable", "applicationSignificantTimeChange"] +- ["Ps9Equatable", "applicationWillEnterForeground"] +- ["Ps9Equatable", "applicationWillResignActive"] +- ["Ps9Equatable", "applicationWillTerminate"] +- !private ["Ps9Equatable", "bounds"] +- !private ["Ps9Equatable", "current"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "main"] +- !private ["Ps9Equatable", "makeKeyAndVisible"] +- !private ["Ps9Equatable", "phone"] +- !private ["Ps9Equatable", "rootViewController"] +- !private ["Ps9Equatable", "userInterfaceIdiom"] +- ["Ps9Equatable", "viewController"] +- ["Ps9Equatable", "window"] +- ["Ps9Equatable", ""] +- !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps32ExpressibleByStringInterpolation", "init"] +- !private ["Ps26ExpressibleByStringLiteral", "init"] +- !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"] +- !private ["CSo17GLKViewController", "init"] +- !private ["PSo15GLKViewDelegate", "init"] +- !private ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "UIDevice"] +- !private ["Ps8Hashable", "UIScreen"] +- !private ["Ps8Hashable", "UIWindow"] +- !private ["Ps8Hashable", "ViewController"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- ["Ps8Hashable", "application"] +- ["Ps8Hashable", "applicationDidBecomeActive"] +- ["Ps8Hashable", "applicationDidEnterBackground"] +- ["Ps8Hashable", "applicationDidFinishLaunching"] +- ["Ps8Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps8Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps8Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps8Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps8Hashable", "applicationSignificantTimeChange"] +- ["Ps8Hashable", "applicationWillEnterForeground"] +- ["Ps8Hashable", "applicationWillResignActive"] +- ["Ps8Hashable", "applicationWillTerminate"] +- !private ["Ps8Hashable", "bounds"] +- !private ["Ps8Hashable", "current"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "main"] +- !private ["Ps8Hashable", "makeKeyAndVisible"] +- !private ["Ps8Hashable", "phone"] +- !private ["Ps8Hashable", "rootViewController"] +- !private ["Ps8Hashable", "userInterfaceIdiom"] +- ["Ps8Hashable", "viewController"] +- ["Ps8Hashable", "window"] +- ["Ps8Hashable", ""] +- !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps25LosslessStringConvertible", "init"] +- !private ["Ps10MirrorPath", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "makeKeyAndVisible"] +- !private ["PSo8NSCoding", "rootViewController"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- ["CSo8NSObject", "UIApplication"] +- !private ["CSo8NSObject", "UIDevice"] +- !private ["CSo8NSObject", "UIScreen"] +- ["CSo8NSObject", "UIViewController"] +- ["CSo8NSObject", "UIWindow"] +- !private ["CSo8NSObject", "ViewController"] +- ["CSo8NSObject", "application"] +- ["CSo8NSObject", "applicationDidBecomeActive"] +- ["CSo8NSObject", "applicationDidEnterBackground"] +- ["CSo8NSObject", "applicationDidFinishLaunching"] +- ["CSo8NSObject", "applicationDidReceiveMemoryWarning"] +- ["CSo8NSObject", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo8NSObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo8NSObject", "applicationShouldRequestHealthAuthorization"] +- ["CSo8NSObject", "applicationSignificantTimeChange"] +- ["CSo8NSObject", "applicationWillEnterForeground"] +- ["CSo8NSObject", "applicationWillResignActive"] +- ["CSo8NSObject", "applicationWillTerminate"] +- !private ["CSo8NSObject", "bounds"] +- !private ["CSo8NSObject", "current"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "main"] +- !private ["CSo8NSObject", "makeKeyAndVisible"] +- !private ["CSo8NSObject", "rootViewController"] +- !private ["CSo8NSObject", "userInterfaceIdiom"] +- ["CSo8NSObject", "viewController"] +- ["CSo8NSObject", "window"] +- !private ["PSo16NSObjectProtocol", "UIDevice"] +- !private ["PSo16NSObjectProtocol", "UIScreen"] +- !private ["PSo16NSObjectProtocol", "UIWindow"] +- !private ["PSo16NSObjectProtocol", "ViewController"] +- ["PSo16NSObjectProtocol", "application"] +- ["PSo16NSObjectProtocol", "applicationDidBecomeActive"] +- ["PSo16NSObjectProtocol", "applicationDidEnterBackground"] +- ["PSo16NSObjectProtocol", "applicationDidFinishLaunching"] +- ["PSo16NSObjectProtocol", "applicationDidReceiveMemoryWarning"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo16NSObjectProtocol", "applicationShouldRequestHealthAuthorization"] +- ["PSo16NSObjectProtocol", "applicationSignificantTimeChange"] +- ["PSo16NSObjectProtocol", "applicationWillEnterForeground"] +- ["PSo16NSObjectProtocol", "applicationWillResignActive"] +- ["PSo16NSObjectProtocol", "applicationWillTerminate"] +- !private ["PSo16NSObjectProtocol", "bounds"] +- !private ["PSo16NSObjectProtocol", "current"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "main"] +- !private ["PSo16NSObjectProtocol", "makeKeyAndVisible"] +- !private ["PSo16NSObjectProtocol", "rootViewController"] +- !private ["PSo16NSObjectProtocol", "userInterfaceIdiom"] +- ["PSo16NSObjectProtocol", "viewController"] +- ["PSo16NSObjectProtocol", "window"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- ["Sq", "deinit"] +- !private ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "phone"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps16TextOutputStream", "init"] +- !private ["Ps20TextOutputStreamable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "init"] +- !private ["PSo29UIAccessibilityIdentification", "makeKeyAndVisible"] +- !private ["PSo29UIAccessibilityIdentification", "rootViewController"] +- !private ["PSo12UIAppearance", "init"] +- !private ["PSo12UIAppearance", "makeKeyAndVisible"] +- !private ["PSo12UIAppearance", "rootViewController"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "makeKeyAndVisible"] +- !private ["PSo21UIAppearanceContainer", "rootViewController"] +- !private ["PSo21UIApplicationDelegate", "UIDevice"] +- !private ["PSo21UIApplicationDelegate", "UIScreen"] +- !private ["PSo21UIApplicationDelegate", "UIWindow"] +- !private ["PSo21UIApplicationDelegate", "ViewController"] +- ["PSo21UIApplicationDelegate", "application"] +- ["PSo21UIApplicationDelegate", "applicationDidBecomeActive"] +- ["PSo21UIApplicationDelegate", "applicationDidEnterBackground"] +- ["PSo21UIApplicationDelegate", "applicationDidFinishLaunching"] +- ["PSo21UIApplicationDelegate", "applicationDidReceiveMemoryWarning"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo21UIApplicationDelegate", "applicationShouldRequestHealthAuthorization"] +- ["PSo21UIApplicationDelegate", "applicationSignificantTimeChange"] +- ["PSo21UIApplicationDelegate", "applicationWillEnterForeground"] +- ["PSo21UIApplicationDelegate", "applicationWillResignActive"] +- ["PSo21UIApplicationDelegate", "applicationWillTerminate"] +- !private ["PSo21UIApplicationDelegate", "viewController"] +- ["PSo21UIApplicationDelegate", "window"] +- ["PSo21UIApplicationDelegate", ""] +- !private ["PSo18UIContentContainer", "init"] +- !private ["PSo17UICoordinateSpace", "init"] +- !private ["PSo17UICoordinateSpace", "makeKeyAndVisible"] +- !private ["PSo17UICoordinateSpace", "rootViewController"] +- !private ["CSo8UIDevice", "current"] +- ["CSo8UIDevice", "deinit"] +- !private ["CSo8UIDevice", "userInterfaceIdiom"] +- !private ["PSo13UIDynamicItem", "init"] +- !private ["PSo13UIDynamicItem", "makeKeyAndVisible"] +- !private ["PSo13UIDynamicItem", "rootViewController"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "makeKeyAndVisible"] +- !private ["PSo18UIFocusEnvironment", "rootViewController"] +- !private ["PSo11UIFocusItem", "init"] +- !private ["PSo11UIFocusItem", "makeKeyAndVisible"] +- !private ["PSo11UIFocusItem", "rootViewController"] +- ["CSo11UIResponder", "UIApplication"] +- !private ["CSo11UIResponder", "UIDevice"] +- !private ["CSo11UIResponder", "UIScreen"] +- ["CSo11UIResponder", "UIViewController"] +- ["CSo11UIResponder", "UIWindow"] +- !private ["CSo11UIResponder", "ViewController"] +- ["CSo11UIResponder", "application"] +- ["CSo11UIResponder", "applicationDidBecomeActive"] +- ["CSo11UIResponder", "applicationDidEnterBackground"] +- ["CSo11UIResponder", "applicationDidFinishLaunching"] +- ["CSo11UIResponder", "applicationDidReceiveMemoryWarning"] +- ["CSo11UIResponder", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo11UIResponder", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo11UIResponder", "applicationShouldRequestHealthAuthorization"] +- ["CSo11UIResponder", "applicationSignificantTimeChange"] +- ["CSo11UIResponder", "applicationWillEnterForeground"] +- ["CSo11UIResponder", "applicationWillResignActive"] +- ["CSo11UIResponder", "applicationWillTerminate"] +- ["CSo11UIResponder", "deinit"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "makeKeyAndVisible"] +- !private ["CSo11UIResponder", "rootViewController"] +- ["CSo11UIResponder", "viewController"] +- ["CSo11UIResponder", "window"] +- ["CSo11UIResponder", ""] +- !private ["PSo30UIResponderStandardEditActions", "UIDevice"] +- !private ["PSo30UIResponderStandardEditActions", "UIScreen"] +- !private ["PSo30UIResponderStandardEditActions", "UIWindow"] +- !private ["PSo30UIResponderStandardEditActions", "ViewController"] +- ["PSo30UIResponderStandardEditActions", "application"] +- ["PSo30UIResponderStandardEditActions", "applicationDidBecomeActive"] +- ["PSo30UIResponderStandardEditActions", "applicationDidEnterBackground"] +- ["PSo30UIResponderStandardEditActions", "applicationDidFinishLaunching"] +- ["PSo30UIResponderStandardEditActions", "applicationDidReceiveMemoryWarning"] +- ["PSo30UIResponderStandardEditActions", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo30UIResponderStandardEditActions", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo30UIResponderStandardEditActions", "applicationShouldRequestHealthAuthorization"] +- ["PSo30UIResponderStandardEditActions", "applicationSignificantTimeChange"] +- ["PSo30UIResponderStandardEditActions", "applicationWillEnterForeground"] +- ["PSo30UIResponderStandardEditActions", "applicationWillResignActive"] +- ["PSo30UIResponderStandardEditActions", "applicationWillTerminate"] +- !private ["PSo30UIResponderStandardEditActions", "init"] +- !private ["PSo30UIResponderStandardEditActions", "makeKeyAndVisible"] +- !private ["PSo30UIResponderStandardEditActions", "rootViewController"] +- ["PSo30UIResponderStandardEditActions", "viewController"] +- ["PSo30UIResponderStandardEditActions", "window"] +- ["PSo30UIResponderStandardEditActions", ""] +- !private ["CSo8UIScreen", "bounds"] +- ["CSo8UIScreen", "deinit"] +- !private ["CSo8UIScreen", "main"] +- !private ["PSo16UIStateRestoring", "init"] +- !private ["PSo19UITextFieldDelegate", "init"] +- !private ["PSo18UITraitEnvironment", "bounds"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "main"] +- !private ["PSo18UITraitEnvironment", "makeKeyAndVisible"] +- !private ["PSo18UITraitEnvironment", "rootViewController"] +- !private ["OSC20UIUserInterfaceIdiom", "RawValue"] +- ["OSC20UIUserInterfaceIdiom", "deinit"] +- !private ["OSC20UIUserInterfaceIdiom", "phone"] +- !private ["CSo6UIView", "init"] +- !private ["CSo6UIView", "makeKeyAndVisible"] +- !private ["CSo6UIView", "rootViewController"] +- !private ["CSo16UIViewController", "init"] +- ["CSo8UIWindow", "deinit"] +- !private ["CSo8UIWindow", "init"] +- !private ["CSo8UIWindow", "makeKeyAndVisible"] +- !private ["CSo8UIWindow", "rootViewController"] +- ["C14salmontemplate14ViewController", "deinit"] +- !private ["C14salmontemplate14ViewController", "init"] +- !private ["C14salmontemplate22ViewControllerTemplate", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "makeKeyAndVisible"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "rootViewController"] +- !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"] +- !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"] +- !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "init"] +- !private ["Ps9_Hashable", "RawValue"] +- !private ["Ps9_Hashable", "UIDevice"] +- !private ["Ps9_Hashable", "UIScreen"] +- !private ["Ps9_Hashable", "UIWindow"] +- !private ["Ps9_Hashable", "ViewController"] +- !private ["Ps9_Hashable", "_getBuiltinLogicValue"] +- ["Ps9_Hashable", "application"] +- ["Ps9_Hashable", "applicationDidBecomeActive"] +- ["Ps9_Hashable", "applicationDidEnterBackground"] +- ["Ps9_Hashable", "applicationDidFinishLaunching"] +- ["Ps9_Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps9_Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9_Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9_Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9_Hashable", "applicationSignificantTimeChange"] +- ["Ps9_Hashable", "applicationWillEnterForeground"] +- ["Ps9_Hashable", "applicationWillResignActive"] +- ["Ps9_Hashable", "applicationWillTerminate"] +- !private ["Ps9_Hashable", "bounds"] +- !private ["Ps9_Hashable", "current"] +- !private ["Ps9_Hashable", "init"] +- !private ["Ps9_Hashable", "main"] +- !private ["Ps9_Hashable", "makeKeyAndVisible"] +- !private ["Ps9_Hashable", "phone"] +- !private ["Ps9_Hashable", "rootViewController"] +- !private ["Ps9_Hashable", "userInterfaceIdiom"] +- ["Ps9_Hashable", "viewController"] +- ["Ps9_Hashable", "window"] +- ["Ps9_Hashable", ""] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +depends-nominal: +- "Ps9AnyObject" +- "C14salmontemplate11AppDelegate" +- "Sb" +- !private "PSo15CALayerDelegate" +- "VSC6CGRect" +- "Ps7CVarArg" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- "Ps9Equatable" +- !private "Ps27ExpressibleByBooleanLiteral" +- !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral" +- !private "Ps32ExpressibleByStringInterpolation" +- !private "Ps26ExpressibleByStringLiteral" +- !private "Ps33ExpressibleByUnicodeScalarLiteral" +- !private "CSo17GLKViewController" +- !private "PSo15GLKViewDelegate" +- "Ps8Hashable" +- !private "Ps25LosslessStringConvertible" +- !private "Ps10MirrorPath" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo26NSExtensionRequestHandling" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Sq" +- !private "Ps16RawRepresentable" +- "SS" +- !private "Ps16TextOutputStream" +- !private "Ps20TextOutputStreamable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- !private "PSo21UIAppearanceContainer" +- "PSo21UIApplicationDelegate" +- !private "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- "CSo8UIDevice" +- !private "PSo13UIDynamicItem" +- !private "PSo18UIFocusEnvironment" +- !private "PSo11UIFocusItem" +- "CSo11UIResponder" +- "PSo30UIResponderStandardEditActions" +- "CSo8UIScreen" +- !private "PSo16UIStateRestoring" +- !private "PSo19UITextFieldDelegate" +- !private "PSo18UITraitEnvironment" +- "OSC20UIUserInterfaceIdiom" +- !private "CSo6UIView" +- !private "CSo16UIViewController" +- "CSo8UIWindow" +- "C14salmontemplate14ViewController" +- !private "C14salmontemplate22ViewControllerTemplate" +- !private "Ps37_DefaultCustomPlaygroundQuickLookable" +- !private "Ps35_ExpressibleByBuiltinBooleanLiteral" +- !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral" +- !private "Ps34_ExpressibleByBuiltinStringLiteral" +- !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral" +- !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral" +- !private "Ps35_HasCustomAnyHashableRepresentation" +- "Ps9_Hashable" +- !private "Ps21_ObjectiveCBridgeable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule" +interface-hash: "57869206facb6c7bed15f12628b94178" diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc new file mode 100644 index 0000000..94ceb2b Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule new file mode 100644 index 0000000..43ee23c Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.d new file mode 100644 index 0000000..b58fe6b --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.mm \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.h \ + ../../engine/include/Utils/IosApi/ObjC/GLKViewTemplate.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.o new file mode 100644 index 0000000..b35746a Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.d new file mode 100644 index 0000000..90d5c7d --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.d @@ -0,0 +1,3 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.o : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.dia new file mode 100644 index 0000000..bb0ec51 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.o new file mode 100644 index 0000000..93af267 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.swiftdeps new file mode 100644 index 0000000..aa1ea4b --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.swiftdeps @@ -0,0 +1,1066 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "TTouchHashData" +- "GLKViewTemplate" +provides-nominal: +- "V14salmontemplate14TTouchHashData" +- "C14salmontemplate15GLKViewTemplate" +provides-member: +- ["V14salmontemplate14TTouchHashData", ""] +- ["C14salmontemplate15GLKViewTemplate", ""] +provides-dynamic-lookup: +- "removeTouchFromHash" +- "addTouchToHash" +- "touchesEnded" +- "touchesBegan" +- "touchesCancelled" +depends-top-level: +- !private "!" +- !private "SE_AppOnScroll" +- "Set" +- "UIEvent" +- !private "abs" +- !private "SE_AppOnTapUpAfterMove" +- !private "StringLiteralType" +- "Bool" +- !private "BooleanLiteralType" +- "CGPoint" +- "NSCoder" +- !private "-" +- "GLKView" +- !private "Float" +- !private "..." +- "CGRect" +- "GLKViewTemplate" +- !private ">" +- !private "fatalError" +- !private "Int32" +- "AssignmentPrecedence" +- "Int" +- !private "||" +- !private "==" +- !private "SE_AppOnTapUp" +- "Dictionary" +- "TTouchHashData" +- "UITouch" +depends-member: +- !private ["Ps16AbsoluteValuable", "RawValue"] +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "Float"] +- !private ["Ps9AnyObject", "Int32"] +- !private ["Ps9AnyObject", "SE_AppOnScroll"] +- !private ["Ps9AnyObject", "SE_AppOnTapUp"] +- !private ["Ps9AnyObject", "SE_AppOnTapUpAfterMove"] +- !private ["Ps9AnyObject", "TTouchHashData"] +- !private ["Ps9AnyObject", "abs"] +- ["Ps9AnyObject", "addTouchToHash"] +- !private ["Ps9AnyObject", "bounds"] +- !private ["Ps9AnyObject", "fatalError"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isMultipleTouchEnabled"] +- !private ["Ps9AnyObject", "location"] +- !private ["Ps9AnyObject", "previousLocation"] +- ["Ps9AnyObject", "removeTouchFromHash"] +- ["Ps9AnyObject", "touchDict"] +- ["Ps9AnyObject", "touchesBegan"] +- ["Ps9AnyObject", "touchesCancelled"] +- ["Ps9AnyObject", "touchesEnded"] +- ["Ps9AnyObject", ""] +- !private ["Ps23BidirectionalCollection", "Iterator"] +- !private ["Ps22BidirectionalIndexable", "Iterator"] +- !private ["Ps19BinaryFloatingPoint", "RawValue"] +- !private ["Ps19BinaryFloatingPoint", "Stride"] +- !private ["Ps19BinaryFloatingPoint", "init"] +- !private ["Ps17BitwiseOperations", "IntegerLiteralType"] +- !private ["Ps17BitwiseOperations", "Stride"] +- !private ["Ps17BitwiseOperations", "_DisabledRangeIndex"] +- !private ["Ps17BitwiseOperations", "_DisallowMixedSignArithmetic"] +- !private ["Ps17BitwiseOperations", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- ["Sb", "deinit"] +- !private ["PSo15CALayerDelegate", "Float"] +- !private ["PSo15CALayerDelegate", "Int32"] +- !private ["PSo15CALayerDelegate", "SE_AppOnScroll"] +- !private ["PSo15CALayerDelegate", "SE_AppOnTapUp"] +- !private ["PSo15CALayerDelegate", "SE_AppOnTapUpAfterMove"] +- !private ["PSo15CALayerDelegate", "TTouchHashData"] +- !private ["PSo15CALayerDelegate", "abs"] +- ["PSo15CALayerDelegate", "addTouchToHash"] +- !private ["PSo15CALayerDelegate", "bounds"] +- !private ["PSo15CALayerDelegate", "fatalError"] +- ["PSo15CALayerDelegate", "init"] +- !private ["PSo15CALayerDelegate", "isMultipleTouchEnabled"] +- ["PSo15CALayerDelegate", "removeTouchFromHash"] +- ["PSo15CALayerDelegate", "touchDict"] +- ["PSo15CALayerDelegate", "touchesBegan"] +- ["PSo15CALayerDelegate", "touchesCancelled"] +- ["PSo15CALayerDelegate", "touchesEnded"] +- ["PSo15CALayerDelegate", ""] +- !private ["V12CoreGraphics7CGFloat", "RawValue"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- ["V12CoreGraphics7CGFloat", "deinit"] +- ["VSC7CGPoint", "deinit"] +- !private ["VSC7CGPoint", "x"] +- !private ["VSC7CGPoint", "y"] +- ["VSC6CGRect", "deinit"] +- !private ["VSC6CGRect", "size"] +- !private ["VSC6CGSize", "height"] +- !private ["Ps7CVarArg", "Float"] +- !private ["Ps7CVarArg", "Int32"] +- !private ["Ps7CVarArg", "IntegerLiteralType"] +- !private ["Ps7CVarArg", "Iterator"] +- ["Ps7CVarArg", "Key"] +- !private ["Ps7CVarArg", "RawValue"] +- !private ["Ps7CVarArg", "SE_AppOnScroll"] +- !private ["Ps7CVarArg", "SE_AppOnTapUp"] +- !private ["Ps7CVarArg", "SE_AppOnTapUpAfterMove"] +- !private ["Ps7CVarArg", "Stride"] +- !private ["Ps7CVarArg", "TTouchHashData"] +- ["Ps7CVarArg", "Value"] +- !private ["Ps7CVarArg", "_DisabledRangeIndex"] +- !private ["Ps7CVarArg", "_DisallowMixedSignArithmetic"] +- !private ["Ps7CVarArg", "abs"] +- ["Ps7CVarArg", "addTouchToHash"] +- !private ["Ps7CVarArg", "bounds"] +- !private ["Ps7CVarArg", "fatalError"] +- ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "isMultipleTouchEnabled"] +- !private ["Ps7CVarArg", "location"] +- !private ["Ps7CVarArg", "previousLocation"] +- ["Ps7CVarArg", "removeTouchFromHash"] +- !private ["Ps7CVarArg", "removeValue"] +- !private ["Ps7CVarArg", "subscript"] +- ["Ps7CVarArg", "touchDict"] +- ["Ps7CVarArg", "touchesBegan"] +- ["Ps7CVarArg", "touchesCancelled"] +- ["Ps7CVarArg", "touchesEnded"] +- !private ["Ps7CVarArg", "values"] +- ["Ps7CVarArg", ""] +- !private ["Vs11ClosedRange", "deinit"] +- !private ["Vs19ClosedRangeIterator", "Element"] +- !private ["Ps10Collection", "Index"] +- !private ["Ps10Collection", "Iterator"] +- ["Ps10Collection", "Key"] +- !private ["Ps10Collection", "SubSequence"] +- ["Ps10Collection", "Value"] +- !private ["Ps10Collection", "_Element"] +- !private ["Ps10Collection", "removeValue"] +- !private ["Ps10Collection", "subscript"] +- !private ["Ps10Collection", "values"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "RawValue"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "_DisallowMixedSignArithmetic"] +- !private ["Ps10Comparable", "init"] +- !private ["Vs20CountableClosedRange", "Iterator"] +- ["Vs20CountableClosedRange", "deinit"] +- !private ["Ps28CustomDebugStringConvertible", "Float"] +- !private ["Ps28CustomDebugStringConvertible", "Int32"] +- !private ["Ps28CustomDebugStringConvertible", "Iterator"] +- ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnScroll"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnTapUp"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnTapUpAfterMove"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "TTouchHashData"] +- ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "abs"] +- ["Ps28CustomDebugStringConvertible", "addTouchToHash"] +- !private ["Ps28CustomDebugStringConvertible", "bounds"] +- !private ["Ps28CustomDebugStringConvertible", "fatalError"] +- !private ["Ps28CustomDebugStringConvertible", "height"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "location"] +- !private ["Ps28CustomDebugStringConvertible", "previousLocation"] +- ["Ps28CustomDebugStringConvertible", "removeTouchFromHash"] +- !private ["Ps28CustomDebugStringConvertible", "removeValue"] +- !private ["Ps28CustomDebugStringConvertible", "size"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "touchDict"] +- ["Ps28CustomDebugStringConvertible", "touchesBegan"] +- ["Ps28CustomDebugStringConvertible", "touchesCancelled"] +- ["Ps28CustomDebugStringConvertible", "touchesEnded"] +- !private ["Ps28CustomDebugStringConvertible", "values"] +- !private ["Ps28CustomDebugStringConvertible", "x"] +- !private ["Ps28CustomDebugStringConvertible", "y"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "IntegerLiteralType"] +- !private ["Ps29CustomPlaygroundQuickLookable", "Stride"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_DisabledRangeIndex"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_DisallowMixedSignArithmetic"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps29CustomPlaygroundQuickLookable", "height"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps29CustomPlaygroundQuickLookable", "size"] +- !private ["Ps29CustomPlaygroundQuickLookable", "x"] +- !private ["Ps29CustomPlaygroundQuickLookable", "y"] +- !private ["Ps17CustomReflectable", "Element"] +- !private ["Ps17CustomReflectable", "IntegerLiteralType"] +- !private ["Ps17CustomReflectable", "Iterator"] +- ["Ps17CustomReflectable", "Key"] +- !private ["Ps17CustomReflectable", "RawValue"] +- !private ["Ps17CustomReflectable", "Stride"] +- ["Ps17CustomReflectable", "Value"] +- !private ["Ps17CustomReflectable", "_DisabledRangeIndex"] +- !private ["Ps17CustomReflectable", "_DisallowMixedSignArithmetic"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "height"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps17CustomReflectable", "removeValue"] +- !private ["Ps17CustomReflectable", "size"] +- !private ["Ps17CustomReflectable", "subscript"] +- !private ["Ps17CustomReflectable", "values"] +- !private ["Ps17CustomReflectable", "x"] +- !private ["Ps17CustomReflectable", "y"] +- !private ["Ps23CustomStringConvertible", "Float"] +- !private ["Ps23CustomStringConvertible", "Int32"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Iterator"] +- ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "RawValue"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnScroll"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnTapUp"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnTapUpAfterMove"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "TTouchHashData"] +- ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_DisallowMixedSignArithmetic"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "abs"] +- ["Ps23CustomStringConvertible", "addTouchToHash"] +- !private ["Ps23CustomStringConvertible", "bounds"] +- !private ["Ps23CustomStringConvertible", "fatalError"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps23CustomStringConvertible", "location"] +- !private ["Ps23CustomStringConvertible", "previousLocation"] +- ["Ps23CustomStringConvertible", "removeTouchFromHash"] +- !private ["Ps23CustomStringConvertible", "removeValue"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "touchDict"] +- ["Ps23CustomStringConvertible", "touchesBegan"] +- ["Ps23CustomStringConvertible", "touchesCancelled"] +- ["Ps23CustomStringConvertible", "touchesEnded"] +- !private ["Ps23CustomStringConvertible", "values"] +- ["Ps23CustomStringConvertible", ""] +- !private ["V10Foundation4Date", "deinit"] +- !private ["Vs10Dictionary", "Iterator"] +- ["Vs10Dictionary", "Key"] +- ["Vs10Dictionary", "Value"] +- ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "removeValue"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "values"] +- !private ["Sd", "Stride"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Float"] +- !private ["Ps9Equatable", "Int32"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Iterator"] +- !private ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "SE_AppOnScroll"] +- !private ["Ps9Equatable", "SE_AppOnTapUp"] +- !private ["Ps9Equatable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "TTouchHashData"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_DisallowMixedSignArithmetic"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "abs"] +- ["Ps9Equatable", "addTouchToHash"] +- !private ["Ps9Equatable", "bounds"] +- !private ["Ps9Equatable", "fatalError"] +- !private ["Ps9Equatable", "height"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isMultipleTouchEnabled"] +- !private ["Ps9Equatable", "location"] +- !private ["Ps9Equatable", "previousLocation"] +- ["Ps9Equatable", "removeTouchFromHash"] +- !private ["Ps9Equatable", "size"] +- ["Ps9Equatable", "touchDict"] +- ["Ps9Equatable", "touchesBegan"] +- ["Ps9Equatable", "touchesCancelled"] +- ["Ps9Equatable", "touchesEnded"] +- !private ["Ps9Equatable", "x"] +- !private ["Ps9Equatable", "y"] +- ["Ps9Equatable", ""] +- !private ["Ps25ExpressibleByArrayLiteral", "Iterator"] +- !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "Iterator"] +- ["Ps30ExpressibleByDictionaryLiteral", "Key"] +- ["Ps30ExpressibleByDictionaryLiteral", "Value"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "removeValue"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "subscript"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "values"] +- !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps25ExpressibleByFloatLiteral", "RawValue"] +- !private ["Ps25ExpressibleByFloatLiteral", "Stride"] +- !private ["Ps25ExpressibleByFloatLiteral", "init"] +- !private ["Ps27ExpressibleByIntegerLiteral", "IntegerLiteralType"] +- !private ["Ps27ExpressibleByIntegerLiteral", "RawValue"] +- !private ["Ps27ExpressibleByIntegerLiteral", "Stride"] +- !private ["Ps27ExpressibleByIntegerLiteral", "_DisabledRangeIndex"] +- !private ["Ps27ExpressibleByIntegerLiteral", "_DisallowMixedSignArithmetic"] +- !private ["Ps27ExpressibleByIntegerLiteral", "init"] +- !private ["Ps32ExpressibleByStringInterpolation", "init"] +- !private ["Ps26ExpressibleByStringLiteral", "init"] +- !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"] +- !private ["Sf", "Stride"] +- ["Sf", "deinit"] +- !private ["Sf", "init"] +- !private ["Ps13FloatingPoint", "RawValue"] +- !private ["Ps13FloatingPoint", "Stride"] +- !private ["Ps13FloatingPoint", "init"] +- ["CSo7GLKView", "CGRect"] +- !private ["CSo7GLKView", "Float"] +- !private ["CSo7GLKView", "Int32"] +- ["CSo7GLKView", "NSCoder"] +- !private ["CSo7GLKView", "SE_AppOnScroll"] +- !private ["CSo7GLKView", "SE_AppOnTapUp"] +- !private ["CSo7GLKView", "SE_AppOnTapUpAfterMove"] +- ["CSo7GLKView", "Set"] +- ["CSo7GLKView", "TTouchHashData"] +- ["CSo7GLKView", "UIEvent"] +- ["CSo7GLKView", "UITouch"] +- !private ["CSo7GLKView", "abs"] +- ["CSo7GLKView", "addTouchToHash"] +- !private ["CSo7GLKView", "bounds"] +- ["CSo7GLKView", "deinit"] +- !private ["CSo7GLKView", "fatalError"] +- ["CSo7GLKView", "init"] +- !private ["CSo7GLKView", "isMultipleTouchEnabled"] +- ["CSo7GLKView", "removeTouchFromHash"] +- ["CSo7GLKView", "touchDict"] +- ["CSo7GLKView", "touchesBegan"] +- ["CSo7GLKView", "touchesCancelled"] +- ["CSo7GLKView", "touchesEnded"] +- ["CSo7GLKView", ""] +- ["C14salmontemplate15GLKViewTemplate", "CGRect"] +- !private ["C14salmontemplate15GLKViewTemplate", "Float"] +- !private ["C14salmontemplate15GLKViewTemplate", "Int32"] +- ["C14salmontemplate15GLKViewTemplate", "NSCoder"] +- !private ["C14salmontemplate15GLKViewTemplate", "SE_AppOnScroll"] +- !private ["C14salmontemplate15GLKViewTemplate", "SE_AppOnTapUp"] +- !private ["C14salmontemplate15GLKViewTemplate", "SE_AppOnTapUpAfterMove"] +- ["C14salmontemplate15GLKViewTemplate", "Set"] +- ["C14salmontemplate15GLKViewTemplate", "TTouchHashData"] +- ["C14salmontemplate15GLKViewTemplate", "UIEvent"] +- ["C14salmontemplate15GLKViewTemplate", "UITouch"] +- !private ["C14salmontemplate15GLKViewTemplate", "abs"] +- ["C14salmontemplate15GLKViewTemplate", "addTouchToHash"] +- !private ["C14salmontemplate15GLKViewTemplate", "bounds"] +- ["C14salmontemplate15GLKViewTemplate", "deinit"] +- !private ["C14salmontemplate15GLKViewTemplate", "fatalError"] +- ["C14salmontemplate15GLKViewTemplate", "init"] +- !private ["C14salmontemplate15GLKViewTemplate", "isMultipleTouchEnabled"] +- ["C14salmontemplate15GLKViewTemplate", "removeTouchFromHash"] +- ["C14salmontemplate15GLKViewTemplate", "touchDict"] +- ["C14salmontemplate15GLKViewTemplate", "touchesBegan"] +- ["C14salmontemplate15GLKViewTemplate", "touchesCancelled"] +- ["C14salmontemplate15GLKViewTemplate", "touchesEnded"] +- !private ["Ps8Hashable", "Float"] +- !private ["Ps8Hashable", "Int32"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Iterator"] +- !private ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "SE_AppOnScroll"] +- !private ["Ps8Hashable", "SE_AppOnTapUp"] +- !private ["Ps8Hashable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "TTouchHashData"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_DisallowMixedSignArithmetic"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "abs"] +- ["Ps8Hashable", "addTouchToHash"] +- !private ["Ps8Hashable", "bounds"] +- !private ["Ps8Hashable", "fatalError"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isMultipleTouchEnabled"] +- !private ["Ps8Hashable", "location"] +- !private ["Ps8Hashable", "previousLocation"] +- ["Ps8Hashable", "removeTouchFromHash"] +- ["Ps8Hashable", "touchDict"] +- ["Ps8Hashable", "touchesBegan"] +- ["Ps8Hashable", "touchesCancelled"] +- ["Ps8Hashable", "touchesEnded"] +- ["Ps8Hashable", ""] +- ["SQ", "deinit"] +- !private ["VV10Foundation8IndexSet5Index", "deinit"] +- !private ["V10Foundation9IndexPath", "deinit"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Iterator"] +- ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "removeValue"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "values"] +- !private ["Ps13IndexableBase", "Index"] +- !private ["Ps13IndexableBase", "Iterator"] +- ["Ps13IndexableBase", "Key"] +- !private ["Ps13IndexableBase", "SubSequence"] +- ["Ps13IndexableBase", "Value"] +- !private ["Ps13IndexableBase", "_Element"] +- !private ["Ps13IndexableBase", "removeValue"] +- !private ["Ps13IndexableBase", "subscript"] +- !private ["Ps13IndexableBase", "values"] +- !private ["Vs16IndexingIterator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "Stride"] +- !private ["Si", "_DisabledRangeIndex"] +- ["Si", "deinit"] +- !private ["Vs5Int16", "Stride"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "Stride"] +- ["Vs5Int32", "deinit"] +- !private ["Vs5Int32", "init"] +- !private ["Vs5Int64", "Stride"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "Stride"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps7Integer", "IntegerLiteralType"] +- !private ["Ps7Integer", "Stride"] +- !private ["Ps7Integer", "_DisabledRangeIndex"] +- !private ["Ps7Integer", "_DisallowMixedSignArithmetic"] +- !private ["Ps7Integer", "init"] +- !private ["Ps17IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps17IntegerArithmetic", "Stride"] +- !private ["Ps17IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps17IntegerArithmetic", "_DisallowMixedSignArithmetic"] +- !private ["Ps17IntegerArithmetic", "init"] +- !private ["Ps16IteratorProtocol", "Element"] +- !private ["Ps22LazyCollectionProtocol", "Iterator"] +- !private ["Vs15LazyFilterIndex", "deinit"] +- !private ["Vs17LazyMapCollection", "Iterator"] +- ["Vs17LazyMapCollection", "deinit"] +- !private ["Vs15LazyMapIterator", "Element"] +- !private ["Ps20LazySequenceProtocol", "Iterator"] +- !private ["Ps25LosslessStringConvertible", "Stride"] +- !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps25LosslessStringConvertible", "init"] +- !private ["Ps10MirrorPath", "IntegerLiteralType"] +- !private ["Ps10MirrorPath", "Stride"] +- !private ["Ps10MirrorPath", "_DisabledRangeIndex"] +- !private ["Ps10MirrorPath", "init"] +- !private ["PSo8NSCoding", "Float"] +- !private ["PSo8NSCoding", "Int32"] +- !private ["PSo8NSCoding", "SE_AppOnScroll"] +- !private ["PSo8NSCoding", "SE_AppOnTapUp"] +- !private ["PSo8NSCoding", "SE_AppOnTapUpAfterMove"] +- !private ["PSo8NSCoding", "TTouchHashData"] +- !private ["PSo8NSCoding", "abs"] +- ["PSo8NSCoding", "addTouchToHash"] +- !private ["PSo8NSCoding", "bounds"] +- !private ["PSo8NSCoding", "fatalError"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isMultipleTouchEnabled"] +- ["PSo8NSCoding", "removeTouchFromHash"] +- ["PSo8NSCoding", "touchDict"] +- ["PSo8NSCoding", "touchesBegan"] +- ["PSo8NSCoding", "touchesCancelled"] +- ["PSo8NSCoding", "touchesEnded"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSNumber", "deinit"] +- ["CSo8NSObject", "CGRect"] +- !private ["CSo8NSObject", "Float"] +- !private ["CSo8NSObject", "Int32"] +- ["CSo8NSObject", "NSCoder"] +- !private ["CSo8NSObject", "SE_AppOnScroll"] +- !private ["CSo8NSObject", "SE_AppOnTapUp"] +- !private ["CSo8NSObject", "SE_AppOnTapUpAfterMove"] +- ["CSo8NSObject", "Set"] +- ["CSo8NSObject", "TTouchHashData"] +- ["CSo8NSObject", "UIEvent"] +- ["CSo8NSObject", "UITouch"] +- !private ["CSo8NSObject", "abs"] +- ["CSo8NSObject", "addTouchToHash"] +- !private ["CSo8NSObject", "bounds"] +- !private ["CSo8NSObject", "fatalError"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isMultipleTouchEnabled"] +- !private ["CSo8NSObject", "location"] +- !private ["CSo8NSObject", "previousLocation"] +- ["CSo8NSObject", "removeTouchFromHash"] +- ["CSo8NSObject", "touchDict"] +- ["CSo8NSObject", "touchesBegan"] +- ["CSo8NSObject", "touchesCancelled"] +- ["CSo8NSObject", "touchesEnded"] +- !private ["PSo16NSObjectProtocol", "Float"] +- !private ["PSo16NSObjectProtocol", "Int32"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnScroll"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnTapUp"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnTapUpAfterMove"] +- !private ["PSo16NSObjectProtocol", "TTouchHashData"] +- !private ["PSo16NSObjectProtocol", "abs"] +- ["PSo16NSObjectProtocol", "addTouchToHash"] +- !private ["PSo16NSObjectProtocol", "bounds"] +- !private ["PSo16NSObjectProtocol", "fatalError"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isMultipleTouchEnabled"] +- !private ["PSo16NSObjectProtocol", "location"] +- !private ["PSo16NSObjectProtocol", "previousLocation"] +- ["PSo16NSObjectProtocol", "removeTouchFromHash"] +- ["PSo16NSObjectProtocol", "touchDict"] +- ["PSo16NSObjectProtocol", "touchesBegan"] +- ["PSo16NSObjectProtocol", "touchesCancelled"] +- ["PSo16NSObjectProtocol", "touchesEnded"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- ["Os5Never", "deinit"] +- ["Sq", "deinit"] +- !private ["Ps22RandomAccessCollection", "Iterator"] +- !private ["Ps21RandomAccessIndexable", "Iterator"] +- !private ["Ps8Sequence", "Element"] +- !private ["Ps8Sequence", "Index"] +- !private ["Ps8Sequence", "Iterator"] +- ["Ps8Sequence", "Key"] +- !private ["Ps8Sequence", "SubSequence"] +- ["Ps8Sequence", "Value"] +- !private ["Ps8Sequence", "_Element"] +- !private ["Ps8Sequence", "removeValue"] +- !private ["Ps8Sequence", "subscript"] +- !private ["Ps8Sequence", "values"] +- !private ["Vs3Set", "Iterator"] +- ["Vs3Set", "deinit"] +- !private ["Ps10SetAlgebra", "Iterator"] +- !private ["Vs11SetIterator", "Element"] +- !private ["Ps13SignedInteger", "IntegerLiteralType"] +- !private ["Ps13SignedInteger", "Stride"] +- !private ["Ps13SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps13SignedInteger", "init"] +- !private ["Ps12SignedNumber", "IntegerLiteralType"] +- !private ["Ps12SignedNumber", "RawValue"] +- !private ["Ps12SignedNumber", "Stride"] +- !private ["Ps12SignedNumber", "_DisabledRangeIndex"] +- !private ["Ps12SignedNumber", "init"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "Iterator"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- ["Vs12StaticString", "deinit"] +- !private ["Vs12StaticString", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "RawValue"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "_DisallowMixedSignArithmetic"] +- !private ["Ps10Strideable", "init"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- ["V14salmontemplate14TTouchHashData", "Bool"] +- ["V14salmontemplate14TTouchHashData", "CGPoint"] +- ["V14salmontemplate14TTouchHashData", "Int"] +- ["V14salmontemplate14TTouchHashData", "deinit"] +- ["V14salmontemplate14TTouchHashData", "first"] +- ["V14salmontemplate14TTouchHashData", "init"] +- ["V14salmontemplate14TTouchHashData", "number"] +- ["V14salmontemplate14TTouchHashData", "second"] +- !private ["Ps16TextOutputStream", "init"] +- !private ["Ps20TextOutputStreamable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "Float"] +- !private ["PSo29UIAccessibilityIdentification", "Int32"] +- !private ["PSo29UIAccessibilityIdentification", "SE_AppOnScroll"] +- !private ["PSo29UIAccessibilityIdentification", "SE_AppOnTapUp"] +- !private ["PSo29UIAccessibilityIdentification", "SE_AppOnTapUpAfterMove"] +- !private ["PSo29UIAccessibilityIdentification", "TTouchHashData"] +- !private ["PSo29UIAccessibilityIdentification", "abs"] +- ["PSo29UIAccessibilityIdentification", "addTouchToHash"] +- !private ["PSo29UIAccessibilityIdentification", "bounds"] +- !private ["PSo29UIAccessibilityIdentification", "fatalError"] +- ["PSo29UIAccessibilityIdentification", "init"] +- !private ["PSo29UIAccessibilityIdentification", "isMultipleTouchEnabled"] +- ["PSo29UIAccessibilityIdentification", "removeTouchFromHash"] +- ["PSo29UIAccessibilityIdentification", "touchDict"] +- ["PSo29UIAccessibilityIdentification", "touchesBegan"] +- ["PSo29UIAccessibilityIdentification", "touchesCancelled"] +- ["PSo29UIAccessibilityIdentification", "touchesEnded"] +- ["PSo29UIAccessibilityIdentification", ""] +- !private ["PSo12UIAppearance", "Float"] +- !private ["PSo12UIAppearance", "Int32"] +- !private ["PSo12UIAppearance", "SE_AppOnScroll"] +- !private ["PSo12UIAppearance", "SE_AppOnTapUp"] +- !private ["PSo12UIAppearance", "SE_AppOnTapUpAfterMove"] +- !private ["PSo12UIAppearance", "TTouchHashData"] +- !private ["PSo12UIAppearance", "abs"] +- ["PSo12UIAppearance", "addTouchToHash"] +- !private ["PSo12UIAppearance", "bounds"] +- !private ["PSo12UIAppearance", "fatalError"] +- ["PSo12UIAppearance", "init"] +- !private ["PSo12UIAppearance", "isMultipleTouchEnabled"] +- ["PSo12UIAppearance", "removeTouchFromHash"] +- ["PSo12UIAppearance", "touchDict"] +- ["PSo12UIAppearance", "touchesBegan"] +- ["PSo12UIAppearance", "touchesCancelled"] +- ["PSo12UIAppearance", "touchesEnded"] +- ["PSo12UIAppearance", ""] +- !private ["PSo21UIAppearanceContainer", "Float"] +- !private ["PSo21UIAppearanceContainer", "Int32"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnScroll"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnTapUp"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnTapUpAfterMove"] +- !private ["PSo21UIAppearanceContainer", "TTouchHashData"] +- !private ["PSo21UIAppearanceContainer", "abs"] +- ["PSo21UIAppearanceContainer", "addTouchToHash"] +- !private ["PSo21UIAppearanceContainer", "bounds"] +- !private ["PSo21UIAppearanceContainer", "fatalError"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "isMultipleTouchEnabled"] +- ["PSo21UIAppearanceContainer", "removeTouchFromHash"] +- ["PSo21UIAppearanceContainer", "touchDict"] +- ["PSo21UIAppearanceContainer", "touchesBegan"] +- ["PSo21UIAppearanceContainer", "touchesCancelled"] +- ["PSo21UIAppearanceContainer", "touchesEnded"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo17UICoordinateSpace", "Float"] +- !private ["PSo17UICoordinateSpace", "Int32"] +- !private ["PSo17UICoordinateSpace", "SE_AppOnScroll"] +- !private ["PSo17UICoordinateSpace", "SE_AppOnTapUp"] +- !private ["PSo17UICoordinateSpace", "SE_AppOnTapUpAfterMove"] +- !private ["PSo17UICoordinateSpace", "TTouchHashData"] +- !private ["PSo17UICoordinateSpace", "abs"] +- ["PSo17UICoordinateSpace", "addTouchToHash"] +- !private ["PSo17UICoordinateSpace", "bounds"] +- !private ["PSo17UICoordinateSpace", "fatalError"] +- ["PSo17UICoordinateSpace", "init"] +- !private ["PSo17UICoordinateSpace", "isMultipleTouchEnabled"] +- ["PSo17UICoordinateSpace", "removeTouchFromHash"] +- ["PSo17UICoordinateSpace", "touchDict"] +- ["PSo17UICoordinateSpace", "touchesBegan"] +- ["PSo17UICoordinateSpace", "touchesCancelled"] +- ["PSo17UICoordinateSpace", "touchesEnded"] +- ["PSo17UICoordinateSpace", ""] +- !private ["PSo13UIDynamicItem", "Float"] +- !private ["PSo13UIDynamicItem", "Int32"] +- !private ["PSo13UIDynamicItem", "SE_AppOnScroll"] +- !private ["PSo13UIDynamicItem", "SE_AppOnTapUp"] +- !private ["PSo13UIDynamicItem", "SE_AppOnTapUpAfterMove"] +- !private ["PSo13UIDynamicItem", "TTouchHashData"] +- !private ["PSo13UIDynamicItem", "abs"] +- ["PSo13UIDynamicItem", "addTouchToHash"] +- !private ["PSo13UIDynamicItem", "bounds"] +- !private ["PSo13UIDynamicItem", "fatalError"] +- ["PSo13UIDynamicItem", "init"] +- !private ["PSo13UIDynamicItem", "isMultipleTouchEnabled"] +- ["PSo13UIDynamicItem", "removeTouchFromHash"] +- ["PSo13UIDynamicItem", "touchDict"] +- ["PSo13UIDynamicItem", "touchesBegan"] +- ["PSo13UIDynamicItem", "touchesCancelled"] +- ["PSo13UIDynamicItem", "touchesEnded"] +- ["PSo13UIDynamicItem", ""] +- !private ["PSo18UIFocusEnvironment", "Float"] +- !private ["PSo18UIFocusEnvironment", "Int32"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnScroll"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnTapUp"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnTapUpAfterMove"] +- !private ["PSo18UIFocusEnvironment", "TTouchHashData"] +- !private ["PSo18UIFocusEnvironment", "abs"] +- ["PSo18UIFocusEnvironment", "addTouchToHash"] +- !private ["PSo18UIFocusEnvironment", "bounds"] +- !private ["PSo18UIFocusEnvironment", "fatalError"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UIFocusEnvironment", "removeTouchFromHash"] +- ["PSo18UIFocusEnvironment", "touchDict"] +- ["PSo18UIFocusEnvironment", "touchesBegan"] +- ["PSo18UIFocusEnvironment", "touchesCancelled"] +- ["PSo18UIFocusEnvironment", "touchesEnded"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo11UIFocusItem", "Float"] +- !private ["PSo11UIFocusItem", "Int32"] +- !private ["PSo11UIFocusItem", "SE_AppOnScroll"] +- !private ["PSo11UIFocusItem", "SE_AppOnTapUp"] +- !private ["PSo11UIFocusItem", "SE_AppOnTapUpAfterMove"] +- !private ["PSo11UIFocusItem", "TTouchHashData"] +- !private ["PSo11UIFocusItem", "abs"] +- ["PSo11UIFocusItem", "addTouchToHash"] +- !private ["PSo11UIFocusItem", "bounds"] +- !private ["PSo11UIFocusItem", "fatalError"] +- ["PSo11UIFocusItem", "init"] +- !private ["PSo11UIFocusItem", "isMultipleTouchEnabled"] +- ["PSo11UIFocusItem", "removeTouchFromHash"] +- ["PSo11UIFocusItem", "touchDict"] +- ["PSo11UIFocusItem", "touchesBegan"] +- ["PSo11UIFocusItem", "touchesCancelled"] +- ["PSo11UIFocusItem", "touchesEnded"] +- ["PSo11UIFocusItem", ""] +- ["CSo11UIResponder", "CGRect"] +- !private ["CSo11UIResponder", "Float"] +- !private ["CSo11UIResponder", "Int32"] +- ["CSo11UIResponder", "NSCoder"] +- !private ["CSo11UIResponder", "SE_AppOnScroll"] +- !private ["CSo11UIResponder", "SE_AppOnTapUp"] +- !private ["CSo11UIResponder", "SE_AppOnTapUpAfterMove"] +- ["CSo11UIResponder", "Set"] +- ["CSo11UIResponder", "TTouchHashData"] +- ["CSo11UIResponder", "UIEvent"] +- ["CSo11UIResponder", "UITouch"] +- !private ["CSo11UIResponder", "abs"] +- ["CSo11UIResponder", "addTouchToHash"] +- !private ["CSo11UIResponder", "bounds"] +- !private ["CSo11UIResponder", "fatalError"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "isMultipleTouchEnabled"] +- ["CSo11UIResponder", "removeTouchFromHash"] +- ["CSo11UIResponder", "touchDict"] +- ["CSo11UIResponder", "touchesBegan"] +- ["CSo11UIResponder", "touchesCancelled"] +- ["CSo11UIResponder", "touchesEnded"] +- !private ["PSo30UIResponderStandardEditActions", "Float"] +- !private ["PSo30UIResponderStandardEditActions", "Int32"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnScroll"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnTapUp"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnTapUpAfterMove"] +- !private ["PSo30UIResponderStandardEditActions", "TTouchHashData"] +- !private ["PSo30UIResponderStandardEditActions", "abs"] +- ["PSo30UIResponderStandardEditActions", "addTouchToHash"] +- !private ["PSo30UIResponderStandardEditActions", "bounds"] +- !private ["PSo30UIResponderStandardEditActions", "fatalError"] +- ["PSo30UIResponderStandardEditActions", "init"] +- !private ["PSo30UIResponderStandardEditActions", "isMultipleTouchEnabled"] +- ["PSo30UIResponderStandardEditActions", "removeTouchFromHash"] +- ["PSo30UIResponderStandardEditActions", "touchDict"] +- ["PSo30UIResponderStandardEditActions", "touchesBegan"] +- ["PSo30UIResponderStandardEditActions", "touchesCancelled"] +- ["PSo30UIResponderStandardEditActions", "touchesEnded"] +- ["PSo30UIResponderStandardEditActions", ""] +- ["CSo7UITouch", "deinit"] +- !private ["CSo7UITouch", "location"] +- !private ["CSo7UITouch", "previousLocation"] +- !private ["PSo18UITraitEnvironment", "Float"] +- !private ["PSo18UITraitEnvironment", "Int32"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnScroll"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnTapUp"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnTapUpAfterMove"] +- !private ["PSo18UITraitEnvironment", "TTouchHashData"] +- !private ["PSo18UITraitEnvironment", "abs"] +- ["PSo18UITraitEnvironment", "addTouchToHash"] +- !private ["PSo18UITraitEnvironment", "bounds"] +- !private ["PSo18UITraitEnvironment", "fatalError"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UITraitEnvironment", "removeTouchFromHash"] +- ["PSo18UITraitEnvironment", "touchDict"] +- ["PSo18UITraitEnvironment", "touchesBegan"] +- ["PSo18UITraitEnvironment", "touchesCancelled"] +- ["PSo18UITraitEnvironment", "touchesEnded"] +- ["PSo18UITraitEnvironment", ""] +- ["CSo6UIView", "CGRect"] +- !private ["CSo6UIView", "Float"] +- !private ["CSo6UIView", "Int32"] +- ["CSo6UIView", "NSCoder"] +- !private ["CSo6UIView", "SE_AppOnScroll"] +- !private ["CSo6UIView", "SE_AppOnTapUp"] +- !private ["CSo6UIView", "SE_AppOnTapUpAfterMove"] +- ["CSo6UIView", "Set"] +- ["CSo6UIView", "TTouchHashData"] +- ["CSo6UIView", "UIEvent"] +- ["CSo6UIView", "UITouch"] +- !private ["CSo6UIView", "abs"] +- ["CSo6UIView", "addTouchToHash"] +- !private ["CSo6UIView", "bounds"] +- !private ["CSo6UIView", "fatalError"] +- ["CSo6UIView", "init"] +- !private ["CSo6UIView", "isMultipleTouchEnabled"] +- ["CSo6UIView", "removeTouchFromHash"] +- ["CSo6UIView", "touchDict"] +- ["CSo6UIView", "touchesBegan"] +- ["CSo6UIView", "touchesCancelled"] +- ["CSo6UIView", "touchesEnded"] +- !private ["Su", "Stride"] +- !private ["Su", "_DisallowMixedSignArithmetic"] +- ["Su", "deinit"] +- !private ["Vs6UInt16", "Stride"] +- !private ["Vs6UInt16", "_DisallowMixedSignArithmetic"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "Stride"] +- !private ["Vs6UInt32", "_DisallowMixedSignArithmetic"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "Stride"] +- !private ["Vs6UInt64", "_DisallowMixedSignArithmetic"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "Stride"] +- !private ["Vs5UInt8", "_DisallowMixedSignArithmetic"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Ps15UnsignedInteger", "Stride"] +- !private ["Ps15UnsignedInteger", "_DisallowMixedSignArithmetic"] +- !private ["Ps15_CVarArgAligned", "RawValue"] +- !private ["Ps15_CVarArgAligned", "Stride"] +- !private ["Ps15_CVarArgAligned", "_DisallowMixedSignArithmetic"] +- !private ["Ps15_CVarArgAligned", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "RawValue"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "Float"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "Int32"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "SE_AppOnScroll"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "SE_AppOnTapUp"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "TTouchHashData"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "abs"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "addTouchToHash"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "bounds"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "fatalError"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "isMultipleTouchEnabled"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "removeTouchFromHash"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchDict"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchesBegan"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchesCancelled"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchesEnded"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", ""] +- !private ["Ps28_DisallowMixedSignArithmetic", "Stride"] +- !private ["Ps28_DisallowMixedSignArithmetic", "_DisallowMixedSignArithmetic"] +- !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps33_ExpressibleByBuiltinFloatLiteral", "Stride"] +- !private ["Ps33_ExpressibleByBuiltinFloatLiteral", "init"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "IntegerLiteralType"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "Stride"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "_DisabledRangeIndex"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "_DisallowMixedSignArithmetic"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "init"] +- !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"] +- !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"] +- !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "init"] +- !private ["Ps9_Hashable", "Float"] +- !private ["Ps9_Hashable", "Int32"] +- !private ["Ps9_Hashable", "IntegerLiteralType"] +- !private ["Ps9_Hashable", "Iterator"] +- !private ["Ps9_Hashable", "RawValue"] +- !private ["Ps9_Hashable", "SE_AppOnScroll"] +- !private ["Ps9_Hashable", "SE_AppOnTapUp"] +- !private ["Ps9_Hashable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps9_Hashable", "Stride"] +- !private ["Ps9_Hashable", "TTouchHashData"] +- !private ["Ps9_Hashable", "_DisabledRangeIndex"] +- !private ["Ps9_Hashable", "_DisallowMixedSignArithmetic"] +- !private ["Ps9_Hashable", "_getBuiltinLogicValue"] +- !private ["Ps9_Hashable", "abs"] +- ["Ps9_Hashable", "addTouchToHash"] +- !private ["Ps9_Hashable", "bounds"] +- !private ["Ps9_Hashable", "fatalError"] +- ["Ps9_Hashable", "init"] +- !private ["Ps9_Hashable", "isMultipleTouchEnabled"] +- !private ["Ps9_Hashable", "location"] +- !private ["Ps9_Hashable", "previousLocation"] +- ["Ps9_Hashable", "removeTouchFromHash"] +- ["Ps9_Hashable", "touchDict"] +- ["Ps9_Hashable", "touchesBegan"] +- ["Ps9_Hashable", "touchesCancelled"] +- ["Ps9_Hashable", "touchesEnded"] +- ["Ps9_Hashable", ""] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Stride"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "_DisallowMixedSignArithmetic"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps8_Integer", "IntegerLiteralType"] +- !private ["Ps8_Integer", "Stride"] +- !private ["Ps8_Integer", "_DisabledRangeIndex"] +- !private ["Ps8_Integer", "_DisallowMixedSignArithmetic"] +- !private ["Ps8_Integer", "init"] +- !private ["Ps18_IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps18_IntegerArithmetic", "Stride"] +- !private ["Ps18_IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps18_IntegerArithmetic", "_DisallowMixedSignArithmetic"] +- !private ["Ps18_IntegerArithmetic", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Iterator"] +- ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "RawValue"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisallowMixedSignArithmetic"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "height"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "removeValue"] +- !private ["Ps21_ObjectiveCBridgeable", "size"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "values"] +- !private ["Ps21_ObjectiveCBridgeable", "x"] +- !private ["Ps21_ObjectiveCBridgeable", "y"] +- !private ["Ps14_SignedInteger", "IntegerLiteralType"] +- !private ["Ps14_SignedInteger", "Stride"] +- !private ["Ps14_SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps14_SignedInteger", "init"] +- !private ["Ps11_Strideable", "IntegerLiteralType"] +- !private ["Ps11_Strideable", "RawValue"] +- !private ["Ps11_Strideable", "Stride"] +- !private ["Ps11_Strideable", "_DisabledRangeIndex"] +- !private ["Ps11_Strideable", "_DisallowMixedSignArithmetic"] +- !private ["Ps11_Strideable", "init"] +- !private ["Ps14_StringElement", "Stride"] +- !private ["Ps14_StringElement", "_DisallowMixedSignArithmetic"] +- !private ["V4simd7double2", "deinit"] +- !private ["V4simd7double3", "deinit"] +- !private ["V4simd7double4", "deinit"] +- !private ["V4simd6float2", "deinit"] +- !private ["V4simd6float3", "deinit"] +- !private ["V4simd6float4", "deinit"] +- !private ["V4simd4int2", "deinit"] +- !private ["V4simd4int3", "deinit"] +- !private ["V4simd4int4", "deinit"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Ps23BidirectionalCollection" +- !private "Ps22BidirectionalIndexable" +- !private "Ps19BinaryFloatingPoint" +- !private "Ps17BitwiseOperations" +- "Sb" +- "PSo15CALayerDelegate" +- "V12CoreGraphics7CGFloat" +- "VSC7CGPoint" +- "VSC6CGRect" +- !private "VSC6CGSize" +- "Ps7CVarArg" +- !private "Vs11ClosedRange" +- !private "Vs19ClosedRangeIterator" +- "Ps10Collection" +- !private "Ps10Comparable" +- "Vs20CountableClosedRange" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- !private "V10Foundation4Date" +- "Vs10Dictionary" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps25ExpressibleByArrayLiteral" +- !private "Ps27ExpressibleByBooleanLiteral" +- "Ps30ExpressibleByDictionaryLiteral" +- !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral" +- !private "Ps25ExpressibleByFloatLiteral" +- !private "Ps27ExpressibleByIntegerLiteral" +- !private "Ps32ExpressibleByStringInterpolation" +- !private "Ps26ExpressibleByStringLiteral" +- !private "Ps33ExpressibleByUnicodeScalarLiteral" +- "Sf" +- !private "Ps13FloatingPoint" +- "CSo7GLKView" +- "C14salmontemplate15GLKViewTemplate" +- "Ps8Hashable" +- "SQ" +- !private "VV10Foundation8IndexSet5Index" +- !private "V10Foundation9IndexPath" +- "Ps9Indexable" +- "Ps13IndexableBase" +- !private "Vs16IndexingIterator" +- "Si" +- !private "Vs5Int16" +- "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps7Integer" +- !private "Ps17IntegerArithmetic" +- !private "Ps16IteratorProtocol" +- !private "Ps22LazyCollectionProtocol" +- !private "Vs15LazyFilterIndex" +- "Vs17LazyMapCollection" +- !private "Vs15LazyMapIterator" +- !private "Ps20LazySequenceProtocol" +- !private "Ps25LosslessStringConvertible" +- !private "Ps10MirrorPath" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Os5Never" +- "Sq" +- !private "Ps22RandomAccessCollection" +- !private "Ps21RandomAccessIndexable" +- "Ps8Sequence" +- "Vs3Set" +- !private "Ps10SetAlgebra" +- !private "Vs11SetIterator" +- !private "Ps13SignedInteger" +- !private "Ps12SignedNumber" +- !private "Vs5Slice" +- "Vs12StaticString" +- !private "Ps10Strideable" +- "SS" +- "V14salmontemplate14TTouchHashData" +- !private "Ps16TextOutputStream" +- !private "Ps20TextOutputStreamable" +- "PSo29UIAccessibilityIdentification" +- "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo17UICoordinateSpace" +- "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- "PSo11UIFocusItem" +- "CSo11UIResponder" +- "PSo30UIResponderStandardEditActions" +- "CSo7UITouch" +- "PSo18UITraitEnvironment" +- "CSo6UIView" +- "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Ps15UnsignedInteger" +- !private "Ps15_CVarArgAligned" +- !private "Ps22_CVarArgPassedAsDouble" +- "Ps37_DefaultCustomPlaygroundQuickLookable" +- !private "Ps28_DisallowMixedSignArithmetic" +- !private "Ps35_ExpressibleByBuiltinBooleanLiteral" +- !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral" +- !private "Ps33_ExpressibleByBuiltinFloatLiteral" +- !private "Ps35_ExpressibleByBuiltinIntegerLiteral" +- !private "Ps34_ExpressibleByBuiltinStringLiteral" +- !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral" +- !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral" +- !private "Ps35_HasCustomAnyHashableRepresentation" +- "Ps9_Hashable" +- !private "Ps14_Incrementable" +- !private "Ps8_Integer" +- !private "Ps18_IntegerArithmetic" +- "Ps21_ObjectiveCBridgeable" +- !private "Ps14_SignedInteger" +- !private "Ps11_Strideable" +- !private "Ps14_StringElement" +- !private "V4simd7double2" +- !private "V4simd7double3" +- !private "V4simd7double4" +- !private "V4simd6float2" +- !private "V4simd6float3" +- !private "V4simd6float4" +- !private "V4simd4int2" +- !private "V4simd4int3" +- !private "V4simd4int4" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule" +interface-hash: "08ef7f86947330b9c609816191608d5b" diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc new file mode 100644 index 0000000..94ceb2b Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule new file mode 100644 index 0000000..6f2aea2 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.d new file mode 100644 index 0000000..3b3a0ea --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.d @@ -0,0 +1,1605 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.cpp \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/Utils/IosApi/IosWrapper.h \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.dia new file mode 100644 index 0000000..10c7fbc Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.o new file mode 100644 index 0000000..ee4a1dd Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.d new file mode 100644 index 0000000..64d7960 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.d @@ -0,0 +1,3 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.o : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftmodule : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftdoc : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.dia new file mode 100644 index 0000000..bb0ec51 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.o new file mode 100644 index 0000000..84278a2 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.swiftdeps new file mode 100644 index 0000000..2f4719e --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.swiftdeps @@ -0,0 +1,1546 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ViewControllerTemplate" +- "ViewController" +provides-nominal: +- "C14salmontemplate22ViewControllerTemplate" +- "C14salmontemplate14ViewController" +provides-member: +- ["C14salmontemplate22ViewControllerTemplate", ""] +- ["C14salmontemplate14ViewController", ""] +provides-dynamic-lookup: +- "tearDownGL" +- "update" +- "textFieldDidBeginEditing" +- "appInitCaller" +- "appInitCaller" +- "textFieldDidEndEditing" +- "respondToPinch" +- "glkView" +- "supportedInterfaceOrientations" +- "setupGL" +- "textField" +- "hiddenTextField" +- "onReceiveKeyboardNotification" +- "viewDidLoad" +depends-top-level: +- !private "SE_OnKeyboardHide" +- !private "==" +- !private "print" +- "GLKBaseEffect" +- !private "UnicodeScalarType" +- "NSNotification" +- "Bool" +- !private "CustomAppInit" +- !private "StringLiteralType" +- !private "BooleanLiteralType" +- "EAGLContext" +- "UIPinchGestureRecognizer" +- "GLKView" +- !private "SE_AppOnScale" +- !private "Float" +- "ViewControllerTemplate" +- "UITextField" +- !private "SE_SetKeyboardText" +- !private "NotificationCenter" +- !private "SE_AppDeinit" +- "CGRect" +- !private "SE_AppUpdate" +- !private "SE_AppDraw" +- "UIInterfaceOrientationMask" +- "UITextFieldDelegate" +- "NSRange" +- !private "*" +- !private "Int32" +- "String" +- "ViewController" +- "GLKViewController" +- "AssignmentPrecedence" +- !private "Array" +- "CastingPrecedence" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "CGRect"] +- !private ["Ps9AnyObject", "CustomAppInit"] +- !private ["Ps9AnyObject", "EAGLContext"] +- !private ["Ps9AnyObject", "Float"] +- !private ["Ps9AnyObject", "Int32"] +- !private ["Ps9AnyObject", "NotificationCenter"] +- !private ["Ps9AnyObject", "SE_AppDeinit"] +- !private ["Ps9AnyObject", "SE_AppDraw"] +- !private ["Ps9AnyObject", "SE_AppOnScale"] +- !private ["Ps9AnyObject", "SE_AppUpdate"] +- !private ["Ps9AnyObject", "SE_OnKeyboardHide"] +- !private ["Ps9AnyObject", "SE_SetKeyboardText"] +- !private ["Ps9AnyObject", "UIPinchGestureRecognizer"] +- !private ["Ps9AnyObject", "UITextField"] +- !private ["Ps9AnyObject", "addGestureRecognizer"] +- !private ["Ps9AnyObject", "addObserver"] +- !private ["Ps9AnyObject", "addSubview"] +- ["Ps9AnyObject", "appInitCaller"] +- !private ["Ps9AnyObject", "autocorrectionType"] +- ["Ps9AnyObject", "context"] +- !private ["Ps9AnyObject", "default"] +- !private ["Ps9AnyObject", "delaysTouchesEnded"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "drawableDepthFormat"] +- ["Ps9AnyObject", "effect"] +- ["Ps9AnyObject", "glkView"] +- ["Ps9AnyObject", "hiddenTextField"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isMultipleTouchEnabled"] +- !private ["Ps9AnyObject", "name"] +- !private ["Ps9AnyObject", "object"] +- ["Ps9AnyObject", "onReceiveKeyboardNotification"] +- !private ["Ps9AnyObject", "print"] +- !private ["Ps9AnyObject", "resignFirstResponder"] +- ["Ps9AnyObject", "respondToPinch"] +- !private ["Ps9AnyObject", "scale"] +- !private ["Ps9AnyObject", "setCurrent"] +- ["Ps9AnyObject", "setupGL"] +- ["Ps9AnyObject", "supportedInterfaceOrientations"] +- ["Ps9AnyObject", "tearDownGL"] +- !private ["Ps9AnyObject", "text"] +- ["Ps9AnyObject", "textField"] +- ["Ps9AnyObject", "textFieldDidBeginEditing"] +- ["Ps9AnyObject", "textFieldDidEndEditing"] +- ["Ps9AnyObject", "textFieldShouldBeginEditing"] +- ["Ps9AnyObject", "textFieldShouldClear"] +- ["Ps9AnyObject", "textFieldShouldEndEditing"] +- ["Ps9AnyObject", "textFieldShouldReturn"] +- !private ["Ps9AnyObject", "timeSinceLastUpdate"] +- ["Ps9AnyObject", "update"] +- !private ["Ps9AnyObject", "view"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", ""] +- !private ["Ps19BinaryFloatingPoint", "init"] +- !private ["Ps17BitwiseOperations", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- ["Sb", "deinit"] +- !private ["PSo15CALayerDelegate", "addGestureRecognizer"] +- !private ["PSo15CALayerDelegate", "addSubview"] +- !private ["PSo15CALayerDelegate", "autocorrectionType"] +- !private ["PSo15CALayerDelegate", "context"] +- !private ["PSo15CALayerDelegate", "delegate"] +- !private ["PSo15CALayerDelegate", "drawableDepthFormat"] +- !private ["PSo15CALayerDelegate", "init"] +- !private ["PSo15CALayerDelegate", "isMultipleTouchEnabled"] +- !private ["PSo15CALayerDelegate", "resignFirstResponder"] +- !private ["PSo15CALayerDelegate", "text"] +- ["VSC6CGRect", "deinit"] +- !private ["VSC6CGRect", "init"] +- !private ["Ps7CVarArg", "CGRect"] +- !private ["Ps7CVarArg", "CustomAppInit"] +- !private ["Ps7CVarArg", "EAGLContext"] +- !private ["Ps7CVarArg", "Float"] +- !private ["Ps7CVarArg", "Int32"] +- !private ["Ps7CVarArg", "NotificationCenter"] +- !private ["Ps7CVarArg", "SE_AppDeinit"] +- !private ["Ps7CVarArg", "SE_AppDraw"] +- !private ["Ps7CVarArg", "SE_AppOnScale"] +- !private ["Ps7CVarArg", "SE_AppUpdate"] +- !private ["Ps7CVarArg", "SE_OnKeyboardHide"] +- !private ["Ps7CVarArg", "SE_SetKeyboardText"] +- !private ["Ps7CVarArg", "UIPinchGestureRecognizer"] +- !private ["Ps7CVarArg", "UITextField"] +- !private ["Ps7CVarArg", "addGestureRecognizer"] +- !private ["Ps7CVarArg", "addObserver"] +- !private ["Ps7CVarArg", "addSubview"] +- ["Ps7CVarArg", "appInitCaller"] +- !private ["Ps7CVarArg", "autocorrectionType"] +- ["Ps7CVarArg", "context"] +- !private ["Ps7CVarArg", "default"] +- !private ["Ps7CVarArg", "delaysTouchesEnded"] +- !private ["Ps7CVarArg", "delegate"] +- !private ["Ps7CVarArg", "drawableDepthFormat"] +- ["Ps7CVarArg", "effect"] +- ["Ps7CVarArg", "glkView"] +- ["Ps7CVarArg", "hiddenTextField"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "isMultipleTouchEnabled"] +- !private ["Ps7CVarArg", "name"] +- !private ["Ps7CVarArg", "object"] +- ["Ps7CVarArg", "onReceiveKeyboardNotification"] +- !private ["Ps7CVarArg", "print"] +- !private ["Ps7CVarArg", "resignFirstResponder"] +- ["Ps7CVarArg", "respondToPinch"] +- !private ["Ps7CVarArg", "scale"] +- !private ["Ps7CVarArg", "setCurrent"] +- ["Ps7CVarArg", "setupGL"] +- ["Ps7CVarArg", "supportedInterfaceOrientations"] +- ["Ps7CVarArg", "tearDownGL"] +- !private ["Ps7CVarArg", "text"] +- ["Ps7CVarArg", "textField"] +- ["Ps7CVarArg", "textFieldDidBeginEditing"] +- ["Ps7CVarArg", "textFieldDidEndEditing"] +- ["Ps7CVarArg", "textFieldShouldBeginEditing"] +- ["Ps7CVarArg", "textFieldShouldClear"] +- ["Ps7CVarArg", "textFieldShouldEndEditing"] +- ["Ps7CVarArg", "textFieldShouldReturn"] +- !private ["Ps7CVarArg", "timeSinceLastUpdate"] +- ["Ps7CVarArg", "update"] +- !private ["Ps7CVarArg", "view"] +- ["Ps7CVarArg", "viewDidLoad"] +- ["Ps7CVarArg", ""] +- !private ["Ps10Comparable", "RawValue"] +- !private ["Ps10Comparable", "UITextFieldTextDidChange"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "CGRect"] +- !private ["Ps28CustomDebugStringConvertible", "CustomAppInit"] +- !private ["Ps28CustomDebugStringConvertible", "EAGLContext"] +- !private ["Ps28CustomDebugStringConvertible", "Float"] +- !private ["Ps28CustomDebugStringConvertible", "Int32"] +- !private ["Ps28CustomDebugStringConvertible", "NotificationCenter"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppDeinit"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppDraw"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnScale"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppUpdate"] +- !private ["Ps28CustomDebugStringConvertible", "SE_OnKeyboardHide"] +- !private ["Ps28CustomDebugStringConvertible", "SE_SetKeyboardText"] +- !private ["Ps28CustomDebugStringConvertible", "UIPinchGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "UITextField"] +- !private ["Ps28CustomDebugStringConvertible", "UITextFieldTextDidChange"] +- !private ["Ps28CustomDebugStringConvertible", "addGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "addObserver"] +- !private ["Ps28CustomDebugStringConvertible", "addSubview"] +- ["Ps28CustomDebugStringConvertible", "appInitCaller"] +- !private ["Ps28CustomDebugStringConvertible", "autocorrectionType"] +- ["Ps28CustomDebugStringConvertible", "context"] +- !private ["Ps28CustomDebugStringConvertible", "default"] +- !private ["Ps28CustomDebugStringConvertible", "delaysTouchesEnded"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "drawableDepthFormat"] +- ["Ps28CustomDebugStringConvertible", "effect"] +- ["Ps28CustomDebugStringConvertible", "glkView"] +- ["Ps28CustomDebugStringConvertible", "hiddenTextField"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "name"] +- !private ["Ps28CustomDebugStringConvertible", "object"] +- ["Ps28CustomDebugStringConvertible", "onReceiveKeyboardNotification"] +- !private ["Ps28CustomDebugStringConvertible", "print"] +- !private ["Ps28CustomDebugStringConvertible", "resignFirstResponder"] +- ["Ps28CustomDebugStringConvertible", "respondToPinch"] +- !private ["Ps28CustomDebugStringConvertible", "scale"] +- !private ["Ps28CustomDebugStringConvertible", "setCurrent"] +- ["Ps28CustomDebugStringConvertible", "setupGL"] +- ["Ps28CustomDebugStringConvertible", "supportedInterfaceOrientations"] +- ["Ps28CustomDebugStringConvertible", "tearDownGL"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- ["Ps28CustomDebugStringConvertible", "textField"] +- ["Ps28CustomDebugStringConvertible", "textFieldDidBeginEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldDidEndEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldBeginEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldClear"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldEndEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldReturn"] +- !private ["Ps28CustomDebugStringConvertible", "timeSinceLastUpdate"] +- ["Ps28CustomDebugStringConvertible", "update"] +- !private ["Ps28CustomDebugStringConvertible", "view"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "UITextFieldTextDidChange"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps23CustomStringConvertible", "CGRect"] +- !private ["Ps23CustomStringConvertible", "CustomAppInit"] +- !private ["Ps23CustomStringConvertible", "EAGLContext"] +- !private ["Ps23CustomStringConvertible", "Float"] +- !private ["Ps23CustomStringConvertible", "Int32"] +- !private ["Ps23CustomStringConvertible", "NotificationCenter"] +- !private ["Ps23CustomStringConvertible", "SE_AppDeinit"] +- !private ["Ps23CustomStringConvertible", "SE_AppDraw"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnScale"] +- !private ["Ps23CustomStringConvertible", "SE_AppUpdate"] +- !private ["Ps23CustomStringConvertible", "SE_OnKeyboardHide"] +- !private ["Ps23CustomStringConvertible", "SE_SetKeyboardText"] +- !private ["Ps23CustomStringConvertible", "UIPinchGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "UITextField"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "addGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "addObserver"] +- !private ["Ps23CustomStringConvertible", "addSubview"] +- ["Ps23CustomStringConvertible", "appInitCaller"] +- !private ["Ps23CustomStringConvertible", "autocorrectionType"] +- ["Ps23CustomStringConvertible", "context"] +- !private ["Ps23CustomStringConvertible", "default"] +- !private ["Ps23CustomStringConvertible", "delaysTouchesEnded"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "drawableDepthFormat"] +- ["Ps23CustomStringConvertible", "effect"] +- ["Ps23CustomStringConvertible", "glkView"] +- ["Ps23CustomStringConvertible", "hiddenTextField"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps23CustomStringConvertible", "name"] +- !private ["Ps23CustomStringConvertible", "object"] +- ["Ps23CustomStringConvertible", "onReceiveKeyboardNotification"] +- !private ["Ps23CustomStringConvertible", "print"] +- !private ["Ps23CustomStringConvertible", "resignFirstResponder"] +- ["Ps23CustomStringConvertible", "respondToPinch"] +- !private ["Ps23CustomStringConvertible", "scale"] +- !private ["Ps23CustomStringConvertible", "setCurrent"] +- ["Ps23CustomStringConvertible", "setupGL"] +- ["Ps23CustomStringConvertible", "supportedInterfaceOrientations"] +- ["Ps23CustomStringConvertible", "tearDownGL"] +- !private ["Ps23CustomStringConvertible", "text"] +- ["Ps23CustomStringConvertible", "textField"] +- ["Ps23CustomStringConvertible", "textFieldDidBeginEditing"] +- ["Ps23CustomStringConvertible", "textFieldDidEndEditing"] +- ["Ps23CustomStringConvertible", "textFieldShouldBeginEditing"] +- ["Ps23CustomStringConvertible", "textFieldShouldClear"] +- ["Ps23CustomStringConvertible", "textFieldShouldEndEditing"] +- ["Ps23CustomStringConvertible", "textFieldShouldReturn"] +- !private ["Ps23CustomStringConvertible", "timeSinceLastUpdate"] +- ["Ps23CustomStringConvertible", "update"] +- !private ["Ps23CustomStringConvertible", "view"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", ""] +- ["Sd", "deinit"] +- ["CSo11EAGLContext", "deinit"] +- !private ["CSo11EAGLContext", "init"] +- !private ["CSo11EAGLContext", "setCurrent"] +- ["OSC16EAGLRenderingAPI", "deinit"] +- !private ["OSC16EAGLRenderingAPI", "openGLES2"] +- !private ["Ps9Equatable", "CGRect"] +- !private ["Ps9Equatable", "CustomAppInit"] +- !private ["Ps9Equatable", "EAGLContext"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Float"] +- !private ["Ps9Equatable", "Int32"] +- !private ["Ps9Equatable", "NotificationCenter"] +- !private ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "SE_AppDeinit"] +- !private ["Ps9Equatable", "SE_AppDraw"] +- !private ["Ps9Equatable", "SE_AppOnScale"] +- !private ["Ps9Equatable", "SE_AppUpdate"] +- !private ["Ps9Equatable", "SE_OnKeyboardHide"] +- !private ["Ps9Equatable", "SE_SetKeyboardText"] +- !private ["Ps9Equatable", "UIPinchGestureRecognizer"] +- !private ["Ps9Equatable", "UITextField"] +- !private ["Ps9Equatable", "UITextFieldTextDidChange"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "addGestureRecognizer"] +- !private ["Ps9Equatable", "addObserver"] +- !private ["Ps9Equatable", "addSubview"] +- ["Ps9Equatable", "appInitCaller"] +- !private ["Ps9Equatable", "autocorrectionType"] +- ["Ps9Equatable", "context"] +- !private ["Ps9Equatable", "default"] +- !private ["Ps9Equatable", "delaysTouchesEnded"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "drawableDepthFormat"] +- ["Ps9Equatable", "effect"] +- !private ["Ps9Equatable", "format24"] +- ["Ps9Equatable", "glkView"] +- ["Ps9Equatable", "hiddenTextField"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isMultipleTouchEnabled"] +- !private ["Ps9Equatable", "landscapeLeft"] +- !private ["Ps9Equatable", "landscapeRight"] +- !private ["Ps9Equatable", "name"] +- !private ["Ps9Equatable", "no"] +- !private ["Ps9Equatable", "object"] +- ["Ps9Equatable", "onReceiveKeyboardNotification"] +- !private ["Ps9Equatable", "openGLES2"] +- !private ["Ps9Equatable", "print"] +- !private ["Ps9Equatable", "resignFirstResponder"] +- ["Ps9Equatable", "respondToPinch"] +- !private ["Ps9Equatable", "scale"] +- !private ["Ps9Equatable", "setCurrent"] +- ["Ps9Equatable", "setupGL"] +- ["Ps9Equatable", "supportedInterfaceOrientations"] +- ["Ps9Equatable", "tearDownGL"] +- !private ["Ps9Equatable", "text"] +- ["Ps9Equatable", "textField"] +- ["Ps9Equatable", "textFieldDidBeginEditing"] +- ["Ps9Equatable", "textFieldDidEndEditing"] +- ["Ps9Equatable", "textFieldShouldBeginEditing"] +- ["Ps9Equatable", "textFieldShouldClear"] +- ["Ps9Equatable", "textFieldShouldEndEditing"] +- ["Ps9Equatable", "textFieldShouldReturn"] +- !private ["Ps9Equatable", "timeSinceLastUpdate"] +- ["Ps9Equatable", "update"] +- !private ["Ps9Equatable", "view"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", ""] +- !private ["Ps25ExpressibleByArrayLiteral", "Element"] +- !private ["Ps25ExpressibleByArrayLiteral", "landscapeLeft"] +- !private ["Ps25ExpressibleByArrayLiteral", "landscapeRight"] +- !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps25ExpressibleByFloatLiteral", "init"] +- !private ["Ps27ExpressibleByIntegerLiteral", "init"] +- !private ["Ps23ExpressibleByNilLiteral", "UITextFieldTextDidChange"] +- !private ["Ps32ExpressibleByStringInterpolation", "init"] +- !private ["Ps26ExpressibleByStringLiteral", "init"] +- !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"] +- ["Sf", "deinit"] +- !private ["Sf", "init"] +- !private ["Ps13FloatingPoint", "init"] +- !private ["CSo7GLKView", "addGestureRecognizer"] +- !private ["CSo7GLKView", "addSubview"] +- !private ["CSo7GLKView", "context"] +- ["CSo7GLKView", "deinit"] +- !private ["CSo7GLKView", "drawableDepthFormat"] +- !private ["CSo7GLKView", "isMultipleTouchEnabled"] +- ["CSo17GLKViewController", "Bool"] +- ["CSo17GLKViewController", "CGRect"] +- !private ["CSo17GLKViewController", "CustomAppInit"] +- ["CSo17GLKViewController", "EAGLContext"] +- !private ["CSo17GLKViewController", "Float"] +- ["CSo17GLKViewController", "GLKBaseEffect"] +- ["CSo17GLKViewController", "GLKView"] +- !private ["CSo17GLKViewController", "Int32"] +- ["CSo17GLKViewController", "NSNotification"] +- ["CSo17GLKViewController", "NSRange"] +- !private ["CSo17GLKViewController", "NotificationCenter"] +- !private ["CSo17GLKViewController", "SE_AppDeinit"] +- !private ["CSo17GLKViewController", "SE_AppDraw"] +- !private ["CSo17GLKViewController", "SE_AppOnScale"] +- !private ["CSo17GLKViewController", "SE_AppUpdate"] +- !private ["CSo17GLKViewController", "SE_OnKeyboardHide"] +- !private ["CSo17GLKViewController", "SE_SetKeyboardText"] +- ["CSo17GLKViewController", "String"] +- ["CSo17GLKViewController", "UIInterfaceOrientationMask"] +- ["CSo17GLKViewController", "UIPinchGestureRecognizer"] +- ["CSo17GLKViewController", "UITextField"] +- ["CSo17GLKViewController", "appInitCaller"] +- ["CSo17GLKViewController", "context"] +- ["CSo17GLKViewController", "deinit"] +- ["CSo17GLKViewController", "effect"] +- ["CSo17GLKViewController", "glkView"] +- ["CSo17GLKViewController", "hiddenTextField"] +- ["CSo17GLKViewController", "init"] +- ["CSo17GLKViewController", "onReceiveKeyboardNotification"] +- !private ["CSo17GLKViewController", "print"] +- ["CSo17GLKViewController", "respondToPinch"] +- ["CSo17GLKViewController", "setupGL"] +- ["CSo17GLKViewController", "supportedInterfaceOrientations"] +- ["CSo17GLKViewController", "tearDownGL"] +- ["CSo17GLKViewController", "textField"] +- ["CSo17GLKViewController", "textFieldDidBeginEditing"] +- ["CSo17GLKViewController", "textFieldDidEndEditing"] +- ["CSo17GLKViewController", "textFieldShouldBeginEditing"] +- ["CSo17GLKViewController", "textFieldShouldClear"] +- ["CSo17GLKViewController", "textFieldShouldEndEditing"] +- ["CSo17GLKViewController", "textFieldShouldReturn"] +- !private ["CSo17GLKViewController", "timeSinceLastUpdate"] +- ["CSo17GLKViewController", "update"] +- !private ["CSo17GLKViewController", "view"] +- ["CSo17GLKViewController", "viewDidLoad"] +- ["CSo17GLKViewController", ""] +- !private ["PSo15GLKViewDelegate", "CGRect"] +- !private ["PSo15GLKViewDelegate", "CustomAppInit"] +- !private ["PSo15GLKViewDelegate", "EAGLContext"] +- !private ["PSo15GLKViewDelegate", "Float"] +- !private ["PSo15GLKViewDelegate", "Int32"] +- !private ["PSo15GLKViewDelegate", "NotificationCenter"] +- !private ["PSo15GLKViewDelegate", "SE_AppDeinit"] +- !private ["PSo15GLKViewDelegate", "SE_AppDraw"] +- !private ["PSo15GLKViewDelegate", "SE_AppOnScale"] +- !private ["PSo15GLKViewDelegate", "SE_AppUpdate"] +- !private ["PSo15GLKViewDelegate", "SE_OnKeyboardHide"] +- !private ["PSo15GLKViewDelegate", "SE_SetKeyboardText"] +- !private ["PSo15GLKViewDelegate", "UIPinchGestureRecognizer"] +- !private ["PSo15GLKViewDelegate", "UITextField"] +- ["PSo15GLKViewDelegate", "appInitCaller"] +- ["PSo15GLKViewDelegate", "context"] +- ["PSo15GLKViewDelegate", "effect"] +- ["PSo15GLKViewDelegate", "glkView"] +- ["PSo15GLKViewDelegate", "hiddenTextField"] +- !private ["PSo15GLKViewDelegate", "init"] +- ["PSo15GLKViewDelegate", "onReceiveKeyboardNotification"] +- !private ["PSo15GLKViewDelegate", "print"] +- ["PSo15GLKViewDelegate", "respondToPinch"] +- ["PSo15GLKViewDelegate", "setupGL"] +- ["PSo15GLKViewDelegate", "supportedInterfaceOrientations"] +- ["PSo15GLKViewDelegate", "tearDownGL"] +- ["PSo15GLKViewDelegate", "textField"] +- ["PSo15GLKViewDelegate", "textFieldDidBeginEditing"] +- ["PSo15GLKViewDelegate", "textFieldDidEndEditing"] +- ["PSo15GLKViewDelegate", "textFieldShouldBeginEditing"] +- ["PSo15GLKViewDelegate", "textFieldShouldClear"] +- ["PSo15GLKViewDelegate", "textFieldShouldEndEditing"] +- ["PSo15GLKViewDelegate", "textFieldShouldReturn"] +- !private ["PSo15GLKViewDelegate", "timeSinceLastUpdate"] +- ["PSo15GLKViewDelegate", "update"] +- !private ["PSo15GLKViewDelegate", "view"] +- ["PSo15GLKViewDelegate", "viewDidLoad"] +- ["PSo15GLKViewDelegate", ""] +- ["OSC26GLKViewDrawableDepthFormat", "deinit"] +- !private ["OSC26GLKViewDrawableDepthFormat", "format24"] +- !private ["Ps8Hashable", "CGRect"] +- !private ["Ps8Hashable", "CustomAppInit"] +- !private ["Ps8Hashable", "EAGLContext"] +- !private ["Ps8Hashable", "Float"] +- !private ["Ps8Hashable", "Int32"] +- !private ["Ps8Hashable", "NotificationCenter"] +- !private ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "SE_AppDeinit"] +- !private ["Ps8Hashable", "SE_AppDraw"] +- !private ["Ps8Hashable", "SE_AppOnScale"] +- !private ["Ps8Hashable", "SE_AppUpdate"] +- !private ["Ps8Hashable", "SE_OnKeyboardHide"] +- !private ["Ps8Hashable", "SE_SetKeyboardText"] +- !private ["Ps8Hashable", "UIPinchGestureRecognizer"] +- !private ["Ps8Hashable", "UITextField"] +- !private ["Ps8Hashable", "UITextFieldTextDidChange"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "addGestureRecognizer"] +- !private ["Ps8Hashable", "addObserver"] +- !private ["Ps8Hashable", "addSubview"] +- ["Ps8Hashable", "appInitCaller"] +- !private ["Ps8Hashable", "autocorrectionType"] +- ["Ps8Hashable", "context"] +- !private ["Ps8Hashable", "default"] +- !private ["Ps8Hashable", "delaysTouchesEnded"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "drawableDepthFormat"] +- ["Ps8Hashable", "effect"] +- !private ["Ps8Hashable", "format24"] +- ["Ps8Hashable", "glkView"] +- ["Ps8Hashable", "hiddenTextField"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isMultipleTouchEnabled"] +- !private ["Ps8Hashable", "name"] +- !private ["Ps8Hashable", "no"] +- !private ["Ps8Hashable", "object"] +- ["Ps8Hashable", "onReceiveKeyboardNotification"] +- !private ["Ps8Hashable", "openGLES2"] +- !private ["Ps8Hashable", "print"] +- !private ["Ps8Hashable", "resignFirstResponder"] +- ["Ps8Hashable", "respondToPinch"] +- !private ["Ps8Hashable", "scale"] +- !private ["Ps8Hashable", "setCurrent"] +- ["Ps8Hashable", "setupGL"] +- ["Ps8Hashable", "supportedInterfaceOrientations"] +- ["Ps8Hashable", "tearDownGL"] +- !private ["Ps8Hashable", "text"] +- ["Ps8Hashable", "textField"] +- ["Ps8Hashable", "textFieldDidBeginEditing"] +- ["Ps8Hashable", "textFieldDidEndEditing"] +- ["Ps8Hashable", "textFieldShouldBeginEditing"] +- ["Ps8Hashable", "textFieldShouldClear"] +- ["Ps8Hashable", "textFieldShouldEndEditing"] +- ["Ps8Hashable", "textFieldShouldReturn"] +- !private ["Ps8Hashable", "timeSinceLastUpdate"] +- ["Ps8Hashable", "update"] +- !private ["Ps8Hashable", "view"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", ""] +- ["SQ", "deinit"] +- ["Si", "deinit"] +- ["Vs5Int32", "deinit"] +- !private ["Vs5Int32", "init"] +- !private ["Ps7Integer", "init"] +- !private ["Ps17IntegerArithmetic", "init"] +- !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps25LosslessStringConvertible", "init"] +- !private ["Ps10MirrorPath", "init"] +- ["CSo7NSCoder", "deinit"] +- !private ["PSo8NSCoding", "CGRect"] +- !private ["PSo8NSCoding", "CustomAppInit"] +- !private ["PSo8NSCoding", "EAGLContext"] +- !private ["PSo8NSCoding", "Float"] +- !private ["PSo8NSCoding", "Int32"] +- !private ["PSo8NSCoding", "NotificationCenter"] +- !private ["PSo8NSCoding", "SE_AppDeinit"] +- !private ["PSo8NSCoding", "SE_AppDraw"] +- !private ["PSo8NSCoding", "SE_AppOnScale"] +- !private ["PSo8NSCoding", "SE_AppUpdate"] +- !private ["PSo8NSCoding", "SE_OnKeyboardHide"] +- !private ["PSo8NSCoding", "SE_SetKeyboardText"] +- !private ["PSo8NSCoding", "UIPinchGestureRecognizer"] +- !private ["PSo8NSCoding", "UITextField"] +- !private ["PSo8NSCoding", "addGestureRecognizer"] +- !private ["PSo8NSCoding", "addSubview"] +- ["PSo8NSCoding", "appInitCaller"] +- !private ["PSo8NSCoding", "autocorrectionType"] +- ["PSo8NSCoding", "context"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "drawableDepthFormat"] +- ["PSo8NSCoding", "effect"] +- ["PSo8NSCoding", "glkView"] +- ["PSo8NSCoding", "hiddenTextField"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isMultipleTouchEnabled"] +- !private ["PSo8NSCoding", "name"] +- !private ["PSo8NSCoding", "object"] +- ["PSo8NSCoding", "onReceiveKeyboardNotification"] +- !private ["PSo8NSCoding", "print"] +- !private ["PSo8NSCoding", "resignFirstResponder"] +- ["PSo8NSCoding", "respondToPinch"] +- ["PSo8NSCoding", "setupGL"] +- ["PSo8NSCoding", "supportedInterfaceOrientations"] +- ["PSo8NSCoding", "tearDownGL"] +- !private ["PSo8NSCoding", "text"] +- ["PSo8NSCoding", "textField"] +- ["PSo8NSCoding", "textFieldDidBeginEditing"] +- ["PSo8NSCoding", "textFieldDidEndEditing"] +- ["PSo8NSCoding", "textFieldShouldBeginEditing"] +- ["PSo8NSCoding", "textFieldShouldClear"] +- ["PSo8NSCoding", "textFieldShouldEndEditing"] +- ["PSo8NSCoding", "textFieldShouldReturn"] +- !private ["PSo8NSCoding", "timeSinceLastUpdate"] +- ["PSo8NSCoding", "update"] +- !private ["PSo8NSCoding", "view"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "name"] +- !private ["PSo9NSCopying", "object"] +- !private ["PSo26NSExtensionRequestHandling", "CGRect"] +- !private ["PSo26NSExtensionRequestHandling", "CustomAppInit"] +- !private ["PSo26NSExtensionRequestHandling", "EAGLContext"] +- !private ["PSo26NSExtensionRequestHandling", "Float"] +- !private ["PSo26NSExtensionRequestHandling", "Int32"] +- !private ["PSo26NSExtensionRequestHandling", "NotificationCenter"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppDeinit"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppDraw"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppOnScale"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppUpdate"] +- !private ["PSo26NSExtensionRequestHandling", "SE_OnKeyboardHide"] +- !private ["PSo26NSExtensionRequestHandling", "SE_SetKeyboardText"] +- !private ["PSo26NSExtensionRequestHandling", "UIPinchGestureRecognizer"] +- !private ["PSo26NSExtensionRequestHandling", "UITextField"] +- ["PSo26NSExtensionRequestHandling", "appInitCaller"] +- ["PSo26NSExtensionRequestHandling", "context"] +- ["PSo26NSExtensionRequestHandling", "effect"] +- ["PSo26NSExtensionRequestHandling", "glkView"] +- ["PSo26NSExtensionRequestHandling", "hiddenTextField"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- ["PSo26NSExtensionRequestHandling", "onReceiveKeyboardNotification"] +- !private ["PSo26NSExtensionRequestHandling", "print"] +- ["PSo26NSExtensionRequestHandling", "respondToPinch"] +- ["PSo26NSExtensionRequestHandling", "setupGL"] +- ["PSo26NSExtensionRequestHandling", "supportedInterfaceOrientations"] +- ["PSo26NSExtensionRequestHandling", "tearDownGL"] +- ["PSo26NSExtensionRequestHandling", "textField"] +- ["PSo26NSExtensionRequestHandling", "textFieldDidBeginEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldDidEndEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldBeginEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldClear"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldEndEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldReturn"] +- !private ["PSo26NSExtensionRequestHandling", "timeSinceLastUpdate"] +- ["PSo26NSExtensionRequestHandling", "update"] +- !private ["PSo26NSExtensionRequestHandling", "view"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["PSo16NSMutableCopying", "init"] +- ["CSo14NSNotification", "deinit"] +- !private ["CSo14NSNotification", "name"] +- !private ["CSo14NSNotification", "object"] +- ["CSo8NSObject", "Bool"] +- ["CSo8NSObject", "CGRect"] +- !private ["CSo8NSObject", "CustomAppInit"] +- ["CSo8NSObject", "EAGLContext"] +- !private ["CSo8NSObject", "Float"] +- ["CSo8NSObject", "GLKBaseEffect"] +- ["CSo8NSObject", "GLKView"] +- !private ["CSo8NSObject", "Int32"] +- ["CSo8NSObject", "NSNotification"] +- ["CSo8NSObject", "NSRange"] +- !private ["CSo8NSObject", "NotificationCenter"] +- !private ["CSo8NSObject", "SE_AppDeinit"] +- !private ["CSo8NSObject", "SE_AppDraw"] +- !private ["CSo8NSObject", "SE_AppOnScale"] +- !private ["CSo8NSObject", "SE_AppUpdate"] +- !private ["CSo8NSObject", "SE_OnKeyboardHide"] +- !private ["CSo8NSObject", "SE_SetKeyboardText"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UIInterfaceOrientationMask"] +- ["CSo8NSObject", "UIPinchGestureRecognizer"] +- ["CSo8NSObject", "UITextField"] +- !private ["CSo8NSObject", "addGestureRecognizer"] +- !private ["CSo8NSObject", "addObserver"] +- !private ["CSo8NSObject", "addSubview"] +- ["CSo8NSObject", "appInitCaller"] +- !private ["CSo8NSObject", "autocorrectionType"] +- ["CSo8NSObject", "context"] +- !private ["CSo8NSObject", "default"] +- !private ["CSo8NSObject", "delaysTouchesEnded"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "drawableDepthFormat"] +- ["CSo8NSObject", "effect"] +- ["CSo8NSObject", "glkView"] +- ["CSo8NSObject", "hiddenTextField"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isMultipleTouchEnabled"] +- !private ["CSo8NSObject", "name"] +- !private ["CSo8NSObject", "object"] +- ["CSo8NSObject", "onReceiveKeyboardNotification"] +- !private ["CSo8NSObject", "print"] +- !private ["CSo8NSObject", "resignFirstResponder"] +- ["CSo8NSObject", "respondToPinch"] +- !private ["CSo8NSObject", "scale"] +- !private ["CSo8NSObject", "setCurrent"] +- ["CSo8NSObject", "setupGL"] +- ["CSo8NSObject", "supportedInterfaceOrientations"] +- ["CSo8NSObject", "tearDownGL"] +- !private ["CSo8NSObject", "text"] +- ["CSo8NSObject", "textField"] +- ["CSo8NSObject", "textFieldDidBeginEditing"] +- ["CSo8NSObject", "textFieldDidEndEditing"] +- ["CSo8NSObject", "textFieldShouldBeginEditing"] +- ["CSo8NSObject", "textFieldShouldClear"] +- ["CSo8NSObject", "textFieldShouldEndEditing"] +- ["CSo8NSObject", "textFieldShouldReturn"] +- !private ["CSo8NSObject", "timeSinceLastUpdate"] +- ["CSo8NSObject", "update"] +- !private ["CSo8NSObject", "view"] +- ["CSo8NSObject", "viewDidLoad"] +- !private ["PSo16NSObjectProtocol", "CGRect"] +- !private ["PSo16NSObjectProtocol", "CustomAppInit"] +- !private ["PSo16NSObjectProtocol", "EAGLContext"] +- !private ["PSo16NSObjectProtocol", "Float"] +- !private ["PSo16NSObjectProtocol", "Int32"] +- !private ["PSo16NSObjectProtocol", "NotificationCenter"] +- !private ["PSo16NSObjectProtocol", "SE_AppDeinit"] +- !private ["PSo16NSObjectProtocol", "SE_AppDraw"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnScale"] +- !private ["PSo16NSObjectProtocol", "SE_AppUpdate"] +- !private ["PSo16NSObjectProtocol", "SE_OnKeyboardHide"] +- !private ["PSo16NSObjectProtocol", "SE_SetKeyboardText"] +- !private ["PSo16NSObjectProtocol", "UIPinchGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "UITextField"] +- !private ["PSo16NSObjectProtocol", "addGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "addObserver"] +- !private ["PSo16NSObjectProtocol", "addSubview"] +- ["PSo16NSObjectProtocol", "appInitCaller"] +- !private ["PSo16NSObjectProtocol", "autocorrectionType"] +- ["PSo16NSObjectProtocol", "context"] +- !private ["PSo16NSObjectProtocol", "default"] +- !private ["PSo16NSObjectProtocol", "delaysTouchesEnded"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "drawableDepthFormat"] +- ["PSo16NSObjectProtocol", "effect"] +- ["PSo16NSObjectProtocol", "glkView"] +- ["PSo16NSObjectProtocol", "hiddenTextField"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isMultipleTouchEnabled"] +- !private ["PSo16NSObjectProtocol", "name"] +- !private ["PSo16NSObjectProtocol", "object"] +- ["PSo16NSObjectProtocol", "onReceiveKeyboardNotification"] +- !private ["PSo16NSObjectProtocol", "print"] +- !private ["PSo16NSObjectProtocol", "resignFirstResponder"] +- ["PSo16NSObjectProtocol", "respondToPinch"] +- !private ["PSo16NSObjectProtocol", "scale"] +- !private ["PSo16NSObjectProtocol", "setCurrent"] +- ["PSo16NSObjectProtocol", "setupGL"] +- ["PSo16NSObjectProtocol", "supportedInterfaceOrientations"] +- ["PSo16NSObjectProtocol", "tearDownGL"] +- !private ["PSo16NSObjectProtocol", "text"] +- ["PSo16NSObjectProtocol", "textField"] +- ["PSo16NSObjectProtocol", "textFieldDidBeginEditing"] +- ["PSo16NSObjectProtocol", "textFieldDidEndEditing"] +- ["PSo16NSObjectProtocol", "textFieldShouldBeginEditing"] +- ["PSo16NSObjectProtocol", "textFieldShouldClear"] +- ["PSo16NSObjectProtocol", "textFieldShouldEndEditing"] +- ["PSo16NSObjectProtocol", "textFieldShouldReturn"] +- !private ["PSo16NSObjectProtocol", "timeSinceLastUpdate"] +- ["PSo16NSObjectProtocol", "update"] +- !private ["PSo16NSObjectProtocol", "view"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["VCSo14NSNotification4Name", "RawValue"] +- !private ["VCSo14NSNotification4Name", "UITextFieldTextDidChange"] +- ["VCSo14NSNotification4Name", "deinit"] +- !private ["CSo18NotificationCenter", "addObserver"] +- !private ["CSo18NotificationCenter", "default"] +- ["CSo18NotificationCenter", "deinit"] +- !private ["Ps9OptionSet", "Element"] +- !private ["Ps9OptionSet", "landscapeLeft"] +- !private ["Ps9OptionSet", "landscapeRight"] +- !private ["Sq", "UITextFieldTextDidChange"] +- ["Sq", "deinit"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "UITextFieldTextDidChange"] +- !private ["Ps16RawRepresentable", "format24"] +- !private ["Ps16RawRepresentable", "landscapeLeft"] +- !private ["Ps16RawRepresentable", "landscapeRight"] +- !private ["Ps16RawRepresentable", "no"] +- !private ["Ps16RawRepresentable", "openGLES2"] +- ["V10ObjectiveC8Selector", "deinit"] +- !private ["Ps10SetAlgebra", "Element"] +- !private ["Ps10SetAlgebra", "landscapeLeft"] +- !private ["Ps10SetAlgebra", "landscapeRight"] +- !private ["Ps13SignedInteger", "init"] +- !private ["Ps12SignedNumber", "init"] +- !private ["Ps10Strideable", "init"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps16TextOutputStream", "init"] +- !private ["Ps20TextOutputStreamable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "addGestureRecognizer"] +- !private ["PSo29UIAccessibilityIdentification", "addSubview"] +- !private ["PSo29UIAccessibilityIdentification", "autocorrectionType"] +- !private ["PSo29UIAccessibilityIdentification", "context"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "drawableDepthFormat"] +- !private ["PSo29UIAccessibilityIdentification", "init"] +- !private ["PSo29UIAccessibilityIdentification", "isMultipleTouchEnabled"] +- !private ["PSo29UIAccessibilityIdentification", "resignFirstResponder"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo12UIAppearance", "addGestureRecognizer"] +- !private ["PSo12UIAppearance", "addSubview"] +- !private ["PSo12UIAppearance", "autocorrectionType"] +- !private ["PSo12UIAppearance", "context"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "drawableDepthFormat"] +- !private ["PSo12UIAppearance", "init"] +- !private ["PSo12UIAppearance", "isMultipleTouchEnabled"] +- !private ["PSo12UIAppearance", "resignFirstResponder"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo21UIAppearanceContainer", "CGRect"] +- !private ["PSo21UIAppearanceContainer", "CustomAppInit"] +- !private ["PSo21UIAppearanceContainer", "EAGLContext"] +- !private ["PSo21UIAppearanceContainer", "Float"] +- !private ["PSo21UIAppearanceContainer", "Int32"] +- !private ["PSo21UIAppearanceContainer", "NotificationCenter"] +- !private ["PSo21UIAppearanceContainer", "SE_AppDeinit"] +- !private ["PSo21UIAppearanceContainer", "SE_AppDraw"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnScale"] +- !private ["PSo21UIAppearanceContainer", "SE_AppUpdate"] +- !private ["PSo21UIAppearanceContainer", "SE_OnKeyboardHide"] +- !private ["PSo21UIAppearanceContainer", "SE_SetKeyboardText"] +- !private ["PSo21UIAppearanceContainer", "UIPinchGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "UITextField"] +- !private ["PSo21UIAppearanceContainer", "addGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "addSubview"] +- ["PSo21UIAppearanceContainer", "appInitCaller"] +- !private ["PSo21UIAppearanceContainer", "autocorrectionType"] +- ["PSo21UIAppearanceContainer", "context"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "drawableDepthFormat"] +- ["PSo21UIAppearanceContainer", "effect"] +- ["PSo21UIAppearanceContainer", "glkView"] +- ["PSo21UIAppearanceContainer", "hiddenTextField"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "isMultipleTouchEnabled"] +- ["PSo21UIAppearanceContainer", "onReceiveKeyboardNotification"] +- !private ["PSo21UIAppearanceContainer", "print"] +- !private ["PSo21UIAppearanceContainer", "resignFirstResponder"] +- ["PSo21UIAppearanceContainer", "respondToPinch"] +- ["PSo21UIAppearanceContainer", "setupGL"] +- ["PSo21UIAppearanceContainer", "supportedInterfaceOrientations"] +- ["PSo21UIAppearanceContainer", "tearDownGL"] +- !private ["PSo21UIAppearanceContainer", "text"] +- ["PSo21UIAppearanceContainer", "textField"] +- ["PSo21UIAppearanceContainer", "textFieldDidBeginEditing"] +- ["PSo21UIAppearanceContainer", "textFieldDidEndEditing"] +- ["PSo21UIAppearanceContainer", "textFieldShouldBeginEditing"] +- ["PSo21UIAppearanceContainer", "textFieldShouldClear"] +- ["PSo21UIAppearanceContainer", "textFieldShouldEndEditing"] +- ["PSo21UIAppearanceContainer", "textFieldShouldReturn"] +- !private ["PSo21UIAppearanceContainer", "timeSinceLastUpdate"] +- ["PSo21UIAppearanceContainer", "update"] +- !private ["PSo21UIAppearanceContainer", "view"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo18UIContentContainer", "CGRect"] +- !private ["PSo18UIContentContainer", "CustomAppInit"] +- !private ["PSo18UIContentContainer", "EAGLContext"] +- !private ["PSo18UIContentContainer", "Float"] +- !private ["PSo18UIContentContainer", "Int32"] +- !private ["PSo18UIContentContainer", "NotificationCenter"] +- !private ["PSo18UIContentContainer", "SE_AppDeinit"] +- !private ["PSo18UIContentContainer", "SE_AppDraw"] +- !private ["PSo18UIContentContainer", "SE_AppOnScale"] +- !private ["PSo18UIContentContainer", "SE_AppUpdate"] +- !private ["PSo18UIContentContainer", "SE_OnKeyboardHide"] +- !private ["PSo18UIContentContainer", "SE_SetKeyboardText"] +- !private ["PSo18UIContentContainer", "UIPinchGestureRecognizer"] +- !private ["PSo18UIContentContainer", "UITextField"] +- ["PSo18UIContentContainer", "appInitCaller"] +- ["PSo18UIContentContainer", "context"] +- ["PSo18UIContentContainer", "effect"] +- ["PSo18UIContentContainer", "glkView"] +- ["PSo18UIContentContainer", "hiddenTextField"] +- !private ["PSo18UIContentContainer", "init"] +- ["PSo18UIContentContainer", "onReceiveKeyboardNotification"] +- !private ["PSo18UIContentContainer", "print"] +- ["PSo18UIContentContainer", "respondToPinch"] +- ["PSo18UIContentContainer", "setupGL"] +- ["PSo18UIContentContainer", "supportedInterfaceOrientations"] +- ["PSo18UIContentContainer", "tearDownGL"] +- ["PSo18UIContentContainer", "textField"] +- ["PSo18UIContentContainer", "textFieldDidBeginEditing"] +- ["PSo18UIContentContainer", "textFieldDidEndEditing"] +- ["PSo18UIContentContainer", "textFieldShouldBeginEditing"] +- ["PSo18UIContentContainer", "textFieldShouldClear"] +- ["PSo18UIContentContainer", "textFieldShouldEndEditing"] +- ["PSo18UIContentContainer", "textFieldShouldReturn"] +- !private ["PSo18UIContentContainer", "timeSinceLastUpdate"] +- ["PSo18UIContentContainer", "update"] +- !private ["PSo18UIContentContainer", "view"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo30UIContentSizeCategoryAdjusting", "autocorrectionType"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "delegate"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "init"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "resignFirstResponder"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "text"] +- !private ["CSo9UIControl", "autocorrectionType"] +- !private ["CSo9UIControl", "delegate"] +- !private ["CSo9UIControl", "init"] +- !private ["CSo9UIControl", "resignFirstResponder"] +- !private ["CSo9UIControl", "text"] +- !private ["PSo17UICoordinateSpace", "addGestureRecognizer"] +- !private ["PSo17UICoordinateSpace", "addSubview"] +- !private ["PSo17UICoordinateSpace", "autocorrectionType"] +- !private ["PSo17UICoordinateSpace", "context"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "drawableDepthFormat"] +- !private ["PSo17UICoordinateSpace", "init"] +- !private ["PSo17UICoordinateSpace", "isMultipleTouchEnabled"] +- !private ["PSo17UICoordinateSpace", "resignFirstResponder"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo13UIDynamicItem", "addGestureRecognizer"] +- !private ["PSo13UIDynamicItem", "addSubview"] +- !private ["PSo13UIDynamicItem", "autocorrectionType"] +- !private ["PSo13UIDynamicItem", "context"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "drawableDepthFormat"] +- !private ["PSo13UIDynamicItem", "init"] +- !private ["PSo13UIDynamicItem", "isMultipleTouchEnabled"] +- !private ["PSo13UIDynamicItem", "resignFirstResponder"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo18UIFocusEnvironment", "CGRect"] +- !private ["PSo18UIFocusEnvironment", "CustomAppInit"] +- !private ["PSo18UIFocusEnvironment", "EAGLContext"] +- !private ["PSo18UIFocusEnvironment", "Float"] +- !private ["PSo18UIFocusEnvironment", "Int32"] +- !private ["PSo18UIFocusEnvironment", "NotificationCenter"] +- !private ["PSo18UIFocusEnvironment", "SE_AppDeinit"] +- !private ["PSo18UIFocusEnvironment", "SE_AppDraw"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnScale"] +- !private ["PSo18UIFocusEnvironment", "SE_AppUpdate"] +- !private ["PSo18UIFocusEnvironment", "SE_OnKeyboardHide"] +- !private ["PSo18UIFocusEnvironment", "SE_SetKeyboardText"] +- !private ["PSo18UIFocusEnvironment", "UIPinchGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "UITextField"] +- !private ["PSo18UIFocusEnvironment", "addGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "addSubview"] +- ["PSo18UIFocusEnvironment", "appInitCaller"] +- !private ["PSo18UIFocusEnvironment", "autocorrectionType"] +- ["PSo18UIFocusEnvironment", "context"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "drawableDepthFormat"] +- ["PSo18UIFocusEnvironment", "effect"] +- ["PSo18UIFocusEnvironment", "glkView"] +- ["PSo18UIFocusEnvironment", "hiddenTextField"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UIFocusEnvironment", "onReceiveKeyboardNotification"] +- !private ["PSo18UIFocusEnvironment", "print"] +- !private ["PSo18UIFocusEnvironment", "resignFirstResponder"] +- ["PSo18UIFocusEnvironment", "respondToPinch"] +- ["PSo18UIFocusEnvironment", "setupGL"] +- ["PSo18UIFocusEnvironment", "supportedInterfaceOrientations"] +- ["PSo18UIFocusEnvironment", "tearDownGL"] +- !private ["PSo18UIFocusEnvironment", "text"] +- ["PSo18UIFocusEnvironment", "textField"] +- ["PSo18UIFocusEnvironment", "textFieldDidBeginEditing"] +- ["PSo18UIFocusEnvironment", "textFieldDidEndEditing"] +- ["PSo18UIFocusEnvironment", "textFieldShouldBeginEditing"] +- ["PSo18UIFocusEnvironment", "textFieldShouldClear"] +- ["PSo18UIFocusEnvironment", "textFieldShouldEndEditing"] +- ["PSo18UIFocusEnvironment", "textFieldShouldReturn"] +- !private ["PSo18UIFocusEnvironment", "timeSinceLastUpdate"] +- ["PSo18UIFocusEnvironment", "update"] +- !private ["PSo18UIFocusEnvironment", "view"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo11UIFocusItem", "addGestureRecognizer"] +- !private ["PSo11UIFocusItem", "addSubview"] +- !private ["PSo11UIFocusItem", "autocorrectionType"] +- !private ["PSo11UIFocusItem", "context"] +- !private ["PSo11UIFocusItem", "delegate"] +- !private ["PSo11UIFocusItem", "drawableDepthFormat"] +- !private ["PSo11UIFocusItem", "init"] +- !private ["PSo11UIFocusItem", "isMultipleTouchEnabled"] +- !private ["PSo11UIFocusItem", "resignFirstResponder"] +- !private ["PSo11UIFocusItem", "text"] +- !private ["CSo19UIGestureRecognizer", "delaysTouchesEnded"] +- !private ["CSo19UIGestureRecognizer", "init"] +- !private ["CSo19UIGestureRecognizer", "scale"] +- !private ["VSC26UIInterfaceOrientationMask", "Element"] +- ["VSC26UIInterfaceOrientationMask", "deinit"] +- !private ["VSC26UIInterfaceOrientationMask", "landscapeLeft"] +- !private ["VSC26UIInterfaceOrientationMask", "landscapeRight"] +- !private ["PSo10UIKeyInput", "autocorrectionType"] +- !private ["PSo10UIKeyInput", "delegate"] +- !private ["PSo10UIKeyInput", "init"] +- !private ["PSo10UIKeyInput", "resignFirstResponder"] +- !private ["PSo10UIKeyInput", "text"] +- ["CSo24UIPinchGestureRecognizer", "deinit"] +- !private ["CSo24UIPinchGestureRecognizer", "delaysTouchesEnded"] +- !private ["CSo24UIPinchGestureRecognizer", "init"] +- !private ["CSo24UIPinchGestureRecognizer", "scale"] +- ["CSo11UIResponder", "Bool"] +- ["CSo11UIResponder", "CGRect"] +- !private ["CSo11UIResponder", "CustomAppInit"] +- ["CSo11UIResponder", "EAGLContext"] +- !private ["CSo11UIResponder", "Float"] +- ["CSo11UIResponder", "GLKBaseEffect"] +- ["CSo11UIResponder", "GLKView"] +- !private ["CSo11UIResponder", "Int32"] +- ["CSo11UIResponder", "NSNotification"] +- ["CSo11UIResponder", "NSRange"] +- !private ["CSo11UIResponder", "NotificationCenter"] +- !private ["CSo11UIResponder", "SE_AppDeinit"] +- !private ["CSo11UIResponder", "SE_AppDraw"] +- !private ["CSo11UIResponder", "SE_AppOnScale"] +- !private ["CSo11UIResponder", "SE_AppUpdate"] +- !private ["CSo11UIResponder", "SE_OnKeyboardHide"] +- !private ["CSo11UIResponder", "SE_SetKeyboardText"] +- ["CSo11UIResponder", "String"] +- ["CSo11UIResponder", "UIInterfaceOrientationMask"] +- ["CSo11UIResponder", "UIPinchGestureRecognizer"] +- ["CSo11UIResponder", "UITextField"] +- !private ["CSo11UIResponder", "addGestureRecognizer"] +- !private ["CSo11UIResponder", "addSubview"] +- ["CSo11UIResponder", "appInitCaller"] +- !private ["CSo11UIResponder", "autocorrectionType"] +- ["CSo11UIResponder", "context"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "drawableDepthFormat"] +- ["CSo11UIResponder", "effect"] +- ["CSo11UIResponder", "glkView"] +- ["CSo11UIResponder", "hiddenTextField"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "isMultipleTouchEnabled"] +- ["CSo11UIResponder", "onReceiveKeyboardNotification"] +- !private ["CSo11UIResponder", "print"] +- !private ["CSo11UIResponder", "resignFirstResponder"] +- ["CSo11UIResponder", "respondToPinch"] +- ["CSo11UIResponder", "setupGL"] +- ["CSo11UIResponder", "supportedInterfaceOrientations"] +- ["CSo11UIResponder", "tearDownGL"] +- !private ["CSo11UIResponder", "text"] +- ["CSo11UIResponder", "textField"] +- ["CSo11UIResponder", "textFieldDidBeginEditing"] +- ["CSo11UIResponder", "textFieldDidEndEditing"] +- ["CSo11UIResponder", "textFieldShouldBeginEditing"] +- ["CSo11UIResponder", "textFieldShouldClear"] +- ["CSo11UIResponder", "textFieldShouldEndEditing"] +- ["CSo11UIResponder", "textFieldShouldReturn"] +- !private ["CSo11UIResponder", "timeSinceLastUpdate"] +- ["CSo11UIResponder", "update"] +- !private ["CSo11UIResponder", "view"] +- ["CSo11UIResponder", "viewDidLoad"] +- !private ["PSo30UIResponderStandardEditActions", "CGRect"] +- !private ["PSo30UIResponderStandardEditActions", "CustomAppInit"] +- !private ["PSo30UIResponderStandardEditActions", "EAGLContext"] +- !private ["PSo30UIResponderStandardEditActions", "Float"] +- !private ["PSo30UIResponderStandardEditActions", "Int32"] +- !private ["PSo30UIResponderStandardEditActions", "NotificationCenter"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppDeinit"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppDraw"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnScale"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppUpdate"] +- !private ["PSo30UIResponderStandardEditActions", "SE_OnKeyboardHide"] +- !private ["PSo30UIResponderStandardEditActions", "SE_SetKeyboardText"] +- !private ["PSo30UIResponderStandardEditActions", "UIPinchGestureRecognizer"] +- !private ["PSo30UIResponderStandardEditActions", "UITextField"] +- !private ["PSo30UIResponderStandardEditActions", "addGestureRecognizer"] +- !private ["PSo30UIResponderStandardEditActions", "addSubview"] +- ["PSo30UIResponderStandardEditActions", "appInitCaller"] +- !private ["PSo30UIResponderStandardEditActions", "autocorrectionType"] +- ["PSo30UIResponderStandardEditActions", "context"] +- !private ["PSo30UIResponderStandardEditActions", "delegate"] +- !private ["PSo30UIResponderStandardEditActions", "drawableDepthFormat"] +- ["PSo30UIResponderStandardEditActions", "effect"] +- ["PSo30UIResponderStandardEditActions", "glkView"] +- ["PSo30UIResponderStandardEditActions", "hiddenTextField"] +- !private ["PSo30UIResponderStandardEditActions", "init"] +- !private ["PSo30UIResponderStandardEditActions", "isMultipleTouchEnabled"] +- ["PSo30UIResponderStandardEditActions", "onReceiveKeyboardNotification"] +- !private ["PSo30UIResponderStandardEditActions", "print"] +- !private ["PSo30UIResponderStandardEditActions", "resignFirstResponder"] +- ["PSo30UIResponderStandardEditActions", "respondToPinch"] +- ["PSo30UIResponderStandardEditActions", "setupGL"] +- ["PSo30UIResponderStandardEditActions", "supportedInterfaceOrientations"] +- ["PSo30UIResponderStandardEditActions", "tearDownGL"] +- !private ["PSo30UIResponderStandardEditActions", "text"] +- ["PSo30UIResponderStandardEditActions", "textField"] +- ["PSo30UIResponderStandardEditActions", "textFieldDidBeginEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldDidEndEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldBeginEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldClear"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldEndEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldReturn"] +- !private ["PSo30UIResponderStandardEditActions", "timeSinceLastUpdate"] +- ["PSo30UIResponderStandardEditActions", "update"] +- !private ["PSo30UIResponderStandardEditActions", "view"] +- ["PSo30UIResponderStandardEditActions", "viewDidLoad"] +- ["PSo30UIResponderStandardEditActions", ""] +- !private ["PSo16UIStateRestoring", "CGRect"] +- !private ["PSo16UIStateRestoring", "CustomAppInit"] +- !private ["PSo16UIStateRestoring", "EAGLContext"] +- !private ["PSo16UIStateRestoring", "Float"] +- !private ["PSo16UIStateRestoring", "Int32"] +- !private ["PSo16UIStateRestoring", "NotificationCenter"] +- !private ["PSo16UIStateRestoring", "SE_AppDeinit"] +- !private ["PSo16UIStateRestoring", "SE_AppDraw"] +- !private ["PSo16UIStateRestoring", "SE_AppOnScale"] +- !private ["PSo16UIStateRestoring", "SE_AppUpdate"] +- !private ["PSo16UIStateRestoring", "SE_OnKeyboardHide"] +- !private ["PSo16UIStateRestoring", "SE_SetKeyboardText"] +- !private ["PSo16UIStateRestoring", "UIPinchGestureRecognizer"] +- !private ["PSo16UIStateRestoring", "UITextField"] +- ["PSo16UIStateRestoring", "appInitCaller"] +- ["PSo16UIStateRestoring", "context"] +- ["PSo16UIStateRestoring", "effect"] +- ["PSo16UIStateRestoring", "glkView"] +- ["PSo16UIStateRestoring", "hiddenTextField"] +- !private ["PSo16UIStateRestoring", "init"] +- ["PSo16UIStateRestoring", "onReceiveKeyboardNotification"] +- !private ["PSo16UIStateRestoring", "print"] +- ["PSo16UIStateRestoring", "respondToPinch"] +- ["PSo16UIStateRestoring", "setupGL"] +- ["PSo16UIStateRestoring", "supportedInterfaceOrientations"] +- ["PSo16UIStateRestoring", "tearDownGL"] +- ["PSo16UIStateRestoring", "textField"] +- ["PSo16UIStateRestoring", "textFieldDidBeginEditing"] +- ["PSo16UIStateRestoring", "textFieldDidEndEditing"] +- ["PSo16UIStateRestoring", "textFieldShouldBeginEditing"] +- ["PSo16UIStateRestoring", "textFieldShouldClear"] +- ["PSo16UIStateRestoring", "textFieldShouldEndEditing"] +- ["PSo16UIStateRestoring", "textFieldShouldReturn"] +- !private ["PSo16UIStateRestoring", "timeSinceLastUpdate"] +- ["PSo16UIStateRestoring", "update"] +- !private ["PSo16UIStateRestoring", "view"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", ""] +- ["OSC24UITextAutocorrectionType", "deinit"] +- !private ["OSC24UITextAutocorrectionType", "no"] +- !private ["CSo11UITextField", "autocorrectionType"] +- ["CSo11UITextField", "deinit"] +- !private ["CSo11UITextField", "delegate"] +- !private ["CSo11UITextField", "init"] +- !private ["CSo11UITextField", "resignFirstResponder"] +- !private ["CSo11UITextField", "text"] +- !private ["PSo19UITextFieldDelegate", "CGRect"] +- !private ["PSo19UITextFieldDelegate", "CustomAppInit"] +- !private ["PSo19UITextFieldDelegate", "EAGLContext"] +- !private ["PSo19UITextFieldDelegate", "Float"] +- !private ["PSo19UITextFieldDelegate", "Int32"] +- !private ["PSo19UITextFieldDelegate", "NotificationCenter"] +- !private ["PSo19UITextFieldDelegate", "SE_AppDeinit"] +- !private ["PSo19UITextFieldDelegate", "SE_AppDraw"] +- !private ["PSo19UITextFieldDelegate", "SE_AppOnScale"] +- !private ["PSo19UITextFieldDelegate", "SE_AppUpdate"] +- !private ["PSo19UITextFieldDelegate", "SE_OnKeyboardHide"] +- !private ["PSo19UITextFieldDelegate", "SE_SetKeyboardText"] +- !private ["PSo19UITextFieldDelegate", "UIPinchGestureRecognizer"] +- !private ["PSo19UITextFieldDelegate", "UITextField"] +- ["PSo19UITextFieldDelegate", "appInitCaller"] +- !private ["PSo19UITextFieldDelegate", "context"] +- !private ["PSo19UITextFieldDelegate", "hiddenTextField"] +- !private ["PSo19UITextFieldDelegate", "init"] +- !private ["PSo19UITextFieldDelegate", "onReceiveKeyboardNotification"] +- !private ["PSo19UITextFieldDelegate", "print"] +- !private ["PSo19UITextFieldDelegate", "respondToPinch"] +- !private ["PSo19UITextFieldDelegate", "setupGL"] +- ["PSo19UITextFieldDelegate", "supportedInterfaceOrientations"] +- !private ["PSo19UITextFieldDelegate", "tearDownGL"] +- ["PSo19UITextFieldDelegate", "textField"] +- ["PSo19UITextFieldDelegate", "textFieldDidBeginEditing"] +- ["PSo19UITextFieldDelegate", "textFieldDidEndEditing"] +- ["PSo19UITextFieldDelegate", "textFieldShouldBeginEditing"] +- ["PSo19UITextFieldDelegate", "textFieldShouldClear"] +- ["PSo19UITextFieldDelegate", "textFieldShouldEndEditing"] +- ["PSo19UITextFieldDelegate", "textFieldShouldReturn"] +- !private ["PSo19UITextFieldDelegate", "timeSinceLastUpdate"] +- !private ["PSo19UITextFieldDelegate", "view"] +- ["PSo19UITextFieldDelegate", ""] +- !private ["PSo11UITextInput", "autocorrectionType"] +- !private ["PSo11UITextInput", "delegate"] +- !private ["PSo11UITextInput", "init"] +- !private ["PSo11UITextInput", "resignFirstResponder"] +- !private ["PSo11UITextInput", "text"] +- !private ["PSo17UITextInputTraits", "autocorrectionType"] +- !private ["PSo17UITextInputTraits", "delegate"] +- !private ["PSo17UITextInputTraits", "init"] +- !private ["PSo17UITextInputTraits", "resignFirstResponder"] +- !private ["PSo17UITextInputTraits", "text"] +- !private ["PSo18UITraitEnvironment", "CGRect"] +- !private ["PSo18UITraitEnvironment", "CustomAppInit"] +- !private ["PSo18UITraitEnvironment", "EAGLContext"] +- !private ["PSo18UITraitEnvironment", "Float"] +- !private ["PSo18UITraitEnvironment", "Int32"] +- !private ["PSo18UITraitEnvironment", "NotificationCenter"] +- !private ["PSo18UITraitEnvironment", "SE_AppDeinit"] +- !private ["PSo18UITraitEnvironment", "SE_AppDraw"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnScale"] +- !private ["PSo18UITraitEnvironment", "SE_AppUpdate"] +- !private ["PSo18UITraitEnvironment", "SE_OnKeyboardHide"] +- !private ["PSo18UITraitEnvironment", "SE_SetKeyboardText"] +- !private ["PSo18UITraitEnvironment", "UIPinchGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "UITextField"] +- !private ["PSo18UITraitEnvironment", "addGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "addSubview"] +- ["PSo18UITraitEnvironment", "appInitCaller"] +- !private ["PSo18UITraitEnvironment", "autocorrectionType"] +- ["PSo18UITraitEnvironment", "context"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "drawableDepthFormat"] +- ["PSo18UITraitEnvironment", "effect"] +- ["PSo18UITraitEnvironment", "glkView"] +- ["PSo18UITraitEnvironment", "hiddenTextField"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UITraitEnvironment", "onReceiveKeyboardNotification"] +- !private ["PSo18UITraitEnvironment", "print"] +- !private ["PSo18UITraitEnvironment", "resignFirstResponder"] +- ["PSo18UITraitEnvironment", "respondToPinch"] +- ["PSo18UITraitEnvironment", "setupGL"] +- ["PSo18UITraitEnvironment", "supportedInterfaceOrientations"] +- ["PSo18UITraitEnvironment", "tearDownGL"] +- !private ["PSo18UITraitEnvironment", "text"] +- ["PSo18UITraitEnvironment", "textField"] +- ["PSo18UITraitEnvironment", "textFieldDidBeginEditing"] +- ["PSo18UITraitEnvironment", "textFieldDidEndEditing"] +- ["PSo18UITraitEnvironment", "textFieldShouldBeginEditing"] +- ["PSo18UITraitEnvironment", "textFieldShouldClear"] +- ["PSo18UITraitEnvironment", "textFieldShouldEndEditing"] +- ["PSo18UITraitEnvironment", "textFieldShouldReturn"] +- !private ["PSo18UITraitEnvironment", "timeSinceLastUpdate"] +- ["PSo18UITraitEnvironment", "update"] +- !private ["PSo18UITraitEnvironment", "view"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "addGestureRecognizer"] +- !private ["CSo6UIView", "addSubview"] +- !private ["CSo6UIView", "autocorrectionType"] +- !private ["CSo6UIView", "context"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "drawableDepthFormat"] +- !private ["CSo6UIView", "init"] +- !private ["CSo6UIView", "isMultipleTouchEnabled"] +- !private ["CSo6UIView", "resignFirstResponder"] +- !private ["CSo6UIView", "text"] +- ["CSo16UIViewController", "Bool"] +- ["CSo16UIViewController", "CGRect"] +- !private ["CSo16UIViewController", "CustomAppInit"] +- ["CSo16UIViewController", "EAGLContext"] +- !private ["CSo16UIViewController", "Float"] +- ["CSo16UIViewController", "GLKBaseEffect"] +- ["CSo16UIViewController", "GLKView"] +- !private ["CSo16UIViewController", "Int32"] +- ["CSo16UIViewController", "NSNotification"] +- ["CSo16UIViewController", "NSRange"] +- !private ["CSo16UIViewController", "NotificationCenter"] +- !private ["CSo16UIViewController", "SE_AppDeinit"] +- !private ["CSo16UIViewController", "SE_AppDraw"] +- !private ["CSo16UIViewController", "SE_AppOnScale"] +- !private ["CSo16UIViewController", "SE_AppUpdate"] +- !private ["CSo16UIViewController", "SE_OnKeyboardHide"] +- !private ["CSo16UIViewController", "SE_SetKeyboardText"] +- ["CSo16UIViewController", "String"] +- ["CSo16UIViewController", "UIInterfaceOrientationMask"] +- ["CSo16UIViewController", "UIPinchGestureRecognizer"] +- ["CSo16UIViewController", "UITextField"] +- ["CSo16UIViewController", "appInitCaller"] +- ["CSo16UIViewController", "context"] +- ["CSo16UIViewController", "effect"] +- ["CSo16UIViewController", "glkView"] +- ["CSo16UIViewController", "hiddenTextField"] +- ["CSo16UIViewController", "init"] +- ["CSo16UIViewController", "onReceiveKeyboardNotification"] +- !private ["CSo16UIViewController", "print"] +- ["CSo16UIViewController", "respondToPinch"] +- ["CSo16UIViewController", "setupGL"] +- ["CSo16UIViewController", "supportedInterfaceOrientations"] +- ["CSo16UIViewController", "tearDownGL"] +- ["CSo16UIViewController", "textField"] +- ["CSo16UIViewController", "textFieldDidBeginEditing"] +- ["CSo16UIViewController", "textFieldDidEndEditing"] +- ["CSo16UIViewController", "textFieldShouldBeginEditing"] +- ["CSo16UIViewController", "textFieldShouldClear"] +- ["CSo16UIViewController", "textFieldShouldEndEditing"] +- ["CSo16UIViewController", "textFieldShouldReturn"] +- !private ["CSo16UIViewController", "timeSinceLastUpdate"] +- ["CSo16UIViewController", "update"] +- !private ["CSo16UIViewController", "view"] +- ["CSo16UIViewController", "viewDidLoad"] +- !private ["C14salmontemplate14ViewController", "CustomAppInit"] +- ["C14salmontemplate14ViewController", "UIInterfaceOrientationMask"] +- ["C14salmontemplate14ViewController", "appInitCaller"] +- ["C14salmontemplate14ViewController", "deinit"] +- ["C14salmontemplate14ViewController", "init"] +- ["C14salmontemplate14ViewController", "supportedInterfaceOrientations"] +- ["C14salmontemplate22ViewControllerTemplate", "Bool"] +- ["C14salmontemplate22ViewControllerTemplate", "CGRect"] +- !private ["C14salmontemplate22ViewControllerTemplate", "CustomAppInit"] +- ["C14salmontemplate22ViewControllerTemplate", "EAGLContext"] +- !private ["C14salmontemplate22ViewControllerTemplate", "Float"] +- ["C14salmontemplate22ViewControllerTemplate", "GLKBaseEffect"] +- ["C14salmontemplate22ViewControllerTemplate", "GLKView"] +- !private ["C14salmontemplate22ViewControllerTemplate", "Int32"] +- ["C14salmontemplate22ViewControllerTemplate", "NSNotification"] +- ["C14salmontemplate22ViewControllerTemplate", "NSRange"] +- !private ["C14salmontemplate22ViewControllerTemplate", "NotificationCenter"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppDeinit"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppDraw"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppOnScale"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppUpdate"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_OnKeyboardHide"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_SetKeyboardText"] +- ["C14salmontemplate22ViewControllerTemplate", "String"] +- ["C14salmontemplate22ViewControllerTemplate", "UIInterfaceOrientationMask"] +- ["C14salmontemplate22ViewControllerTemplate", "UIPinchGestureRecognizer"] +- ["C14salmontemplate22ViewControllerTemplate", "UITextField"] +- ["C14salmontemplate22ViewControllerTemplate", "appInitCaller"] +- !private ["C14salmontemplate22ViewControllerTemplate", "context"] +- ["C14salmontemplate22ViewControllerTemplate", "deinit"] +- !private ["C14salmontemplate22ViewControllerTemplate", "effect"] +- ["C14salmontemplate22ViewControllerTemplate", "glkView"] +- ["C14salmontemplate22ViewControllerTemplate", "hiddenTextField"] +- ["C14salmontemplate22ViewControllerTemplate", "init"] +- ["C14salmontemplate22ViewControllerTemplate", "onReceiveKeyboardNotification"] +- !private ["C14salmontemplate22ViewControllerTemplate", "print"] +- ["C14salmontemplate22ViewControllerTemplate", "respondToPinch"] +- ["C14salmontemplate22ViewControllerTemplate", "setupGL"] +- ["C14salmontemplate22ViewControllerTemplate", "supportedInterfaceOrientations"] +- ["C14salmontemplate22ViewControllerTemplate", "tearDownGL"] +- ["C14salmontemplate22ViewControllerTemplate", "textField"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldDidBeginEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldDidEndEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldBeginEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldClear"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldEndEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldReturn"] +- !private ["C14salmontemplate22ViewControllerTemplate", "timeSinceLastUpdate"] +- ["C14salmontemplate22ViewControllerTemplate", "update"] +- !private ["C14salmontemplate22ViewControllerTemplate", "view"] +- ["C14salmontemplate22ViewControllerTemplate", "viewDidLoad"] +- ["C14salmontemplate22ViewControllerTemplate", ""] +- !private ["Ps15_CVarArgAligned", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "addGestureRecognizer"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "addSubview"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "autocorrectionType"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "context"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "delegate"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "drawableDepthFormat"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "isMultipleTouchEnabled"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "resignFirstResponder"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "text"] +- !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps33_ExpressibleByBuiltinFloatLiteral", "init"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "init"] +- !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"] +- !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"] +- !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "name"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "object"] +- !private ["Ps9_Hashable", "CGRect"] +- !private ["Ps9_Hashable", "CustomAppInit"] +- !private ["Ps9_Hashable", "EAGLContext"] +- !private ["Ps9_Hashable", "Float"] +- !private ["Ps9_Hashable", "Int32"] +- !private ["Ps9_Hashable", "NotificationCenter"] +- !private ["Ps9_Hashable", "RawValue"] +- !private ["Ps9_Hashable", "SE_AppDeinit"] +- !private ["Ps9_Hashable", "SE_AppDraw"] +- !private ["Ps9_Hashable", "SE_AppOnScale"] +- !private ["Ps9_Hashable", "SE_AppUpdate"] +- !private ["Ps9_Hashable", "SE_OnKeyboardHide"] +- !private ["Ps9_Hashable", "SE_SetKeyboardText"] +- !private ["Ps9_Hashable", "UIPinchGestureRecognizer"] +- !private ["Ps9_Hashable", "UITextField"] +- !private ["Ps9_Hashable", "UITextFieldTextDidChange"] +- !private ["Ps9_Hashable", "_getBuiltinLogicValue"] +- !private ["Ps9_Hashable", "addGestureRecognizer"] +- !private ["Ps9_Hashable", "addObserver"] +- !private ["Ps9_Hashable", "addSubview"] +- ["Ps9_Hashable", "appInitCaller"] +- !private ["Ps9_Hashable", "autocorrectionType"] +- ["Ps9_Hashable", "context"] +- !private ["Ps9_Hashable", "default"] +- !private ["Ps9_Hashable", "delaysTouchesEnded"] +- !private ["Ps9_Hashable", "delegate"] +- !private ["Ps9_Hashable", "drawableDepthFormat"] +- ["Ps9_Hashable", "effect"] +- !private ["Ps9_Hashable", "format24"] +- ["Ps9_Hashable", "glkView"] +- ["Ps9_Hashable", "hiddenTextField"] +- !private ["Ps9_Hashable", "init"] +- !private ["Ps9_Hashable", "isMultipleTouchEnabled"] +- !private ["Ps9_Hashable", "name"] +- !private ["Ps9_Hashable", "no"] +- !private ["Ps9_Hashable", "object"] +- ["Ps9_Hashable", "onReceiveKeyboardNotification"] +- !private ["Ps9_Hashable", "openGLES2"] +- !private ["Ps9_Hashable", "print"] +- !private ["Ps9_Hashable", "resignFirstResponder"] +- ["Ps9_Hashable", "respondToPinch"] +- !private ["Ps9_Hashable", "scale"] +- !private ["Ps9_Hashable", "setCurrent"] +- ["Ps9_Hashable", "setupGL"] +- ["Ps9_Hashable", "supportedInterfaceOrientations"] +- ["Ps9_Hashable", "tearDownGL"] +- !private ["Ps9_Hashable", "text"] +- ["Ps9_Hashable", "textField"] +- ["Ps9_Hashable", "textFieldDidBeginEditing"] +- ["Ps9_Hashable", "textFieldDidEndEditing"] +- ["Ps9_Hashable", "textFieldShouldBeginEditing"] +- ["Ps9_Hashable", "textFieldShouldClear"] +- ["Ps9_Hashable", "textFieldShouldEndEditing"] +- ["Ps9_Hashable", "textFieldShouldReturn"] +- !private ["Ps9_Hashable", "timeSinceLastUpdate"] +- ["Ps9_Hashable", "update"] +- !private ["Ps9_Hashable", "view"] +- ["Ps9_Hashable", "viewDidLoad"] +- ["Ps9_Hashable", ""] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps8_Integer", "init"] +- !private ["Ps18_IntegerArithmetic", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "RawValue"] +- !private ["Ps21_ObjectiveCBridgeable", "UITextFieldTextDidChange"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps14_SignedInteger", "init"] +- !private ["Ps11_Strideable", "init"] +- !private ["Ps20_SwiftNewtypeWrapper", "RawValue"] +- !private ["Ps20_SwiftNewtypeWrapper", "UITextFieldTextDidChange"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Ps19BinaryFloatingPoint" +- !private "Ps17BitwiseOperations" +- "Sb" +- !private "PSo15CALayerDelegate" +- "VSC6CGRect" +- "Ps7CVarArg" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- "Sd" +- "CSo11EAGLContext" +- "OSC16EAGLRenderingAPI" +- "Ps9Equatable" +- !private "Ps25ExpressibleByArrayLiteral" +- !private "Ps27ExpressibleByBooleanLiteral" +- !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral" +- !private "Ps25ExpressibleByFloatLiteral" +- !private "Ps27ExpressibleByIntegerLiteral" +- !private "Ps23ExpressibleByNilLiteral" +- !private "Ps32ExpressibleByStringInterpolation" +- !private "Ps26ExpressibleByStringLiteral" +- !private "Ps33ExpressibleByUnicodeScalarLiteral" +- "Sf" +- !private "Ps13FloatingPoint" +- "CSo7GLKView" +- "CSo17GLKViewController" +- "PSo15GLKViewDelegate" +- "OSC26GLKViewDrawableDepthFormat" +- "Ps8Hashable" +- "SQ" +- "Si" +- "Vs5Int32" +- !private "Ps7Integer" +- !private "Ps17IntegerArithmetic" +- !private "Ps25LosslessStringConvertible" +- !private "Ps10MirrorPath" +- "CSo7NSCoder" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- "PSo26NSExtensionRequestHandling" +- !private "PSo16NSMutableCopying" +- "CSo14NSNotification" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "VCSo14NSNotification4Name" +- "CSo18NotificationCenter" +- !private "Ps9OptionSet" +- "Sq" +- !private "Ps16RawRepresentable" +- "V10ObjectiveC8Selector" +- !private "Ps10SetAlgebra" +- !private "Ps13SignedInteger" +- !private "Ps12SignedNumber" +- !private "Ps10Strideable" +- "SS" +- !private "Ps16TextOutputStream" +- !private "Ps20TextOutputStreamable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo18UIContentContainer" +- !private "PSo30UIContentSizeCategoryAdjusting" +- !private "CSo9UIControl" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo11UIFocusItem" +- !private "CSo19UIGestureRecognizer" +- "VSC26UIInterfaceOrientationMask" +- !private "PSo10UIKeyInput" +- "CSo24UIPinchGestureRecognizer" +- "CSo11UIResponder" +- "PSo30UIResponderStandardEditActions" +- "PSo16UIStateRestoring" +- "OSC24UITextAutocorrectionType" +- "CSo11UITextField" +- "PSo19UITextFieldDelegate" +- !private "PSo11UITextInput" +- !private "PSo17UITextInputTraits" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- "C14salmontemplate14ViewController" +- "C14salmontemplate22ViewControllerTemplate" +- !private "Ps15_CVarArgAligned" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps37_DefaultCustomPlaygroundQuickLookable" +- !private "Ps35_ExpressibleByBuiltinBooleanLiteral" +- !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral" +- !private "Ps33_ExpressibleByBuiltinFloatLiteral" +- !private "Ps35_ExpressibleByBuiltinIntegerLiteral" +- !private "Ps34_ExpressibleByBuiltinStringLiteral" +- !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral" +- !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral" +- !private "Ps35_HasCustomAnyHashableRepresentation" +- "Ps9_Hashable" +- !private "Ps14_Incrementable" +- !private "Ps8_Integer" +- !private "Ps18_IntegerArithmetic" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps14_SignedInteger" +- !private "Ps11_Strideable" +- !private "Ps20_SwiftNewtypeWrapper" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule" +interface-hash: "e0bf133d2159867f85ecdf14e7800dcd" diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftdoc new file mode 100644 index 0000000..94ceb2b Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftmodule new file mode 100644 index 0000000..5662831 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController~partial.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.d new file mode 100644 index 0000000..4fd8ce3 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.d @@ -0,0 +1,1653 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/creditscode.cpp \ + ../game/creditscode.h ../game/game_area_interface.h \ + ../../engine/include/Engine.h ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/menucode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.dia new file mode 100644 index 0000000..dd49319 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.o new file mode 100644 index 0000000..93dac60 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.d new file mode 100644 index 0000000..91ec8db --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.d @@ -0,0 +1,1654 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/gamecode.cpp \ + ../game/gamecode.h ../../engine/include/Engine.h \ + ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h \ + ../game/game_area_interface.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/menucode.h ../game/creditscode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.dia new file mode 100644 index 0000000..83f7368 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.o new file mode 100644 index 0000000..288c140 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.d new file mode 100644 index 0000000..f5c32b8 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.d @@ -0,0 +1,1654 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.cpp \ + ../../engine/include/Engine.h ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/game_area_interface.h ../game/menucode.h \ + ../game/creditscode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.dia new file mode 100644 index 0000000..c81404e Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.o new file mode 100644 index 0000000..5b77e68 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.d new file mode 100644 index 0000000..cf1123e --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.d @@ -0,0 +1,1653 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/loadingcode.cpp \ + ../game/loadingcode.h ../game/game_area_interface.h \ + ../../engine/include/Engine.h ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/menucode.h ../game/creditscode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.dia new file mode 100644 index 0000000..a0c9912 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.o new file mode 100644 index 0000000..22f7510 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.d new file mode 100644 index 0000000..ac67163 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.d @@ -0,0 +1,1652 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/main_code.cpp \ + ../game/main_code.h ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp ../../engine/include/Engine.h \ + ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h ../game/gamecode.h \ + ../game/game_area_interface.h ../game/menucode.h ../game/creditscode.h \ + ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.dia new file mode 100644 index 0000000..9debde4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.o new file mode 100644 index 0000000..cdb520a Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.d b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.d new file mode 100644 index 0000000..279de66 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.d @@ -0,0 +1,1654 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/menucode.cpp \ + ../game/menucode.h ../../engine/include/Engine.h \ + ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h \ + ../game/game_area_interface.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/creditscode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.dia b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.dia new file mode 100644 index 0000000..a94f049 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.o b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.o new file mode 100644 index 0000000..e82ba36 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-OutputFileMap.json b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-OutputFileMap.json new file mode 100644 index 0000000..c6be5b6 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/CustomGLKView.swift":{"swiftmodule":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule","object":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/CustomGLKView-E191E5DC19D9D69B.o","llvm-bc":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/CustomGLKView-E191E5DC19D9D69B.bc","diagnostics":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/CustomGLKView-E191E5DC19D9D69B.dia","dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/CustomGLKView-E191E5DC19D9D69B.d","swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/CustomGLKView-E191E5DC19D9D69B.swiftdeps"},"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/ViewController.swift":{"swiftmodule":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/ViewController~partial.swiftmodule","object":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/ViewController.o","llvm-bc":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/ViewController.bc","diagnostics":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/ViewController.dia","dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/ViewController.d","swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/ViewController.swiftdeps"},"":{"swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/salmontemplate-master.swiftdeps"},"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/AppDelegate.swift":{"swiftmodule":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/AppDelegate~partial.swiftmodule","object":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/AppDelegate.o","llvm-bc":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/AppDelegate.bc","diagnostics":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/AppDelegate.dia","dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/AppDelegate.d","swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphoneos\/salmontemplate.build\/Objects-normal\/arm64\/AppDelegate.swiftdeps"}} \ No newline at end of file diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-Swift.h b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-Swift.h new file mode 100644 index 0000000..fc2d6c1 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-Swift.h @@ -0,0 +1,188 @@ +// Generated by Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if defined(__has_attribute) && __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +@import GLKit; +@import CoreGraphics; +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UIWindow; +@class UIViewController; +@class UIApplication; + +SWIFT_CLASS("_TtC14salmontemplate11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +@property (nonatomic, strong) UIViewController * _Nullable viewController; +- (void)applicationDidFinishLaunching:(UIApplication * _Nonnull)application; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class NSCoder; +@class UITouch; +@class UIEvent; +@class EAGLContext; + +SWIFT_CLASS("_TtC14salmontemplate15GLKViewTemplate") +@interface GLKViewTemplate : GLKView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +- (void)addTouchToHashWithTouch:(UITouch * _Nonnull)touch; +- (void)removeTouchFromHashWithTouch:(UITouch * _Nonnull)touch; +- (void)touchesBegan:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesEnded:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesCancelled:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (nonnull instancetype)initWithFrame:(CGRect)frame context:(EAGLContext * _Nonnull)context SWIFT_UNAVAILABLE; +@end + +@class UITextField; +@class UIPinchGestureRecognizer; +@class NSNotification; +@class NSBundle; + +SWIFT_CLASS("_TtC14salmontemplate22ViewControllerTemplate") +@interface ViewControllerTemplate : GLKViewController +@property (nonatomic, strong) UITextField * _Nullable hiddenTextField; +- (void)viewDidLoad; +- (void)setupGL; +- (void)tearDownGL; +- (void)appInitCaller; +- (void)respondToPinchWithGestureRecognizer:(UIPinchGestureRecognizer * _Nonnull)gestureRecognizer; +- (void)onReceiveKeyboardNotificationWithNotification:(NSNotification * _Nonnull)notification; +- (void)textFieldDidBeginEditing:(UITextField * _Nonnull)textField; +- (void)textFieldDidEndEditing:(UITextField * _Nonnull)textField; +- (BOOL)textField:(UITextField * _Nonnull)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString * _Nonnull)string; +- (void)update; +- (void)glkView:(GLKView * _Nonnull)view drawInRect:(CGRect)rect; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC14salmontemplate14ViewController") +@interface ViewController : ViewControllerTemplate +- (void)appInitCaller; +@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +#pragma clang diagnostic pop diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-master.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-master.swiftdeps new file mode 100644 index 0000000..07c4f32 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate-master.swiftdeps @@ -0,0 +1,7 @@ +version: "Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1)" +options: "009837d82cbd7bb7a81d3b8b007bc2ae" +build_time: [537964633, 907876000] +inputs: + "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift": [537893392, 0] + "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift": [537957087, 0] + "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift": [537957087, 0] diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.LinkFileList b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.LinkFileList new file mode 100644 index 0000000..3ab89fe --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.LinkFileList @@ -0,0 +1,11 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/creditscode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/gamecode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/main_code.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/loadingcode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/SENamespaceWrapper.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/menucode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ios_api.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-BF7820DFD49B288C.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/AppDelegate.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/CustomGLKView-E191E5DC19D9D69B.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/ViewController.o diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.swiftdoc new file mode 100644 index 0000000..94ceb2b Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.swiftmodule new file mode 100644 index 0000000..2103a4f Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate_dependency_info.dat b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate_dependency_info.dat new file mode 100644 index 0000000..c525389 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/Objects-normal/arm64/salmontemplate_dependency_info.dat differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/ViewController_iPad-PartialInfo.plist b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/ViewController_iPad-PartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/ViewController_iPad-PartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/ViewController_iPhone-PartialInfo.plist b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/ViewController_iPhone-PartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/ViewController_iPhone-PartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/dgph b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/dgph new file mode 100644 index 0000000..13a39d5 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/dgph differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/dgph~ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/dgph~ new file mode 100644 index 0000000..f9f777d Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/dgph~ differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-non-framework-target-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-non-framework-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-non-framework-target-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-target-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-all-target-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-generated-files.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-generated-files.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-own-target-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-own-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-own-target-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-project-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-project-headers.hmap new file mode 100644 index 0000000..ef2dbe0 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate-project-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate.app.xcent b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate.app.xcent new file mode 100644 index 0000000..846b12d --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate.app.xcent @@ -0,0 +1,16 @@ + + + + + application-identifier + R89DR83966.fishrungames.template + com.apple.developer.team-identifier + R89DR83966 + get-task-allow + + keychain-access-groups + + R89DR83966.fishrungames.template + + + diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate.hmap new file mode 100644 index 0000000..b5e4814 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/salmontemplate.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/swift-overrides.hmap b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/swift-overrides.hmap new file mode 100644 index 0000000..05190a6 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphoneos/salmontemplate.build/swift-overrides.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/salmontemplate-Swift.h b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/salmontemplate-Swift.h new file mode 100644 index 0000000..fc2d6c1 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/DerivedSources/salmontemplate-Swift.h @@ -0,0 +1,188 @@ +// Generated by Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if defined(__has_attribute) && __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +@import GLKit; +@import CoreGraphics; +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UIWindow; +@class UIViewController; +@class UIApplication; + +SWIFT_CLASS("_TtC14salmontemplate11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +@property (nonatomic, strong) UIViewController * _Nullable viewController; +- (void)applicationDidFinishLaunching:(UIApplication * _Nonnull)application; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class NSCoder; +@class UITouch; +@class UIEvent; +@class EAGLContext; + +SWIFT_CLASS("_TtC14salmontemplate15GLKViewTemplate") +@interface GLKViewTemplate : GLKView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +- (void)addTouchToHashWithTouch:(UITouch * _Nonnull)touch; +- (void)removeTouchFromHashWithTouch:(UITouch * _Nonnull)touch; +- (void)touchesBegan:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesEnded:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesCancelled:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (nonnull instancetype)initWithFrame:(CGRect)frame context:(EAGLContext * _Nonnull)context SWIFT_UNAVAILABLE; +@end + +@class UITextField; +@class UIPinchGestureRecognizer; +@class NSNotification; +@class NSBundle; + +SWIFT_CLASS("_TtC14salmontemplate22ViewControllerTemplate") +@interface ViewControllerTemplate : GLKViewController +@property (nonatomic, strong) UITextField * _Nullable hiddenTextField; +- (void)viewDidLoad; +- (void)setupGL; +- (void)tearDownGL; +- (void)appInitCaller; +- (void)respondToPinchWithGestureRecognizer:(UIPinchGestureRecognizer * _Nonnull)gestureRecognizer; +- (void)onReceiveKeyboardNotificationWithNotification:(NSNotification * _Nonnull)notification; +- (void)textFieldDidBeginEditing:(UITextField * _Nonnull)textField; +- (void)textFieldDidEndEditing:(UITextField * _Nonnull)textField; +- (BOOL)textField:(UITextField * _Nonnull)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString * _Nonnull)string; +- (void)update; +- (void)glkView:(GLKView * _Nonnull)view drawInRect:(CGRect)rect; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC14salmontemplate14ViewController") +@interface ViewController : ViewControllerTemplate +- (void)appInitCaller; +@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +#pragma clang diagnostic pop diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.d new file mode 100644 index 0000000..99bce9c --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.d @@ -0,0 +1,3 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.o : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.dia new file mode 100644 index 0000000..bb0ec51 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.o new file mode 100644 index 0000000..a8260de Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.swiftdeps new file mode 100644 index 0000000..ee22ee6 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.swiftdeps @@ -0,0 +1,539 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AppDelegate" +provides-nominal: +- "C14salmontemplate11AppDelegate" +provides-member: +- ["C14salmontemplate11AppDelegate", ""] +provides-dynamic-lookup: +- "applicationDidFinishLaunching" +- "window" +- "viewController" +depends-top-level: +- "UIViewController" +- !private "StringLiteralType" +- "AppDelegate" +- !private "ViewController" +- !private "UIScreen" +- "UIResponder" +- "UIApplication" +- !private "UIDevice" +- "UIApplicationDelegate" +- "UIWindow" +- "AssignmentPrecedence" +- !private "==" +depends-member: +- !private ["Ps9AnyObject", "UIDevice"] +- !private ["Ps9AnyObject", "UIScreen"] +- !private ["Ps9AnyObject", "UIWindow"] +- !private ["Ps9AnyObject", "ViewController"] +- ["Ps9AnyObject", "application"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationDidEnterBackground"] +- ["Ps9AnyObject", "applicationDidFinishLaunching"] +- ["Ps9AnyObject", "applicationDidReceiveMemoryWarning"] +- ["Ps9AnyObject", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9AnyObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9AnyObject", "applicationShouldRequestHealthAuthorization"] +- ["Ps9AnyObject", "applicationSignificantTimeChange"] +- ["Ps9AnyObject", "applicationWillEnterForeground"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "bounds"] +- !private ["Ps9AnyObject", "current"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "main"] +- !private ["Ps9AnyObject", "makeKeyAndVisible"] +- !private ["Ps9AnyObject", "rootViewController"] +- !private ["Ps9AnyObject", "userInterfaceIdiom"] +- ["Ps9AnyObject", "viewController"] +- ["Ps9AnyObject", "window"] +- ["Ps9AnyObject", ""] +- ["C14salmontemplate11AppDelegate", "UIApplication"] +- !private ["C14salmontemplate11AppDelegate", "UIDevice"] +- !private ["C14salmontemplate11AppDelegate", "UIScreen"] +- ["C14salmontemplate11AppDelegate", "UIViewController"] +- ["C14salmontemplate11AppDelegate", "UIWindow"] +- !private ["C14salmontemplate11AppDelegate", "ViewController"] +- ["C14salmontemplate11AppDelegate", "application"] +- ["C14salmontemplate11AppDelegate", "applicationDidBecomeActive"] +- ["C14salmontemplate11AppDelegate", "applicationDidEnterBackground"] +- ["C14salmontemplate11AppDelegate", "applicationDidFinishLaunching"] +- ["C14salmontemplate11AppDelegate", "applicationDidReceiveMemoryWarning"] +- ["C14salmontemplate11AppDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["C14salmontemplate11AppDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["C14salmontemplate11AppDelegate", "applicationShouldRequestHealthAuthorization"] +- ["C14salmontemplate11AppDelegate", "applicationSignificantTimeChange"] +- ["C14salmontemplate11AppDelegate", "applicationWillEnterForeground"] +- ["C14salmontemplate11AppDelegate", "applicationWillResignActive"] +- ["C14salmontemplate11AppDelegate", "applicationWillTerminate"] +- ["C14salmontemplate11AppDelegate", "deinit"] +- ["C14salmontemplate11AppDelegate", "init"] +- ["C14salmontemplate11AppDelegate", "viewController"] +- ["C14salmontemplate11AppDelegate", "window"] +- !private ["Sb", "_getBuiltinLogicValue"] +- ["Sb", "deinit"] +- !private ["PSo15CALayerDelegate", "init"] +- !private ["PSo15CALayerDelegate", "makeKeyAndVisible"] +- !private ["PSo15CALayerDelegate", "rootViewController"] +- ["VSC6CGRect", "deinit"] +- !private ["Ps7CVarArg", "UIDevice"] +- !private ["Ps7CVarArg", "UIScreen"] +- !private ["Ps7CVarArg", "UIWindow"] +- !private ["Ps7CVarArg", "ViewController"] +- ["Ps7CVarArg", "application"] +- ["Ps7CVarArg", "applicationDidBecomeActive"] +- ["Ps7CVarArg", "applicationDidEnterBackground"] +- ["Ps7CVarArg", "applicationDidFinishLaunching"] +- ["Ps7CVarArg", "applicationDidReceiveMemoryWarning"] +- ["Ps7CVarArg", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps7CVarArg", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps7CVarArg", "applicationShouldRequestHealthAuthorization"] +- ["Ps7CVarArg", "applicationSignificantTimeChange"] +- ["Ps7CVarArg", "applicationWillEnterForeground"] +- ["Ps7CVarArg", "applicationWillResignActive"] +- ["Ps7CVarArg", "applicationWillTerminate"] +- !private ["Ps7CVarArg", "bounds"] +- !private ["Ps7CVarArg", "current"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "main"] +- !private ["Ps7CVarArg", "makeKeyAndVisible"] +- !private ["Ps7CVarArg", "rootViewController"] +- !private ["Ps7CVarArg", "userInterfaceIdiom"] +- ["Ps7CVarArg", "viewController"] +- ["Ps7CVarArg", "window"] +- ["Ps7CVarArg", ""] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "UIDevice"] +- !private ["Ps28CustomDebugStringConvertible", "UIScreen"] +- !private ["Ps28CustomDebugStringConvertible", "UIWindow"] +- !private ["Ps28CustomDebugStringConvertible", "ViewController"] +- ["Ps28CustomDebugStringConvertible", "application"] +- ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- ["Ps28CustomDebugStringConvertible", "applicationDidFinishLaunching"] +- ["Ps28CustomDebugStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps28CustomDebugStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps28CustomDebugStringConvertible", "applicationSignificantTimeChange"] +- ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "bounds"] +- !private ["Ps28CustomDebugStringConvertible", "current"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "main"] +- !private ["Ps28CustomDebugStringConvertible", "makeKeyAndVisible"] +- !private ["Ps28CustomDebugStringConvertible", "rootViewController"] +- !private ["Ps28CustomDebugStringConvertible", "userInterfaceIdiom"] +- ["Ps28CustomDebugStringConvertible", "viewController"] +- ["Ps28CustomDebugStringConvertible", "window"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps23CustomStringConvertible", "UIDevice"] +- !private ["Ps23CustomStringConvertible", "UIScreen"] +- !private ["Ps23CustomStringConvertible", "UIWindow"] +- !private ["Ps23CustomStringConvertible", "ViewController"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- ["Ps23CustomStringConvertible", "application"] +- ["Ps23CustomStringConvertible", "applicationDidBecomeActive"] +- ["Ps23CustomStringConvertible", "applicationDidEnterBackground"] +- ["Ps23CustomStringConvertible", "applicationDidFinishLaunching"] +- ["Ps23CustomStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps23CustomStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps23CustomStringConvertible", "applicationSignificantTimeChange"] +- ["Ps23CustomStringConvertible", "applicationWillEnterForeground"] +- ["Ps23CustomStringConvertible", "applicationWillResignActive"] +- ["Ps23CustomStringConvertible", "applicationWillTerminate"] +- !private ["Ps23CustomStringConvertible", "bounds"] +- !private ["Ps23CustomStringConvertible", "current"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "main"] +- !private ["Ps23CustomStringConvertible", "makeKeyAndVisible"] +- !private ["Ps23CustomStringConvertible", "rootViewController"] +- !private ["Ps23CustomStringConvertible", "userInterfaceIdiom"] +- ["Ps23CustomStringConvertible", "viewController"] +- ["Ps23CustomStringConvertible", "window"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "UIDevice"] +- !private ["Ps9Equatable", "UIScreen"] +- !private ["Ps9Equatable", "UIWindow"] +- !private ["Ps9Equatable", "ViewController"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- ["Ps9Equatable", "application"] +- ["Ps9Equatable", "applicationDidBecomeActive"] +- ["Ps9Equatable", "applicationDidEnterBackground"] +- ["Ps9Equatable", "applicationDidFinishLaunching"] +- ["Ps9Equatable", "applicationDidReceiveMemoryWarning"] +- ["Ps9Equatable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9Equatable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9Equatable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9Equatable", "applicationSignificantTimeChange"] +- ["Ps9Equatable", "applicationWillEnterForeground"] +- ["Ps9Equatable", "applicationWillResignActive"] +- ["Ps9Equatable", "applicationWillTerminate"] +- !private ["Ps9Equatable", "bounds"] +- !private ["Ps9Equatable", "current"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "main"] +- !private ["Ps9Equatable", "makeKeyAndVisible"] +- !private ["Ps9Equatable", "phone"] +- !private ["Ps9Equatable", "rootViewController"] +- !private ["Ps9Equatable", "userInterfaceIdiom"] +- ["Ps9Equatable", "viewController"] +- ["Ps9Equatable", "window"] +- ["Ps9Equatable", ""] +- !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps32ExpressibleByStringInterpolation", "init"] +- !private ["Ps26ExpressibleByStringLiteral", "init"] +- !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"] +- !private ["CSo17GLKViewController", "init"] +- !private ["PSo15GLKViewDelegate", "init"] +- !private ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "UIDevice"] +- !private ["Ps8Hashable", "UIScreen"] +- !private ["Ps8Hashable", "UIWindow"] +- !private ["Ps8Hashable", "ViewController"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- ["Ps8Hashable", "application"] +- ["Ps8Hashable", "applicationDidBecomeActive"] +- ["Ps8Hashable", "applicationDidEnterBackground"] +- ["Ps8Hashable", "applicationDidFinishLaunching"] +- ["Ps8Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps8Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps8Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps8Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps8Hashable", "applicationSignificantTimeChange"] +- ["Ps8Hashable", "applicationWillEnterForeground"] +- ["Ps8Hashable", "applicationWillResignActive"] +- ["Ps8Hashable", "applicationWillTerminate"] +- !private ["Ps8Hashable", "bounds"] +- !private ["Ps8Hashable", "current"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "main"] +- !private ["Ps8Hashable", "makeKeyAndVisible"] +- !private ["Ps8Hashable", "phone"] +- !private ["Ps8Hashable", "rootViewController"] +- !private ["Ps8Hashable", "userInterfaceIdiom"] +- ["Ps8Hashable", "viewController"] +- ["Ps8Hashable", "window"] +- ["Ps8Hashable", ""] +- !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps25LosslessStringConvertible", "init"] +- !private ["Ps10MirrorPath", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "makeKeyAndVisible"] +- !private ["PSo8NSCoding", "rootViewController"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- ["CSo8NSObject", "UIApplication"] +- !private ["CSo8NSObject", "UIDevice"] +- !private ["CSo8NSObject", "UIScreen"] +- ["CSo8NSObject", "UIViewController"] +- ["CSo8NSObject", "UIWindow"] +- !private ["CSo8NSObject", "ViewController"] +- ["CSo8NSObject", "application"] +- ["CSo8NSObject", "applicationDidBecomeActive"] +- ["CSo8NSObject", "applicationDidEnterBackground"] +- ["CSo8NSObject", "applicationDidFinishLaunching"] +- ["CSo8NSObject", "applicationDidReceiveMemoryWarning"] +- ["CSo8NSObject", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo8NSObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo8NSObject", "applicationShouldRequestHealthAuthorization"] +- ["CSo8NSObject", "applicationSignificantTimeChange"] +- ["CSo8NSObject", "applicationWillEnterForeground"] +- ["CSo8NSObject", "applicationWillResignActive"] +- ["CSo8NSObject", "applicationWillTerminate"] +- !private ["CSo8NSObject", "bounds"] +- !private ["CSo8NSObject", "current"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "main"] +- !private ["CSo8NSObject", "makeKeyAndVisible"] +- !private ["CSo8NSObject", "rootViewController"] +- !private ["CSo8NSObject", "userInterfaceIdiom"] +- ["CSo8NSObject", "viewController"] +- ["CSo8NSObject", "window"] +- !private ["PSo16NSObjectProtocol", "UIDevice"] +- !private ["PSo16NSObjectProtocol", "UIScreen"] +- !private ["PSo16NSObjectProtocol", "UIWindow"] +- !private ["PSo16NSObjectProtocol", "ViewController"] +- ["PSo16NSObjectProtocol", "application"] +- ["PSo16NSObjectProtocol", "applicationDidBecomeActive"] +- ["PSo16NSObjectProtocol", "applicationDidEnterBackground"] +- ["PSo16NSObjectProtocol", "applicationDidFinishLaunching"] +- ["PSo16NSObjectProtocol", "applicationDidReceiveMemoryWarning"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo16NSObjectProtocol", "applicationShouldRequestHealthAuthorization"] +- ["PSo16NSObjectProtocol", "applicationSignificantTimeChange"] +- ["PSo16NSObjectProtocol", "applicationWillEnterForeground"] +- ["PSo16NSObjectProtocol", "applicationWillResignActive"] +- ["PSo16NSObjectProtocol", "applicationWillTerminate"] +- !private ["PSo16NSObjectProtocol", "bounds"] +- !private ["PSo16NSObjectProtocol", "current"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "main"] +- !private ["PSo16NSObjectProtocol", "makeKeyAndVisible"] +- !private ["PSo16NSObjectProtocol", "rootViewController"] +- !private ["PSo16NSObjectProtocol", "userInterfaceIdiom"] +- ["PSo16NSObjectProtocol", "viewController"] +- ["PSo16NSObjectProtocol", "window"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- ["Sq", "deinit"] +- !private ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "phone"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps16TextOutputStream", "init"] +- !private ["Ps20TextOutputStreamable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "init"] +- !private ["PSo29UIAccessibilityIdentification", "makeKeyAndVisible"] +- !private ["PSo29UIAccessibilityIdentification", "rootViewController"] +- !private ["PSo12UIAppearance", "init"] +- !private ["PSo12UIAppearance", "makeKeyAndVisible"] +- !private ["PSo12UIAppearance", "rootViewController"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "makeKeyAndVisible"] +- !private ["PSo21UIAppearanceContainer", "rootViewController"] +- !private ["PSo21UIApplicationDelegate", "UIDevice"] +- !private ["PSo21UIApplicationDelegate", "UIScreen"] +- !private ["PSo21UIApplicationDelegate", "UIWindow"] +- !private ["PSo21UIApplicationDelegate", "ViewController"] +- ["PSo21UIApplicationDelegate", "application"] +- ["PSo21UIApplicationDelegate", "applicationDidBecomeActive"] +- ["PSo21UIApplicationDelegate", "applicationDidEnterBackground"] +- ["PSo21UIApplicationDelegate", "applicationDidFinishLaunching"] +- ["PSo21UIApplicationDelegate", "applicationDidReceiveMemoryWarning"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo21UIApplicationDelegate", "applicationShouldRequestHealthAuthorization"] +- ["PSo21UIApplicationDelegate", "applicationSignificantTimeChange"] +- ["PSo21UIApplicationDelegate", "applicationWillEnterForeground"] +- ["PSo21UIApplicationDelegate", "applicationWillResignActive"] +- ["PSo21UIApplicationDelegate", "applicationWillTerminate"] +- !private ["PSo21UIApplicationDelegate", "viewController"] +- ["PSo21UIApplicationDelegate", "window"] +- ["PSo21UIApplicationDelegate", ""] +- !private ["PSo18UIContentContainer", "init"] +- !private ["PSo17UICoordinateSpace", "init"] +- !private ["PSo17UICoordinateSpace", "makeKeyAndVisible"] +- !private ["PSo17UICoordinateSpace", "rootViewController"] +- !private ["CSo8UIDevice", "current"] +- ["CSo8UIDevice", "deinit"] +- !private ["CSo8UIDevice", "userInterfaceIdiom"] +- !private ["PSo13UIDynamicItem", "init"] +- !private ["PSo13UIDynamicItem", "makeKeyAndVisible"] +- !private ["PSo13UIDynamicItem", "rootViewController"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "makeKeyAndVisible"] +- !private ["PSo18UIFocusEnvironment", "rootViewController"] +- !private ["PSo11UIFocusItem", "init"] +- !private ["PSo11UIFocusItem", "makeKeyAndVisible"] +- !private ["PSo11UIFocusItem", "rootViewController"] +- ["CSo11UIResponder", "UIApplication"] +- !private ["CSo11UIResponder", "UIDevice"] +- !private ["CSo11UIResponder", "UIScreen"] +- ["CSo11UIResponder", "UIViewController"] +- ["CSo11UIResponder", "UIWindow"] +- !private ["CSo11UIResponder", "ViewController"] +- ["CSo11UIResponder", "application"] +- ["CSo11UIResponder", "applicationDidBecomeActive"] +- ["CSo11UIResponder", "applicationDidEnterBackground"] +- ["CSo11UIResponder", "applicationDidFinishLaunching"] +- ["CSo11UIResponder", "applicationDidReceiveMemoryWarning"] +- ["CSo11UIResponder", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo11UIResponder", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo11UIResponder", "applicationShouldRequestHealthAuthorization"] +- ["CSo11UIResponder", "applicationSignificantTimeChange"] +- ["CSo11UIResponder", "applicationWillEnterForeground"] +- ["CSo11UIResponder", "applicationWillResignActive"] +- ["CSo11UIResponder", "applicationWillTerminate"] +- ["CSo11UIResponder", "deinit"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "makeKeyAndVisible"] +- !private ["CSo11UIResponder", "rootViewController"] +- ["CSo11UIResponder", "viewController"] +- ["CSo11UIResponder", "window"] +- ["CSo11UIResponder", ""] +- !private ["PSo30UIResponderStandardEditActions", "UIDevice"] +- !private ["PSo30UIResponderStandardEditActions", "UIScreen"] +- !private ["PSo30UIResponderStandardEditActions", "UIWindow"] +- !private ["PSo30UIResponderStandardEditActions", "ViewController"] +- ["PSo30UIResponderStandardEditActions", "application"] +- ["PSo30UIResponderStandardEditActions", "applicationDidBecomeActive"] +- ["PSo30UIResponderStandardEditActions", "applicationDidEnterBackground"] +- ["PSo30UIResponderStandardEditActions", "applicationDidFinishLaunching"] +- ["PSo30UIResponderStandardEditActions", "applicationDidReceiveMemoryWarning"] +- ["PSo30UIResponderStandardEditActions", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo30UIResponderStandardEditActions", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo30UIResponderStandardEditActions", "applicationShouldRequestHealthAuthorization"] +- ["PSo30UIResponderStandardEditActions", "applicationSignificantTimeChange"] +- ["PSo30UIResponderStandardEditActions", "applicationWillEnterForeground"] +- ["PSo30UIResponderStandardEditActions", "applicationWillResignActive"] +- ["PSo30UIResponderStandardEditActions", "applicationWillTerminate"] +- !private ["PSo30UIResponderStandardEditActions", "init"] +- !private ["PSo30UIResponderStandardEditActions", "makeKeyAndVisible"] +- !private ["PSo30UIResponderStandardEditActions", "rootViewController"] +- ["PSo30UIResponderStandardEditActions", "viewController"] +- ["PSo30UIResponderStandardEditActions", "window"] +- ["PSo30UIResponderStandardEditActions", ""] +- !private ["CSo8UIScreen", "bounds"] +- ["CSo8UIScreen", "deinit"] +- !private ["CSo8UIScreen", "main"] +- !private ["PSo16UIStateRestoring", "init"] +- !private ["PSo19UITextFieldDelegate", "init"] +- !private ["PSo18UITraitEnvironment", "bounds"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "main"] +- !private ["PSo18UITraitEnvironment", "makeKeyAndVisible"] +- !private ["PSo18UITraitEnvironment", "rootViewController"] +- !private ["OSC20UIUserInterfaceIdiom", "RawValue"] +- ["OSC20UIUserInterfaceIdiom", "deinit"] +- !private ["OSC20UIUserInterfaceIdiom", "phone"] +- !private ["CSo6UIView", "init"] +- !private ["CSo6UIView", "makeKeyAndVisible"] +- !private ["CSo6UIView", "rootViewController"] +- !private ["CSo16UIViewController", "init"] +- ["CSo8UIWindow", "deinit"] +- !private ["CSo8UIWindow", "init"] +- !private ["CSo8UIWindow", "makeKeyAndVisible"] +- !private ["CSo8UIWindow", "rootViewController"] +- ["C14salmontemplate14ViewController", "deinit"] +- !private ["C14salmontemplate14ViewController", "init"] +- !private ["C14salmontemplate22ViewControllerTemplate", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "makeKeyAndVisible"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "rootViewController"] +- !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"] +- !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"] +- !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "init"] +- !private ["Ps9_Hashable", "RawValue"] +- !private ["Ps9_Hashable", "UIDevice"] +- !private ["Ps9_Hashable", "UIScreen"] +- !private ["Ps9_Hashable", "UIWindow"] +- !private ["Ps9_Hashable", "ViewController"] +- !private ["Ps9_Hashable", "_getBuiltinLogicValue"] +- ["Ps9_Hashable", "application"] +- ["Ps9_Hashable", "applicationDidBecomeActive"] +- ["Ps9_Hashable", "applicationDidEnterBackground"] +- ["Ps9_Hashable", "applicationDidFinishLaunching"] +- ["Ps9_Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps9_Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9_Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9_Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9_Hashable", "applicationSignificantTimeChange"] +- ["Ps9_Hashable", "applicationWillEnterForeground"] +- ["Ps9_Hashable", "applicationWillResignActive"] +- ["Ps9_Hashable", "applicationWillTerminate"] +- !private ["Ps9_Hashable", "bounds"] +- !private ["Ps9_Hashable", "current"] +- !private ["Ps9_Hashable", "init"] +- !private ["Ps9_Hashable", "main"] +- !private ["Ps9_Hashable", "makeKeyAndVisible"] +- !private ["Ps9_Hashable", "phone"] +- !private ["Ps9_Hashable", "rootViewController"] +- !private ["Ps9_Hashable", "userInterfaceIdiom"] +- ["Ps9_Hashable", "viewController"] +- ["Ps9_Hashable", "window"] +- ["Ps9_Hashable", ""] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +depends-nominal: +- "Ps9AnyObject" +- "C14salmontemplate11AppDelegate" +- "Sb" +- !private "PSo15CALayerDelegate" +- "VSC6CGRect" +- "Ps7CVarArg" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- "Ps9Equatable" +- !private "Ps27ExpressibleByBooleanLiteral" +- !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral" +- !private "Ps32ExpressibleByStringInterpolation" +- !private "Ps26ExpressibleByStringLiteral" +- !private "Ps33ExpressibleByUnicodeScalarLiteral" +- !private "CSo17GLKViewController" +- !private "PSo15GLKViewDelegate" +- "Ps8Hashable" +- !private "Ps25LosslessStringConvertible" +- !private "Ps10MirrorPath" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo26NSExtensionRequestHandling" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Sq" +- !private "Ps16RawRepresentable" +- "SS" +- !private "Ps16TextOutputStream" +- !private "Ps20TextOutputStreamable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- !private "PSo21UIAppearanceContainer" +- "PSo21UIApplicationDelegate" +- !private "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- "CSo8UIDevice" +- !private "PSo13UIDynamicItem" +- !private "PSo18UIFocusEnvironment" +- !private "PSo11UIFocusItem" +- "CSo11UIResponder" +- "PSo30UIResponderStandardEditActions" +- "CSo8UIScreen" +- !private "PSo16UIStateRestoring" +- !private "PSo19UITextFieldDelegate" +- !private "PSo18UITraitEnvironment" +- "OSC20UIUserInterfaceIdiom" +- !private "CSo6UIView" +- !private "CSo16UIViewController" +- "CSo8UIWindow" +- "C14salmontemplate14ViewController" +- !private "C14salmontemplate22ViewControllerTemplate" +- !private "Ps37_DefaultCustomPlaygroundQuickLookable" +- !private "Ps35_ExpressibleByBuiltinBooleanLiteral" +- !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral" +- !private "Ps34_ExpressibleByBuiltinStringLiteral" +- !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral" +- !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral" +- !private "Ps35_HasCustomAnyHashableRepresentation" +- "Ps9_Hashable" +- !private "Ps21_ObjectiveCBridgeable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule" +interface-hash: "57869206facb6c7bed15f12628b94178" diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc new file mode 100644 index 0000000..342487f Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule new file mode 100644 index 0000000..59d7b4f Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.d new file mode 100644 index 0000000..b58fe6b --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.mm \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.h \ + ../../engine/include/Utils/IosApi/ObjC/GLKViewTemplate.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.dia new file mode 100644 index 0000000..29ccd98 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.o new file mode 100644 index 0000000..e71ed16 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.d new file mode 100644 index 0000000..64469c0 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.d @@ -0,0 +1,3 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.o : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.dia new file mode 100644 index 0000000..bb0ec51 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.o new file mode 100644 index 0000000..fe6fb92 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.swiftdeps new file mode 100644 index 0000000..cd15c7a --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.swiftdeps @@ -0,0 +1,1069 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "TTouchHashData" +- "GLKViewTemplate" +provides-nominal: +- "V14salmontemplate14TTouchHashData" +- "C14salmontemplate15GLKViewTemplate" +provides-member: +- ["V14salmontemplate14TTouchHashData", ""] +- ["C14salmontemplate15GLKViewTemplate", ""] +provides-dynamic-lookup: +- "touchesBegan" +- "addTouchToHash" +- "touchesCancelled" +- "touchesEnded" +- "removeTouchFromHash" +depends-top-level: +- !private "BooleanLiteralType" +- "Bool" +- "GLKView" +- !private "abs" +- !private "SE_AppOnTapUp" +- !private "||" +- "GLKViewTemplate" +- !private "StringLiteralType" +- "CGPoint" +- "Int" +- !private "!" +- "AssignmentPrecedence" +- "UIEvent" +- !private "fatalError" +- "UITouch" +- !private "..." +- !private ">" +- !private "==" +- "CGRect" +- !private "-" +- "NSCoder" +- !private "SE_AppOnTapUpAfterMove" +- "Dictionary" +- !private "Int32" +- !private "SE_AppOnScroll" +- "Set" +- !private "Float" +- "TTouchHashData" +depends-member: +- !private ["Ps16AbsoluteValuable", "RawValue"] +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "Float"] +- !private ["Ps9AnyObject", "Int32"] +- !private ["Ps9AnyObject", "SE_AppOnScroll"] +- !private ["Ps9AnyObject", "SE_AppOnTapUp"] +- !private ["Ps9AnyObject", "SE_AppOnTapUpAfterMove"] +- !private ["Ps9AnyObject", "TTouchHashData"] +- !private ["Ps9AnyObject", "abs"] +- ["Ps9AnyObject", "addTouchToHash"] +- !private ["Ps9AnyObject", "bounds"] +- !private ["Ps9AnyObject", "fatalError"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isMultipleTouchEnabled"] +- !private ["Ps9AnyObject", "location"] +- !private ["Ps9AnyObject", "previousLocation"] +- ["Ps9AnyObject", "removeTouchFromHash"] +- ["Ps9AnyObject", "touchDict"] +- ["Ps9AnyObject", "touchesBegan"] +- ["Ps9AnyObject", "touchesCancelled"] +- ["Ps9AnyObject", "touchesEnded"] +- ["Ps9AnyObject", ""] +- !private ["Ps23BidirectionalCollection", "Iterator"] +- !private ["Ps22BidirectionalIndexable", "Iterator"] +- !private ["Ps19BinaryFloatingPoint", "RawValue"] +- !private ["Ps19BinaryFloatingPoint", "Stride"] +- !private ["Ps19BinaryFloatingPoint", "init"] +- !private ["Ps17BitwiseOperations", "IntegerLiteralType"] +- !private ["Ps17BitwiseOperations", "Stride"] +- !private ["Ps17BitwiseOperations", "_DisabledRangeIndex"] +- !private ["Ps17BitwiseOperations", "_DisallowMixedSignArithmetic"] +- !private ["Ps17BitwiseOperations", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- ["Sb", "deinit"] +- !private ["PSo15CALayerDelegate", "Float"] +- !private ["PSo15CALayerDelegate", "Int32"] +- !private ["PSo15CALayerDelegate", "SE_AppOnScroll"] +- !private ["PSo15CALayerDelegate", "SE_AppOnTapUp"] +- !private ["PSo15CALayerDelegate", "SE_AppOnTapUpAfterMove"] +- !private ["PSo15CALayerDelegate", "TTouchHashData"] +- !private ["PSo15CALayerDelegate", "abs"] +- ["PSo15CALayerDelegate", "addTouchToHash"] +- !private ["PSo15CALayerDelegate", "bounds"] +- !private ["PSo15CALayerDelegate", "fatalError"] +- ["PSo15CALayerDelegate", "init"] +- !private ["PSo15CALayerDelegate", "isMultipleTouchEnabled"] +- ["PSo15CALayerDelegate", "removeTouchFromHash"] +- ["PSo15CALayerDelegate", "touchDict"] +- ["PSo15CALayerDelegate", "touchesBegan"] +- ["PSo15CALayerDelegate", "touchesCancelled"] +- ["PSo15CALayerDelegate", "touchesEnded"] +- ["PSo15CALayerDelegate", ""] +- !private ["V12CoreGraphics7CGFloat", "RawValue"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- ["V12CoreGraphics7CGFloat", "deinit"] +- ["VSC7CGPoint", "deinit"] +- !private ["VSC7CGPoint", "x"] +- !private ["VSC7CGPoint", "y"] +- ["VSC6CGRect", "deinit"] +- !private ["VSC6CGRect", "size"] +- !private ["VSC6CGSize", "height"] +- !private ["Ps7CVarArg", "Float"] +- !private ["Ps7CVarArg", "Int32"] +- !private ["Ps7CVarArg", "IntegerLiteralType"] +- !private ["Ps7CVarArg", "Iterator"] +- ["Ps7CVarArg", "Key"] +- !private ["Ps7CVarArg", "RawValue"] +- !private ["Ps7CVarArg", "SE_AppOnScroll"] +- !private ["Ps7CVarArg", "SE_AppOnTapUp"] +- !private ["Ps7CVarArg", "SE_AppOnTapUpAfterMove"] +- !private ["Ps7CVarArg", "Stride"] +- !private ["Ps7CVarArg", "TTouchHashData"] +- ["Ps7CVarArg", "Value"] +- !private ["Ps7CVarArg", "_DisabledRangeIndex"] +- !private ["Ps7CVarArg", "_DisallowMixedSignArithmetic"] +- !private ["Ps7CVarArg", "abs"] +- ["Ps7CVarArg", "addTouchToHash"] +- !private ["Ps7CVarArg", "bounds"] +- !private ["Ps7CVarArg", "fatalError"] +- ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "isMultipleTouchEnabled"] +- !private ["Ps7CVarArg", "location"] +- !private ["Ps7CVarArg", "previousLocation"] +- ["Ps7CVarArg", "removeTouchFromHash"] +- !private ["Ps7CVarArg", "removeValue"] +- !private ["Ps7CVarArg", "subscript"] +- ["Ps7CVarArg", "touchDict"] +- ["Ps7CVarArg", "touchesBegan"] +- ["Ps7CVarArg", "touchesCancelled"] +- ["Ps7CVarArg", "touchesEnded"] +- !private ["Ps7CVarArg", "values"] +- ["Ps7CVarArg", ""] +- !private ["Vs11ClosedRange", "deinit"] +- !private ["Vs19ClosedRangeIterator", "Element"] +- !private ["Ps10Collection", "Index"] +- !private ["Ps10Collection", "Iterator"] +- ["Ps10Collection", "Key"] +- !private ["Ps10Collection", "SubSequence"] +- ["Ps10Collection", "Value"] +- !private ["Ps10Collection", "_Element"] +- !private ["Ps10Collection", "removeValue"] +- !private ["Ps10Collection", "subscript"] +- !private ["Ps10Collection", "values"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "RawValue"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "_DisallowMixedSignArithmetic"] +- !private ["Ps10Comparable", "init"] +- !private ["Vs20CountableClosedRange", "Iterator"] +- ["Vs20CountableClosedRange", "deinit"] +- !private ["Ps28CustomDebugStringConvertible", "Float"] +- !private ["Ps28CustomDebugStringConvertible", "Int32"] +- !private ["Ps28CustomDebugStringConvertible", "Iterator"] +- ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnScroll"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnTapUp"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnTapUpAfterMove"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "TTouchHashData"] +- ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "abs"] +- ["Ps28CustomDebugStringConvertible", "addTouchToHash"] +- !private ["Ps28CustomDebugStringConvertible", "bounds"] +- !private ["Ps28CustomDebugStringConvertible", "fatalError"] +- !private ["Ps28CustomDebugStringConvertible", "height"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "location"] +- !private ["Ps28CustomDebugStringConvertible", "previousLocation"] +- ["Ps28CustomDebugStringConvertible", "removeTouchFromHash"] +- !private ["Ps28CustomDebugStringConvertible", "removeValue"] +- !private ["Ps28CustomDebugStringConvertible", "size"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "touchDict"] +- ["Ps28CustomDebugStringConvertible", "touchesBegan"] +- ["Ps28CustomDebugStringConvertible", "touchesCancelled"] +- ["Ps28CustomDebugStringConvertible", "touchesEnded"] +- !private ["Ps28CustomDebugStringConvertible", "values"] +- !private ["Ps28CustomDebugStringConvertible", "x"] +- !private ["Ps28CustomDebugStringConvertible", "y"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "IntegerLiteralType"] +- !private ["Ps29CustomPlaygroundQuickLookable", "Stride"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_DisabledRangeIndex"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_DisallowMixedSignArithmetic"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps29CustomPlaygroundQuickLookable", "height"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps29CustomPlaygroundQuickLookable", "size"] +- !private ["Ps29CustomPlaygroundQuickLookable", "x"] +- !private ["Ps29CustomPlaygroundQuickLookable", "y"] +- !private ["Ps17CustomReflectable", "Element"] +- !private ["Ps17CustomReflectable", "IntegerLiteralType"] +- !private ["Ps17CustomReflectable", "Iterator"] +- ["Ps17CustomReflectable", "Key"] +- !private ["Ps17CustomReflectable", "RawValue"] +- !private ["Ps17CustomReflectable", "Stride"] +- ["Ps17CustomReflectable", "Value"] +- !private ["Ps17CustomReflectable", "_DisabledRangeIndex"] +- !private ["Ps17CustomReflectable", "_DisallowMixedSignArithmetic"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "height"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps17CustomReflectable", "removeValue"] +- !private ["Ps17CustomReflectable", "size"] +- !private ["Ps17CustomReflectable", "subscript"] +- !private ["Ps17CustomReflectable", "values"] +- !private ["Ps17CustomReflectable", "x"] +- !private ["Ps17CustomReflectable", "y"] +- !private ["Ps23CustomStringConvertible", "Float"] +- !private ["Ps23CustomStringConvertible", "Int32"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Iterator"] +- ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "RawValue"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnScroll"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnTapUp"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnTapUpAfterMove"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "TTouchHashData"] +- ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_DisallowMixedSignArithmetic"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "abs"] +- ["Ps23CustomStringConvertible", "addTouchToHash"] +- !private ["Ps23CustomStringConvertible", "bounds"] +- !private ["Ps23CustomStringConvertible", "fatalError"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps23CustomStringConvertible", "location"] +- !private ["Ps23CustomStringConvertible", "previousLocation"] +- ["Ps23CustomStringConvertible", "removeTouchFromHash"] +- !private ["Ps23CustomStringConvertible", "removeValue"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "touchDict"] +- ["Ps23CustomStringConvertible", "touchesBegan"] +- ["Ps23CustomStringConvertible", "touchesCancelled"] +- ["Ps23CustomStringConvertible", "touchesEnded"] +- !private ["Ps23CustomStringConvertible", "values"] +- ["Ps23CustomStringConvertible", ""] +- !private ["V10Foundation4Date", "deinit"] +- !private ["Vs10Dictionary", "Iterator"] +- ["Vs10Dictionary", "Key"] +- ["Vs10Dictionary", "Value"] +- ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "removeValue"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "values"] +- !private ["Sd", "Stride"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Float"] +- !private ["Ps9Equatable", "Int32"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Iterator"] +- !private ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "SE_AppOnScroll"] +- !private ["Ps9Equatable", "SE_AppOnTapUp"] +- !private ["Ps9Equatable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "TTouchHashData"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_DisallowMixedSignArithmetic"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "abs"] +- ["Ps9Equatable", "addTouchToHash"] +- !private ["Ps9Equatable", "bounds"] +- !private ["Ps9Equatable", "fatalError"] +- !private ["Ps9Equatable", "height"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isMultipleTouchEnabled"] +- !private ["Ps9Equatable", "location"] +- !private ["Ps9Equatable", "previousLocation"] +- ["Ps9Equatable", "removeTouchFromHash"] +- !private ["Ps9Equatable", "size"] +- ["Ps9Equatable", "touchDict"] +- ["Ps9Equatable", "touchesBegan"] +- ["Ps9Equatable", "touchesCancelled"] +- ["Ps9Equatable", "touchesEnded"] +- !private ["Ps9Equatable", "x"] +- !private ["Ps9Equatable", "y"] +- ["Ps9Equatable", ""] +- !private ["Ps25ExpressibleByArrayLiteral", "Iterator"] +- !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "Iterator"] +- ["Ps30ExpressibleByDictionaryLiteral", "Key"] +- ["Ps30ExpressibleByDictionaryLiteral", "Value"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "removeValue"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "subscript"] +- !private ["Ps30ExpressibleByDictionaryLiteral", "values"] +- !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps25ExpressibleByFloatLiteral", "RawValue"] +- !private ["Ps25ExpressibleByFloatLiteral", "Stride"] +- !private ["Ps25ExpressibleByFloatLiteral", "init"] +- !private ["Ps27ExpressibleByIntegerLiteral", "IntegerLiteralType"] +- !private ["Ps27ExpressibleByIntegerLiteral", "RawValue"] +- !private ["Ps27ExpressibleByIntegerLiteral", "Stride"] +- !private ["Ps27ExpressibleByIntegerLiteral", "_DisabledRangeIndex"] +- !private ["Ps27ExpressibleByIntegerLiteral", "_DisallowMixedSignArithmetic"] +- !private ["Ps27ExpressibleByIntegerLiteral", "init"] +- !private ["Ps32ExpressibleByStringInterpolation", "init"] +- !private ["Ps26ExpressibleByStringLiteral", "init"] +- !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"] +- !private ["Sf", "Stride"] +- ["Sf", "deinit"] +- !private ["Sf", "init"] +- !private ["Vs7Float80", "Stride"] +- !private ["Vs7Float80", "deinit"] +- !private ["Ps13FloatingPoint", "RawValue"] +- !private ["Ps13FloatingPoint", "Stride"] +- !private ["Ps13FloatingPoint", "init"] +- ["CSo7GLKView", "CGRect"] +- !private ["CSo7GLKView", "Float"] +- !private ["CSo7GLKView", "Int32"] +- ["CSo7GLKView", "NSCoder"] +- !private ["CSo7GLKView", "SE_AppOnScroll"] +- !private ["CSo7GLKView", "SE_AppOnTapUp"] +- !private ["CSo7GLKView", "SE_AppOnTapUpAfterMove"] +- ["CSo7GLKView", "Set"] +- ["CSo7GLKView", "TTouchHashData"] +- ["CSo7GLKView", "UIEvent"] +- ["CSo7GLKView", "UITouch"] +- !private ["CSo7GLKView", "abs"] +- ["CSo7GLKView", "addTouchToHash"] +- !private ["CSo7GLKView", "bounds"] +- ["CSo7GLKView", "deinit"] +- !private ["CSo7GLKView", "fatalError"] +- ["CSo7GLKView", "init"] +- !private ["CSo7GLKView", "isMultipleTouchEnabled"] +- ["CSo7GLKView", "removeTouchFromHash"] +- ["CSo7GLKView", "touchDict"] +- ["CSo7GLKView", "touchesBegan"] +- ["CSo7GLKView", "touchesCancelled"] +- ["CSo7GLKView", "touchesEnded"] +- ["CSo7GLKView", ""] +- ["C14salmontemplate15GLKViewTemplate", "CGRect"] +- !private ["C14salmontemplate15GLKViewTemplate", "Float"] +- !private ["C14salmontemplate15GLKViewTemplate", "Int32"] +- ["C14salmontemplate15GLKViewTemplate", "NSCoder"] +- !private ["C14salmontemplate15GLKViewTemplate", "SE_AppOnScroll"] +- !private ["C14salmontemplate15GLKViewTemplate", "SE_AppOnTapUp"] +- !private ["C14salmontemplate15GLKViewTemplate", "SE_AppOnTapUpAfterMove"] +- ["C14salmontemplate15GLKViewTemplate", "Set"] +- ["C14salmontemplate15GLKViewTemplate", "TTouchHashData"] +- ["C14salmontemplate15GLKViewTemplate", "UIEvent"] +- ["C14salmontemplate15GLKViewTemplate", "UITouch"] +- !private ["C14salmontemplate15GLKViewTemplate", "abs"] +- ["C14salmontemplate15GLKViewTemplate", "addTouchToHash"] +- !private ["C14salmontemplate15GLKViewTemplate", "bounds"] +- ["C14salmontemplate15GLKViewTemplate", "deinit"] +- !private ["C14salmontemplate15GLKViewTemplate", "fatalError"] +- ["C14salmontemplate15GLKViewTemplate", "init"] +- !private ["C14salmontemplate15GLKViewTemplate", "isMultipleTouchEnabled"] +- ["C14salmontemplate15GLKViewTemplate", "removeTouchFromHash"] +- ["C14salmontemplate15GLKViewTemplate", "touchDict"] +- ["C14salmontemplate15GLKViewTemplate", "touchesBegan"] +- ["C14salmontemplate15GLKViewTemplate", "touchesCancelled"] +- ["C14salmontemplate15GLKViewTemplate", "touchesEnded"] +- !private ["Ps8Hashable", "Float"] +- !private ["Ps8Hashable", "Int32"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Iterator"] +- !private ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "SE_AppOnScroll"] +- !private ["Ps8Hashable", "SE_AppOnTapUp"] +- !private ["Ps8Hashable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "TTouchHashData"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_DisallowMixedSignArithmetic"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "abs"] +- ["Ps8Hashable", "addTouchToHash"] +- !private ["Ps8Hashable", "bounds"] +- !private ["Ps8Hashable", "fatalError"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isMultipleTouchEnabled"] +- !private ["Ps8Hashable", "location"] +- !private ["Ps8Hashable", "previousLocation"] +- ["Ps8Hashable", "removeTouchFromHash"] +- ["Ps8Hashable", "touchDict"] +- ["Ps8Hashable", "touchesBegan"] +- ["Ps8Hashable", "touchesCancelled"] +- ["Ps8Hashable", "touchesEnded"] +- ["Ps8Hashable", ""] +- ["SQ", "deinit"] +- !private ["VV10Foundation8IndexSet5Index", "deinit"] +- !private ["V10Foundation9IndexPath", "deinit"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Iterator"] +- ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "removeValue"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "values"] +- !private ["Ps13IndexableBase", "Index"] +- !private ["Ps13IndexableBase", "Iterator"] +- ["Ps13IndexableBase", "Key"] +- !private ["Ps13IndexableBase", "SubSequence"] +- ["Ps13IndexableBase", "Value"] +- !private ["Ps13IndexableBase", "_Element"] +- !private ["Ps13IndexableBase", "removeValue"] +- !private ["Ps13IndexableBase", "subscript"] +- !private ["Ps13IndexableBase", "values"] +- !private ["Vs16IndexingIterator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "Stride"] +- !private ["Si", "_DisabledRangeIndex"] +- ["Si", "deinit"] +- !private ["Vs5Int16", "Stride"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "Stride"] +- ["Vs5Int32", "deinit"] +- !private ["Vs5Int32", "init"] +- !private ["Vs5Int64", "Stride"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "Stride"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps7Integer", "IntegerLiteralType"] +- !private ["Ps7Integer", "Stride"] +- !private ["Ps7Integer", "_DisabledRangeIndex"] +- !private ["Ps7Integer", "_DisallowMixedSignArithmetic"] +- !private ["Ps7Integer", "init"] +- !private ["Ps17IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps17IntegerArithmetic", "Stride"] +- !private ["Ps17IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps17IntegerArithmetic", "_DisallowMixedSignArithmetic"] +- !private ["Ps17IntegerArithmetic", "init"] +- !private ["Ps16IteratorProtocol", "Element"] +- !private ["Ps22LazyCollectionProtocol", "Iterator"] +- !private ["Vs15LazyFilterIndex", "deinit"] +- !private ["Vs17LazyMapCollection", "Iterator"] +- ["Vs17LazyMapCollection", "deinit"] +- !private ["Vs15LazyMapIterator", "Element"] +- !private ["Ps20LazySequenceProtocol", "Iterator"] +- !private ["Ps25LosslessStringConvertible", "Stride"] +- !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps25LosslessStringConvertible", "init"] +- !private ["Ps10MirrorPath", "IntegerLiteralType"] +- !private ["Ps10MirrorPath", "Stride"] +- !private ["Ps10MirrorPath", "_DisabledRangeIndex"] +- !private ["Ps10MirrorPath", "init"] +- !private ["PSo8NSCoding", "Float"] +- !private ["PSo8NSCoding", "Int32"] +- !private ["PSo8NSCoding", "SE_AppOnScroll"] +- !private ["PSo8NSCoding", "SE_AppOnTapUp"] +- !private ["PSo8NSCoding", "SE_AppOnTapUpAfterMove"] +- !private ["PSo8NSCoding", "TTouchHashData"] +- !private ["PSo8NSCoding", "abs"] +- ["PSo8NSCoding", "addTouchToHash"] +- !private ["PSo8NSCoding", "bounds"] +- !private ["PSo8NSCoding", "fatalError"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isMultipleTouchEnabled"] +- ["PSo8NSCoding", "removeTouchFromHash"] +- ["PSo8NSCoding", "touchDict"] +- ["PSo8NSCoding", "touchesBegan"] +- ["PSo8NSCoding", "touchesCancelled"] +- ["PSo8NSCoding", "touchesEnded"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSNumber", "deinit"] +- ["CSo8NSObject", "CGRect"] +- !private ["CSo8NSObject", "Float"] +- !private ["CSo8NSObject", "Int32"] +- ["CSo8NSObject", "NSCoder"] +- !private ["CSo8NSObject", "SE_AppOnScroll"] +- !private ["CSo8NSObject", "SE_AppOnTapUp"] +- !private ["CSo8NSObject", "SE_AppOnTapUpAfterMove"] +- ["CSo8NSObject", "Set"] +- ["CSo8NSObject", "TTouchHashData"] +- ["CSo8NSObject", "UIEvent"] +- ["CSo8NSObject", "UITouch"] +- !private ["CSo8NSObject", "abs"] +- ["CSo8NSObject", "addTouchToHash"] +- !private ["CSo8NSObject", "bounds"] +- !private ["CSo8NSObject", "fatalError"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isMultipleTouchEnabled"] +- !private ["CSo8NSObject", "location"] +- !private ["CSo8NSObject", "previousLocation"] +- ["CSo8NSObject", "removeTouchFromHash"] +- ["CSo8NSObject", "touchDict"] +- ["CSo8NSObject", "touchesBegan"] +- ["CSo8NSObject", "touchesCancelled"] +- ["CSo8NSObject", "touchesEnded"] +- !private ["PSo16NSObjectProtocol", "Float"] +- !private ["PSo16NSObjectProtocol", "Int32"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnScroll"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnTapUp"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnTapUpAfterMove"] +- !private ["PSo16NSObjectProtocol", "TTouchHashData"] +- !private ["PSo16NSObjectProtocol", "abs"] +- ["PSo16NSObjectProtocol", "addTouchToHash"] +- !private ["PSo16NSObjectProtocol", "bounds"] +- !private ["PSo16NSObjectProtocol", "fatalError"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isMultipleTouchEnabled"] +- !private ["PSo16NSObjectProtocol", "location"] +- !private ["PSo16NSObjectProtocol", "previousLocation"] +- ["PSo16NSObjectProtocol", "removeTouchFromHash"] +- ["PSo16NSObjectProtocol", "touchDict"] +- ["PSo16NSObjectProtocol", "touchesBegan"] +- ["PSo16NSObjectProtocol", "touchesCancelled"] +- ["PSo16NSObjectProtocol", "touchesEnded"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- ["Os5Never", "deinit"] +- ["Sq", "deinit"] +- !private ["Ps22RandomAccessCollection", "Iterator"] +- !private ["Ps21RandomAccessIndexable", "Iterator"] +- !private ["Ps8Sequence", "Element"] +- !private ["Ps8Sequence", "Index"] +- !private ["Ps8Sequence", "Iterator"] +- ["Ps8Sequence", "Key"] +- !private ["Ps8Sequence", "SubSequence"] +- ["Ps8Sequence", "Value"] +- !private ["Ps8Sequence", "_Element"] +- !private ["Ps8Sequence", "removeValue"] +- !private ["Ps8Sequence", "subscript"] +- !private ["Ps8Sequence", "values"] +- !private ["Vs3Set", "Iterator"] +- ["Vs3Set", "deinit"] +- !private ["Ps10SetAlgebra", "Iterator"] +- !private ["Vs11SetIterator", "Element"] +- !private ["Ps13SignedInteger", "IntegerLiteralType"] +- !private ["Ps13SignedInteger", "Stride"] +- !private ["Ps13SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps13SignedInteger", "init"] +- !private ["Ps12SignedNumber", "IntegerLiteralType"] +- !private ["Ps12SignedNumber", "RawValue"] +- !private ["Ps12SignedNumber", "Stride"] +- !private ["Ps12SignedNumber", "_DisabledRangeIndex"] +- !private ["Ps12SignedNumber", "init"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "Iterator"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- ["Vs12StaticString", "deinit"] +- !private ["Vs12StaticString", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "RawValue"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "_DisallowMixedSignArithmetic"] +- !private ["Ps10Strideable", "init"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- ["V14salmontemplate14TTouchHashData", "Bool"] +- ["V14salmontemplate14TTouchHashData", "CGPoint"] +- ["V14salmontemplate14TTouchHashData", "Int"] +- ["V14salmontemplate14TTouchHashData", "deinit"] +- ["V14salmontemplate14TTouchHashData", "first"] +- ["V14salmontemplate14TTouchHashData", "init"] +- ["V14salmontemplate14TTouchHashData", "number"] +- ["V14salmontemplate14TTouchHashData", "second"] +- !private ["Ps16TextOutputStream", "init"] +- !private ["Ps20TextOutputStreamable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "Float"] +- !private ["PSo29UIAccessibilityIdentification", "Int32"] +- !private ["PSo29UIAccessibilityIdentification", "SE_AppOnScroll"] +- !private ["PSo29UIAccessibilityIdentification", "SE_AppOnTapUp"] +- !private ["PSo29UIAccessibilityIdentification", "SE_AppOnTapUpAfterMove"] +- !private ["PSo29UIAccessibilityIdentification", "TTouchHashData"] +- !private ["PSo29UIAccessibilityIdentification", "abs"] +- ["PSo29UIAccessibilityIdentification", "addTouchToHash"] +- !private ["PSo29UIAccessibilityIdentification", "bounds"] +- !private ["PSo29UIAccessibilityIdentification", "fatalError"] +- ["PSo29UIAccessibilityIdentification", "init"] +- !private ["PSo29UIAccessibilityIdentification", "isMultipleTouchEnabled"] +- ["PSo29UIAccessibilityIdentification", "removeTouchFromHash"] +- ["PSo29UIAccessibilityIdentification", "touchDict"] +- ["PSo29UIAccessibilityIdentification", "touchesBegan"] +- ["PSo29UIAccessibilityIdentification", "touchesCancelled"] +- ["PSo29UIAccessibilityIdentification", "touchesEnded"] +- ["PSo29UIAccessibilityIdentification", ""] +- !private ["PSo12UIAppearance", "Float"] +- !private ["PSo12UIAppearance", "Int32"] +- !private ["PSo12UIAppearance", "SE_AppOnScroll"] +- !private ["PSo12UIAppearance", "SE_AppOnTapUp"] +- !private ["PSo12UIAppearance", "SE_AppOnTapUpAfterMove"] +- !private ["PSo12UIAppearance", "TTouchHashData"] +- !private ["PSo12UIAppearance", "abs"] +- ["PSo12UIAppearance", "addTouchToHash"] +- !private ["PSo12UIAppearance", "bounds"] +- !private ["PSo12UIAppearance", "fatalError"] +- ["PSo12UIAppearance", "init"] +- !private ["PSo12UIAppearance", "isMultipleTouchEnabled"] +- ["PSo12UIAppearance", "removeTouchFromHash"] +- ["PSo12UIAppearance", "touchDict"] +- ["PSo12UIAppearance", "touchesBegan"] +- ["PSo12UIAppearance", "touchesCancelled"] +- ["PSo12UIAppearance", "touchesEnded"] +- ["PSo12UIAppearance", ""] +- !private ["PSo21UIAppearanceContainer", "Float"] +- !private ["PSo21UIAppearanceContainer", "Int32"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnScroll"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnTapUp"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnTapUpAfterMove"] +- !private ["PSo21UIAppearanceContainer", "TTouchHashData"] +- !private ["PSo21UIAppearanceContainer", "abs"] +- ["PSo21UIAppearanceContainer", "addTouchToHash"] +- !private ["PSo21UIAppearanceContainer", "bounds"] +- !private ["PSo21UIAppearanceContainer", "fatalError"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "isMultipleTouchEnabled"] +- ["PSo21UIAppearanceContainer", "removeTouchFromHash"] +- ["PSo21UIAppearanceContainer", "touchDict"] +- ["PSo21UIAppearanceContainer", "touchesBegan"] +- ["PSo21UIAppearanceContainer", "touchesCancelled"] +- ["PSo21UIAppearanceContainer", "touchesEnded"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo17UICoordinateSpace", "Float"] +- !private ["PSo17UICoordinateSpace", "Int32"] +- !private ["PSo17UICoordinateSpace", "SE_AppOnScroll"] +- !private ["PSo17UICoordinateSpace", "SE_AppOnTapUp"] +- !private ["PSo17UICoordinateSpace", "SE_AppOnTapUpAfterMove"] +- !private ["PSo17UICoordinateSpace", "TTouchHashData"] +- !private ["PSo17UICoordinateSpace", "abs"] +- ["PSo17UICoordinateSpace", "addTouchToHash"] +- !private ["PSo17UICoordinateSpace", "bounds"] +- !private ["PSo17UICoordinateSpace", "fatalError"] +- ["PSo17UICoordinateSpace", "init"] +- !private ["PSo17UICoordinateSpace", "isMultipleTouchEnabled"] +- ["PSo17UICoordinateSpace", "removeTouchFromHash"] +- ["PSo17UICoordinateSpace", "touchDict"] +- ["PSo17UICoordinateSpace", "touchesBegan"] +- ["PSo17UICoordinateSpace", "touchesCancelled"] +- ["PSo17UICoordinateSpace", "touchesEnded"] +- ["PSo17UICoordinateSpace", ""] +- !private ["PSo13UIDynamicItem", "Float"] +- !private ["PSo13UIDynamicItem", "Int32"] +- !private ["PSo13UIDynamicItem", "SE_AppOnScroll"] +- !private ["PSo13UIDynamicItem", "SE_AppOnTapUp"] +- !private ["PSo13UIDynamicItem", "SE_AppOnTapUpAfterMove"] +- !private ["PSo13UIDynamicItem", "TTouchHashData"] +- !private ["PSo13UIDynamicItem", "abs"] +- ["PSo13UIDynamicItem", "addTouchToHash"] +- !private ["PSo13UIDynamicItem", "bounds"] +- !private ["PSo13UIDynamicItem", "fatalError"] +- ["PSo13UIDynamicItem", "init"] +- !private ["PSo13UIDynamicItem", "isMultipleTouchEnabled"] +- ["PSo13UIDynamicItem", "removeTouchFromHash"] +- ["PSo13UIDynamicItem", "touchDict"] +- ["PSo13UIDynamicItem", "touchesBegan"] +- ["PSo13UIDynamicItem", "touchesCancelled"] +- ["PSo13UIDynamicItem", "touchesEnded"] +- ["PSo13UIDynamicItem", ""] +- !private ["PSo18UIFocusEnvironment", "Float"] +- !private ["PSo18UIFocusEnvironment", "Int32"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnScroll"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnTapUp"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnTapUpAfterMove"] +- !private ["PSo18UIFocusEnvironment", "TTouchHashData"] +- !private ["PSo18UIFocusEnvironment", "abs"] +- ["PSo18UIFocusEnvironment", "addTouchToHash"] +- !private ["PSo18UIFocusEnvironment", "bounds"] +- !private ["PSo18UIFocusEnvironment", "fatalError"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UIFocusEnvironment", "removeTouchFromHash"] +- ["PSo18UIFocusEnvironment", "touchDict"] +- ["PSo18UIFocusEnvironment", "touchesBegan"] +- ["PSo18UIFocusEnvironment", "touchesCancelled"] +- ["PSo18UIFocusEnvironment", "touchesEnded"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo11UIFocusItem", "Float"] +- !private ["PSo11UIFocusItem", "Int32"] +- !private ["PSo11UIFocusItem", "SE_AppOnScroll"] +- !private ["PSo11UIFocusItem", "SE_AppOnTapUp"] +- !private ["PSo11UIFocusItem", "SE_AppOnTapUpAfterMove"] +- !private ["PSo11UIFocusItem", "TTouchHashData"] +- !private ["PSo11UIFocusItem", "abs"] +- ["PSo11UIFocusItem", "addTouchToHash"] +- !private ["PSo11UIFocusItem", "bounds"] +- !private ["PSo11UIFocusItem", "fatalError"] +- ["PSo11UIFocusItem", "init"] +- !private ["PSo11UIFocusItem", "isMultipleTouchEnabled"] +- ["PSo11UIFocusItem", "removeTouchFromHash"] +- ["PSo11UIFocusItem", "touchDict"] +- ["PSo11UIFocusItem", "touchesBegan"] +- ["PSo11UIFocusItem", "touchesCancelled"] +- ["PSo11UIFocusItem", "touchesEnded"] +- ["PSo11UIFocusItem", ""] +- ["CSo11UIResponder", "CGRect"] +- !private ["CSo11UIResponder", "Float"] +- !private ["CSo11UIResponder", "Int32"] +- ["CSo11UIResponder", "NSCoder"] +- !private ["CSo11UIResponder", "SE_AppOnScroll"] +- !private ["CSo11UIResponder", "SE_AppOnTapUp"] +- !private ["CSo11UIResponder", "SE_AppOnTapUpAfterMove"] +- ["CSo11UIResponder", "Set"] +- ["CSo11UIResponder", "TTouchHashData"] +- ["CSo11UIResponder", "UIEvent"] +- ["CSo11UIResponder", "UITouch"] +- !private ["CSo11UIResponder", "abs"] +- ["CSo11UIResponder", "addTouchToHash"] +- !private ["CSo11UIResponder", "bounds"] +- !private ["CSo11UIResponder", "fatalError"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "isMultipleTouchEnabled"] +- ["CSo11UIResponder", "removeTouchFromHash"] +- ["CSo11UIResponder", "touchDict"] +- ["CSo11UIResponder", "touchesBegan"] +- ["CSo11UIResponder", "touchesCancelled"] +- ["CSo11UIResponder", "touchesEnded"] +- !private ["PSo30UIResponderStandardEditActions", "Float"] +- !private ["PSo30UIResponderStandardEditActions", "Int32"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnScroll"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnTapUp"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnTapUpAfterMove"] +- !private ["PSo30UIResponderStandardEditActions", "TTouchHashData"] +- !private ["PSo30UIResponderStandardEditActions", "abs"] +- ["PSo30UIResponderStandardEditActions", "addTouchToHash"] +- !private ["PSo30UIResponderStandardEditActions", "bounds"] +- !private ["PSo30UIResponderStandardEditActions", "fatalError"] +- ["PSo30UIResponderStandardEditActions", "init"] +- !private ["PSo30UIResponderStandardEditActions", "isMultipleTouchEnabled"] +- ["PSo30UIResponderStandardEditActions", "removeTouchFromHash"] +- ["PSo30UIResponderStandardEditActions", "touchDict"] +- ["PSo30UIResponderStandardEditActions", "touchesBegan"] +- ["PSo30UIResponderStandardEditActions", "touchesCancelled"] +- ["PSo30UIResponderStandardEditActions", "touchesEnded"] +- ["PSo30UIResponderStandardEditActions", ""] +- ["CSo7UITouch", "deinit"] +- !private ["CSo7UITouch", "location"] +- !private ["CSo7UITouch", "previousLocation"] +- !private ["PSo18UITraitEnvironment", "Float"] +- !private ["PSo18UITraitEnvironment", "Int32"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnScroll"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnTapUp"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnTapUpAfterMove"] +- !private ["PSo18UITraitEnvironment", "TTouchHashData"] +- !private ["PSo18UITraitEnvironment", "abs"] +- ["PSo18UITraitEnvironment", "addTouchToHash"] +- !private ["PSo18UITraitEnvironment", "bounds"] +- !private ["PSo18UITraitEnvironment", "fatalError"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UITraitEnvironment", "removeTouchFromHash"] +- ["PSo18UITraitEnvironment", "touchDict"] +- ["PSo18UITraitEnvironment", "touchesBegan"] +- ["PSo18UITraitEnvironment", "touchesCancelled"] +- ["PSo18UITraitEnvironment", "touchesEnded"] +- ["PSo18UITraitEnvironment", ""] +- ["CSo6UIView", "CGRect"] +- !private ["CSo6UIView", "Float"] +- !private ["CSo6UIView", "Int32"] +- ["CSo6UIView", "NSCoder"] +- !private ["CSo6UIView", "SE_AppOnScroll"] +- !private ["CSo6UIView", "SE_AppOnTapUp"] +- !private ["CSo6UIView", "SE_AppOnTapUpAfterMove"] +- ["CSo6UIView", "Set"] +- ["CSo6UIView", "TTouchHashData"] +- ["CSo6UIView", "UIEvent"] +- ["CSo6UIView", "UITouch"] +- !private ["CSo6UIView", "abs"] +- ["CSo6UIView", "addTouchToHash"] +- !private ["CSo6UIView", "bounds"] +- !private ["CSo6UIView", "fatalError"] +- ["CSo6UIView", "init"] +- !private ["CSo6UIView", "isMultipleTouchEnabled"] +- ["CSo6UIView", "removeTouchFromHash"] +- ["CSo6UIView", "touchDict"] +- ["CSo6UIView", "touchesBegan"] +- ["CSo6UIView", "touchesCancelled"] +- ["CSo6UIView", "touchesEnded"] +- !private ["Su", "Stride"] +- !private ["Su", "_DisallowMixedSignArithmetic"] +- ["Su", "deinit"] +- !private ["Vs6UInt16", "Stride"] +- !private ["Vs6UInt16", "_DisallowMixedSignArithmetic"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "Stride"] +- !private ["Vs6UInt32", "_DisallowMixedSignArithmetic"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "Stride"] +- !private ["Vs6UInt64", "_DisallowMixedSignArithmetic"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "Stride"] +- !private ["Vs5UInt8", "_DisallowMixedSignArithmetic"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Ps15UnsignedInteger", "Stride"] +- !private ["Ps15UnsignedInteger", "_DisallowMixedSignArithmetic"] +- !private ["Ps15_CVarArgAligned", "RawValue"] +- !private ["Ps15_CVarArgAligned", "Stride"] +- !private ["Ps15_CVarArgAligned", "_DisallowMixedSignArithmetic"] +- !private ["Ps15_CVarArgAligned", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "RawValue"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "Float"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "Int32"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "SE_AppOnScroll"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "SE_AppOnTapUp"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "TTouchHashData"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "abs"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "addTouchToHash"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "bounds"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "fatalError"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "isMultipleTouchEnabled"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "removeTouchFromHash"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchDict"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchesBegan"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchesCancelled"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", "touchesEnded"] +- ["Ps37_DefaultCustomPlaygroundQuickLookable", ""] +- !private ["Ps28_DisallowMixedSignArithmetic", "Stride"] +- !private ["Ps28_DisallowMixedSignArithmetic", "_DisallowMixedSignArithmetic"] +- !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps33_ExpressibleByBuiltinFloatLiteral", "Stride"] +- !private ["Ps33_ExpressibleByBuiltinFloatLiteral", "init"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "IntegerLiteralType"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "Stride"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "_DisabledRangeIndex"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "_DisallowMixedSignArithmetic"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "init"] +- !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"] +- !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"] +- !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "init"] +- !private ["Ps9_Hashable", "Float"] +- !private ["Ps9_Hashable", "Int32"] +- !private ["Ps9_Hashable", "IntegerLiteralType"] +- !private ["Ps9_Hashable", "Iterator"] +- !private ["Ps9_Hashable", "RawValue"] +- !private ["Ps9_Hashable", "SE_AppOnScroll"] +- !private ["Ps9_Hashable", "SE_AppOnTapUp"] +- !private ["Ps9_Hashable", "SE_AppOnTapUpAfterMove"] +- !private ["Ps9_Hashable", "Stride"] +- !private ["Ps9_Hashable", "TTouchHashData"] +- !private ["Ps9_Hashable", "_DisabledRangeIndex"] +- !private ["Ps9_Hashable", "_DisallowMixedSignArithmetic"] +- !private ["Ps9_Hashable", "_getBuiltinLogicValue"] +- !private ["Ps9_Hashable", "abs"] +- ["Ps9_Hashable", "addTouchToHash"] +- !private ["Ps9_Hashable", "bounds"] +- !private ["Ps9_Hashable", "fatalError"] +- ["Ps9_Hashable", "init"] +- !private ["Ps9_Hashable", "isMultipleTouchEnabled"] +- !private ["Ps9_Hashable", "location"] +- !private ["Ps9_Hashable", "previousLocation"] +- ["Ps9_Hashable", "removeTouchFromHash"] +- ["Ps9_Hashable", "touchDict"] +- ["Ps9_Hashable", "touchesBegan"] +- ["Ps9_Hashable", "touchesCancelled"] +- ["Ps9_Hashable", "touchesEnded"] +- ["Ps9_Hashable", ""] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Stride"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "_DisallowMixedSignArithmetic"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps8_Integer", "IntegerLiteralType"] +- !private ["Ps8_Integer", "Stride"] +- !private ["Ps8_Integer", "_DisabledRangeIndex"] +- !private ["Ps8_Integer", "_DisallowMixedSignArithmetic"] +- !private ["Ps8_Integer", "init"] +- !private ["Ps18_IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps18_IntegerArithmetic", "Stride"] +- !private ["Ps18_IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps18_IntegerArithmetic", "_DisallowMixedSignArithmetic"] +- !private ["Ps18_IntegerArithmetic", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Iterator"] +- ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "RawValue"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisallowMixedSignArithmetic"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "height"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "removeValue"] +- !private ["Ps21_ObjectiveCBridgeable", "size"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "values"] +- !private ["Ps21_ObjectiveCBridgeable", "x"] +- !private ["Ps21_ObjectiveCBridgeable", "y"] +- !private ["Ps14_SignedInteger", "IntegerLiteralType"] +- !private ["Ps14_SignedInteger", "Stride"] +- !private ["Ps14_SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps14_SignedInteger", "init"] +- !private ["Ps11_Strideable", "IntegerLiteralType"] +- !private ["Ps11_Strideable", "RawValue"] +- !private ["Ps11_Strideable", "Stride"] +- !private ["Ps11_Strideable", "_DisabledRangeIndex"] +- !private ["Ps11_Strideable", "_DisallowMixedSignArithmetic"] +- !private ["Ps11_Strideable", "init"] +- !private ["Ps14_StringElement", "Stride"] +- !private ["Ps14_StringElement", "_DisallowMixedSignArithmetic"] +- !private ["V4simd7double2", "deinit"] +- !private ["V4simd7double3", "deinit"] +- !private ["V4simd7double4", "deinit"] +- !private ["V4simd6float2", "deinit"] +- !private ["V4simd6float3", "deinit"] +- !private ["V4simd6float4", "deinit"] +- !private ["V4simd4int2", "deinit"] +- !private ["V4simd4int3", "deinit"] +- !private ["V4simd4int4", "deinit"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Ps23BidirectionalCollection" +- !private "Ps22BidirectionalIndexable" +- !private "Ps19BinaryFloatingPoint" +- !private "Ps17BitwiseOperations" +- "Sb" +- "PSo15CALayerDelegate" +- "V12CoreGraphics7CGFloat" +- "VSC7CGPoint" +- "VSC6CGRect" +- !private "VSC6CGSize" +- "Ps7CVarArg" +- !private "Vs11ClosedRange" +- !private "Vs19ClosedRangeIterator" +- "Ps10Collection" +- !private "Ps10Comparable" +- "Vs20CountableClosedRange" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- !private "V10Foundation4Date" +- "Vs10Dictionary" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps25ExpressibleByArrayLiteral" +- !private "Ps27ExpressibleByBooleanLiteral" +- "Ps30ExpressibleByDictionaryLiteral" +- !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral" +- !private "Ps25ExpressibleByFloatLiteral" +- !private "Ps27ExpressibleByIntegerLiteral" +- !private "Ps32ExpressibleByStringInterpolation" +- !private "Ps26ExpressibleByStringLiteral" +- !private "Ps33ExpressibleByUnicodeScalarLiteral" +- "Sf" +- !private "Vs7Float80" +- !private "Ps13FloatingPoint" +- "CSo7GLKView" +- "C14salmontemplate15GLKViewTemplate" +- "Ps8Hashable" +- "SQ" +- !private "VV10Foundation8IndexSet5Index" +- !private "V10Foundation9IndexPath" +- "Ps9Indexable" +- "Ps13IndexableBase" +- !private "Vs16IndexingIterator" +- "Si" +- !private "Vs5Int16" +- "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps7Integer" +- !private "Ps17IntegerArithmetic" +- !private "Ps16IteratorProtocol" +- !private "Ps22LazyCollectionProtocol" +- !private "Vs15LazyFilterIndex" +- "Vs17LazyMapCollection" +- !private "Vs15LazyMapIterator" +- !private "Ps20LazySequenceProtocol" +- !private "Ps25LosslessStringConvertible" +- !private "Ps10MirrorPath" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Os5Never" +- "Sq" +- !private "Ps22RandomAccessCollection" +- !private "Ps21RandomAccessIndexable" +- "Ps8Sequence" +- "Vs3Set" +- !private "Ps10SetAlgebra" +- !private "Vs11SetIterator" +- !private "Ps13SignedInteger" +- !private "Ps12SignedNumber" +- !private "Vs5Slice" +- "Vs12StaticString" +- !private "Ps10Strideable" +- "SS" +- "V14salmontemplate14TTouchHashData" +- !private "Ps16TextOutputStream" +- !private "Ps20TextOutputStreamable" +- "PSo29UIAccessibilityIdentification" +- "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo17UICoordinateSpace" +- "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- "PSo11UIFocusItem" +- "CSo11UIResponder" +- "PSo30UIResponderStandardEditActions" +- "CSo7UITouch" +- "PSo18UITraitEnvironment" +- "CSo6UIView" +- "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Ps15UnsignedInteger" +- !private "Ps15_CVarArgAligned" +- !private "Ps22_CVarArgPassedAsDouble" +- "Ps37_DefaultCustomPlaygroundQuickLookable" +- !private "Ps28_DisallowMixedSignArithmetic" +- !private "Ps35_ExpressibleByBuiltinBooleanLiteral" +- !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral" +- !private "Ps33_ExpressibleByBuiltinFloatLiteral" +- !private "Ps35_ExpressibleByBuiltinIntegerLiteral" +- !private "Ps34_ExpressibleByBuiltinStringLiteral" +- !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral" +- !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral" +- !private "Ps35_HasCustomAnyHashableRepresentation" +- "Ps9_Hashable" +- !private "Ps14_Incrementable" +- !private "Ps8_Integer" +- !private "Ps18_IntegerArithmetic" +- "Ps21_ObjectiveCBridgeable" +- !private "Ps14_SignedInteger" +- !private "Ps11_Strideable" +- !private "Ps14_StringElement" +- !private "V4simd7double2" +- !private "V4simd7double3" +- !private "V4simd7double4" +- !private "V4simd6float2" +- !private "V4simd6float3" +- !private "V4simd6float4" +- !private "V4simd4int2" +- !private "V4simd4int3" +- !private "V4simd4int4" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule" +interface-hash: "08ef7f86947330b9c609816191608d5b" diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc new file mode 100644 index 0000000..342487f Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule new file mode 100644 index 0000000..8a2fa90 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.d new file mode 100644 index 0000000..d417501 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.d @@ -0,0 +1,1607 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.cpp \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/Utils/IosApi/IosWrapper.h \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.dia new file mode 100644 index 0000000..10c7fbc Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.o new file mode 100644 index 0000000..6e37fce Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.d new file mode 100644 index 0000000..922262f --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.d @@ -0,0 +1,3 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.o : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftmodule : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftdoc : /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.dia new file mode 100644 index 0000000..bb0ec51 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.o new file mode 100644 index 0000000..26f7697 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.swiftdeps new file mode 100644 index 0000000..92c568a --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.swiftdeps @@ -0,0 +1,1546 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ViewControllerTemplate" +- "ViewController" +provides-nominal: +- "C14salmontemplate22ViewControllerTemplate" +- "C14salmontemplate14ViewController" +provides-member: +- ["C14salmontemplate22ViewControllerTemplate", ""] +- ["C14salmontemplate14ViewController", ""] +provides-dynamic-lookup: +- "viewDidLoad" +- "hiddenTextField" +- "setupGL" +- "supportedInterfaceOrientations" +- "textField" +- "appInitCaller" +- "appInitCaller" +- "tearDownGL" +- "respondToPinch" +- "textFieldDidEndEditing" +- "glkView" +- "textFieldDidBeginEditing" +- "onReceiveKeyboardNotification" +- "update" +depends-top-level: +- "Bool" +- !private "NotificationCenter" +- !private "UnicodeScalarType" +- !private "Int32" +- !private "==" +- !private "StringLiteralType" +- !private "SE_OnKeyboardHide" +- "UIInterfaceOrientationMask" +- !private "CustomAppInit" +- "GLKView" +- !private "BooleanLiteralType" +- "NSNotification" +- !private "SE_AppOnScale" +- "UITextField" +- "CGRect" +- !private "print" +- "ViewController" +- !private "SE_SetKeyboardText" +- "GLKViewController" +- "UIPinchGestureRecognizer" +- !private "Array" +- !private "SE_AppDraw" +- "ViewControllerTemplate" +- !private "SE_AppUpdate" +- !private "SE_AppDeinit" +- "GLKBaseEffect" +- "NSRange" +- "EAGLContext" +- !private "*" +- "UITextFieldDelegate" +- "AssignmentPrecedence" +- "String" +- !private "Float" +- "CastingPrecedence" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "CGRect"] +- !private ["Ps9AnyObject", "CustomAppInit"] +- !private ["Ps9AnyObject", "EAGLContext"] +- !private ["Ps9AnyObject", "Float"] +- !private ["Ps9AnyObject", "Int32"] +- !private ["Ps9AnyObject", "NotificationCenter"] +- !private ["Ps9AnyObject", "SE_AppDeinit"] +- !private ["Ps9AnyObject", "SE_AppDraw"] +- !private ["Ps9AnyObject", "SE_AppOnScale"] +- !private ["Ps9AnyObject", "SE_AppUpdate"] +- !private ["Ps9AnyObject", "SE_OnKeyboardHide"] +- !private ["Ps9AnyObject", "SE_SetKeyboardText"] +- !private ["Ps9AnyObject", "UIPinchGestureRecognizer"] +- !private ["Ps9AnyObject", "UITextField"] +- !private ["Ps9AnyObject", "addGestureRecognizer"] +- !private ["Ps9AnyObject", "addObserver"] +- !private ["Ps9AnyObject", "addSubview"] +- ["Ps9AnyObject", "appInitCaller"] +- !private ["Ps9AnyObject", "autocorrectionType"] +- ["Ps9AnyObject", "context"] +- !private ["Ps9AnyObject", "default"] +- !private ["Ps9AnyObject", "delaysTouchesEnded"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "drawableDepthFormat"] +- ["Ps9AnyObject", "effect"] +- ["Ps9AnyObject", "glkView"] +- ["Ps9AnyObject", "hiddenTextField"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isMultipleTouchEnabled"] +- !private ["Ps9AnyObject", "name"] +- !private ["Ps9AnyObject", "object"] +- ["Ps9AnyObject", "onReceiveKeyboardNotification"] +- !private ["Ps9AnyObject", "print"] +- !private ["Ps9AnyObject", "resignFirstResponder"] +- ["Ps9AnyObject", "respondToPinch"] +- !private ["Ps9AnyObject", "scale"] +- !private ["Ps9AnyObject", "setCurrent"] +- ["Ps9AnyObject", "setupGL"] +- ["Ps9AnyObject", "supportedInterfaceOrientations"] +- ["Ps9AnyObject", "tearDownGL"] +- !private ["Ps9AnyObject", "text"] +- ["Ps9AnyObject", "textField"] +- ["Ps9AnyObject", "textFieldDidBeginEditing"] +- ["Ps9AnyObject", "textFieldDidEndEditing"] +- ["Ps9AnyObject", "textFieldShouldBeginEditing"] +- ["Ps9AnyObject", "textFieldShouldClear"] +- ["Ps9AnyObject", "textFieldShouldEndEditing"] +- ["Ps9AnyObject", "textFieldShouldReturn"] +- !private ["Ps9AnyObject", "timeSinceLastUpdate"] +- ["Ps9AnyObject", "update"] +- !private ["Ps9AnyObject", "view"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", ""] +- !private ["Ps19BinaryFloatingPoint", "init"] +- !private ["Ps17BitwiseOperations", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- ["Sb", "deinit"] +- !private ["PSo15CALayerDelegate", "addGestureRecognizer"] +- !private ["PSo15CALayerDelegate", "addSubview"] +- !private ["PSo15CALayerDelegate", "autocorrectionType"] +- !private ["PSo15CALayerDelegate", "context"] +- !private ["PSo15CALayerDelegate", "delegate"] +- !private ["PSo15CALayerDelegate", "drawableDepthFormat"] +- !private ["PSo15CALayerDelegate", "init"] +- !private ["PSo15CALayerDelegate", "isMultipleTouchEnabled"] +- !private ["PSo15CALayerDelegate", "resignFirstResponder"] +- !private ["PSo15CALayerDelegate", "text"] +- ["VSC6CGRect", "deinit"] +- !private ["VSC6CGRect", "init"] +- !private ["Ps7CVarArg", "CGRect"] +- !private ["Ps7CVarArg", "CustomAppInit"] +- !private ["Ps7CVarArg", "EAGLContext"] +- !private ["Ps7CVarArg", "Float"] +- !private ["Ps7CVarArg", "Int32"] +- !private ["Ps7CVarArg", "NotificationCenter"] +- !private ["Ps7CVarArg", "SE_AppDeinit"] +- !private ["Ps7CVarArg", "SE_AppDraw"] +- !private ["Ps7CVarArg", "SE_AppOnScale"] +- !private ["Ps7CVarArg", "SE_AppUpdate"] +- !private ["Ps7CVarArg", "SE_OnKeyboardHide"] +- !private ["Ps7CVarArg", "SE_SetKeyboardText"] +- !private ["Ps7CVarArg", "UIPinchGestureRecognizer"] +- !private ["Ps7CVarArg", "UITextField"] +- !private ["Ps7CVarArg", "addGestureRecognizer"] +- !private ["Ps7CVarArg", "addObserver"] +- !private ["Ps7CVarArg", "addSubview"] +- ["Ps7CVarArg", "appInitCaller"] +- !private ["Ps7CVarArg", "autocorrectionType"] +- ["Ps7CVarArg", "context"] +- !private ["Ps7CVarArg", "default"] +- !private ["Ps7CVarArg", "delaysTouchesEnded"] +- !private ["Ps7CVarArg", "delegate"] +- !private ["Ps7CVarArg", "drawableDepthFormat"] +- ["Ps7CVarArg", "effect"] +- ["Ps7CVarArg", "glkView"] +- ["Ps7CVarArg", "hiddenTextField"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "isMultipleTouchEnabled"] +- !private ["Ps7CVarArg", "name"] +- !private ["Ps7CVarArg", "object"] +- ["Ps7CVarArg", "onReceiveKeyboardNotification"] +- !private ["Ps7CVarArg", "print"] +- !private ["Ps7CVarArg", "resignFirstResponder"] +- ["Ps7CVarArg", "respondToPinch"] +- !private ["Ps7CVarArg", "scale"] +- !private ["Ps7CVarArg", "setCurrent"] +- ["Ps7CVarArg", "setupGL"] +- ["Ps7CVarArg", "supportedInterfaceOrientations"] +- ["Ps7CVarArg", "tearDownGL"] +- !private ["Ps7CVarArg", "text"] +- ["Ps7CVarArg", "textField"] +- ["Ps7CVarArg", "textFieldDidBeginEditing"] +- ["Ps7CVarArg", "textFieldDidEndEditing"] +- ["Ps7CVarArg", "textFieldShouldBeginEditing"] +- ["Ps7CVarArg", "textFieldShouldClear"] +- ["Ps7CVarArg", "textFieldShouldEndEditing"] +- ["Ps7CVarArg", "textFieldShouldReturn"] +- !private ["Ps7CVarArg", "timeSinceLastUpdate"] +- ["Ps7CVarArg", "update"] +- !private ["Ps7CVarArg", "view"] +- ["Ps7CVarArg", "viewDidLoad"] +- ["Ps7CVarArg", ""] +- !private ["Ps10Comparable", "RawValue"] +- !private ["Ps10Comparable", "UITextFieldTextDidChange"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "CGRect"] +- !private ["Ps28CustomDebugStringConvertible", "CustomAppInit"] +- !private ["Ps28CustomDebugStringConvertible", "EAGLContext"] +- !private ["Ps28CustomDebugStringConvertible", "Float"] +- !private ["Ps28CustomDebugStringConvertible", "Int32"] +- !private ["Ps28CustomDebugStringConvertible", "NotificationCenter"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppDeinit"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppDraw"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppOnScale"] +- !private ["Ps28CustomDebugStringConvertible", "SE_AppUpdate"] +- !private ["Ps28CustomDebugStringConvertible", "SE_OnKeyboardHide"] +- !private ["Ps28CustomDebugStringConvertible", "SE_SetKeyboardText"] +- !private ["Ps28CustomDebugStringConvertible", "UIPinchGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "UITextField"] +- !private ["Ps28CustomDebugStringConvertible", "UITextFieldTextDidChange"] +- !private ["Ps28CustomDebugStringConvertible", "addGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "addObserver"] +- !private ["Ps28CustomDebugStringConvertible", "addSubview"] +- ["Ps28CustomDebugStringConvertible", "appInitCaller"] +- !private ["Ps28CustomDebugStringConvertible", "autocorrectionType"] +- ["Ps28CustomDebugStringConvertible", "context"] +- !private ["Ps28CustomDebugStringConvertible", "default"] +- !private ["Ps28CustomDebugStringConvertible", "delaysTouchesEnded"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "drawableDepthFormat"] +- ["Ps28CustomDebugStringConvertible", "effect"] +- ["Ps28CustomDebugStringConvertible", "glkView"] +- ["Ps28CustomDebugStringConvertible", "hiddenTextField"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "name"] +- !private ["Ps28CustomDebugStringConvertible", "object"] +- ["Ps28CustomDebugStringConvertible", "onReceiveKeyboardNotification"] +- !private ["Ps28CustomDebugStringConvertible", "print"] +- !private ["Ps28CustomDebugStringConvertible", "resignFirstResponder"] +- ["Ps28CustomDebugStringConvertible", "respondToPinch"] +- !private ["Ps28CustomDebugStringConvertible", "scale"] +- !private ["Ps28CustomDebugStringConvertible", "setCurrent"] +- ["Ps28CustomDebugStringConvertible", "setupGL"] +- ["Ps28CustomDebugStringConvertible", "supportedInterfaceOrientations"] +- ["Ps28CustomDebugStringConvertible", "tearDownGL"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- ["Ps28CustomDebugStringConvertible", "textField"] +- ["Ps28CustomDebugStringConvertible", "textFieldDidBeginEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldDidEndEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldBeginEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldClear"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldEndEditing"] +- ["Ps28CustomDebugStringConvertible", "textFieldShouldReturn"] +- !private ["Ps28CustomDebugStringConvertible", "timeSinceLastUpdate"] +- ["Ps28CustomDebugStringConvertible", "update"] +- !private ["Ps28CustomDebugStringConvertible", "view"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "UITextFieldTextDidChange"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps23CustomStringConvertible", "CGRect"] +- !private ["Ps23CustomStringConvertible", "CustomAppInit"] +- !private ["Ps23CustomStringConvertible", "EAGLContext"] +- !private ["Ps23CustomStringConvertible", "Float"] +- !private ["Ps23CustomStringConvertible", "Int32"] +- !private ["Ps23CustomStringConvertible", "NotificationCenter"] +- !private ["Ps23CustomStringConvertible", "SE_AppDeinit"] +- !private ["Ps23CustomStringConvertible", "SE_AppDraw"] +- !private ["Ps23CustomStringConvertible", "SE_AppOnScale"] +- !private ["Ps23CustomStringConvertible", "SE_AppUpdate"] +- !private ["Ps23CustomStringConvertible", "SE_OnKeyboardHide"] +- !private ["Ps23CustomStringConvertible", "SE_SetKeyboardText"] +- !private ["Ps23CustomStringConvertible", "UIPinchGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "UITextField"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "addGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "addObserver"] +- !private ["Ps23CustomStringConvertible", "addSubview"] +- ["Ps23CustomStringConvertible", "appInitCaller"] +- !private ["Ps23CustomStringConvertible", "autocorrectionType"] +- ["Ps23CustomStringConvertible", "context"] +- !private ["Ps23CustomStringConvertible", "default"] +- !private ["Ps23CustomStringConvertible", "delaysTouchesEnded"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "drawableDepthFormat"] +- ["Ps23CustomStringConvertible", "effect"] +- ["Ps23CustomStringConvertible", "glkView"] +- ["Ps23CustomStringConvertible", "hiddenTextField"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isMultipleTouchEnabled"] +- !private ["Ps23CustomStringConvertible", "name"] +- !private ["Ps23CustomStringConvertible", "object"] +- ["Ps23CustomStringConvertible", "onReceiveKeyboardNotification"] +- !private ["Ps23CustomStringConvertible", "print"] +- !private ["Ps23CustomStringConvertible", "resignFirstResponder"] +- ["Ps23CustomStringConvertible", "respondToPinch"] +- !private ["Ps23CustomStringConvertible", "scale"] +- !private ["Ps23CustomStringConvertible", "setCurrent"] +- ["Ps23CustomStringConvertible", "setupGL"] +- ["Ps23CustomStringConvertible", "supportedInterfaceOrientations"] +- ["Ps23CustomStringConvertible", "tearDownGL"] +- !private ["Ps23CustomStringConvertible", "text"] +- ["Ps23CustomStringConvertible", "textField"] +- ["Ps23CustomStringConvertible", "textFieldDidBeginEditing"] +- ["Ps23CustomStringConvertible", "textFieldDidEndEditing"] +- ["Ps23CustomStringConvertible", "textFieldShouldBeginEditing"] +- ["Ps23CustomStringConvertible", "textFieldShouldClear"] +- ["Ps23CustomStringConvertible", "textFieldShouldEndEditing"] +- ["Ps23CustomStringConvertible", "textFieldShouldReturn"] +- !private ["Ps23CustomStringConvertible", "timeSinceLastUpdate"] +- ["Ps23CustomStringConvertible", "update"] +- !private ["Ps23CustomStringConvertible", "view"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", ""] +- ["Sd", "deinit"] +- ["CSo11EAGLContext", "deinit"] +- !private ["CSo11EAGLContext", "init"] +- !private ["CSo11EAGLContext", "setCurrent"] +- ["OSC16EAGLRenderingAPI", "deinit"] +- !private ["OSC16EAGLRenderingAPI", "openGLES2"] +- !private ["Ps9Equatable", "CGRect"] +- !private ["Ps9Equatable", "CustomAppInit"] +- !private ["Ps9Equatable", "EAGLContext"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Float"] +- !private ["Ps9Equatable", "Int32"] +- !private ["Ps9Equatable", "NotificationCenter"] +- !private ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "SE_AppDeinit"] +- !private ["Ps9Equatable", "SE_AppDraw"] +- !private ["Ps9Equatable", "SE_AppOnScale"] +- !private ["Ps9Equatable", "SE_AppUpdate"] +- !private ["Ps9Equatable", "SE_OnKeyboardHide"] +- !private ["Ps9Equatable", "SE_SetKeyboardText"] +- !private ["Ps9Equatable", "UIPinchGestureRecognizer"] +- !private ["Ps9Equatable", "UITextField"] +- !private ["Ps9Equatable", "UITextFieldTextDidChange"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "addGestureRecognizer"] +- !private ["Ps9Equatable", "addObserver"] +- !private ["Ps9Equatable", "addSubview"] +- ["Ps9Equatable", "appInitCaller"] +- !private ["Ps9Equatable", "autocorrectionType"] +- ["Ps9Equatable", "context"] +- !private ["Ps9Equatable", "default"] +- !private ["Ps9Equatable", "delaysTouchesEnded"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "drawableDepthFormat"] +- ["Ps9Equatable", "effect"] +- !private ["Ps9Equatable", "format24"] +- ["Ps9Equatable", "glkView"] +- ["Ps9Equatable", "hiddenTextField"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isMultipleTouchEnabled"] +- !private ["Ps9Equatable", "landscapeLeft"] +- !private ["Ps9Equatable", "landscapeRight"] +- !private ["Ps9Equatable", "name"] +- !private ["Ps9Equatable", "no"] +- !private ["Ps9Equatable", "object"] +- ["Ps9Equatable", "onReceiveKeyboardNotification"] +- !private ["Ps9Equatable", "openGLES2"] +- !private ["Ps9Equatable", "print"] +- !private ["Ps9Equatable", "resignFirstResponder"] +- ["Ps9Equatable", "respondToPinch"] +- !private ["Ps9Equatable", "scale"] +- !private ["Ps9Equatable", "setCurrent"] +- ["Ps9Equatable", "setupGL"] +- ["Ps9Equatable", "supportedInterfaceOrientations"] +- ["Ps9Equatable", "tearDownGL"] +- !private ["Ps9Equatable", "text"] +- ["Ps9Equatable", "textField"] +- ["Ps9Equatable", "textFieldDidBeginEditing"] +- ["Ps9Equatable", "textFieldDidEndEditing"] +- ["Ps9Equatable", "textFieldShouldBeginEditing"] +- ["Ps9Equatable", "textFieldShouldClear"] +- ["Ps9Equatable", "textFieldShouldEndEditing"] +- ["Ps9Equatable", "textFieldShouldReturn"] +- !private ["Ps9Equatable", "timeSinceLastUpdate"] +- ["Ps9Equatable", "update"] +- !private ["Ps9Equatable", "view"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", ""] +- !private ["Ps25ExpressibleByArrayLiteral", "Element"] +- !private ["Ps25ExpressibleByArrayLiteral", "landscapeLeft"] +- !private ["Ps25ExpressibleByArrayLiteral", "landscapeRight"] +- !private ["Ps27ExpressibleByBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps43ExpressibleByExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps25ExpressibleByFloatLiteral", "init"] +- !private ["Ps27ExpressibleByIntegerLiteral", "init"] +- !private ["Ps23ExpressibleByNilLiteral", "UITextFieldTextDidChange"] +- !private ["Ps32ExpressibleByStringInterpolation", "init"] +- !private ["Ps26ExpressibleByStringLiteral", "init"] +- !private ["Ps33ExpressibleByUnicodeScalarLiteral", "init"] +- ["Sf", "deinit"] +- !private ["Sf", "init"] +- !private ["Ps13FloatingPoint", "init"] +- !private ["CSo7GLKView", "addGestureRecognizer"] +- !private ["CSo7GLKView", "addSubview"] +- !private ["CSo7GLKView", "context"] +- ["CSo7GLKView", "deinit"] +- !private ["CSo7GLKView", "drawableDepthFormat"] +- !private ["CSo7GLKView", "isMultipleTouchEnabled"] +- ["CSo17GLKViewController", "Bool"] +- ["CSo17GLKViewController", "CGRect"] +- !private ["CSo17GLKViewController", "CustomAppInit"] +- ["CSo17GLKViewController", "EAGLContext"] +- !private ["CSo17GLKViewController", "Float"] +- ["CSo17GLKViewController", "GLKBaseEffect"] +- ["CSo17GLKViewController", "GLKView"] +- !private ["CSo17GLKViewController", "Int32"] +- ["CSo17GLKViewController", "NSNotification"] +- ["CSo17GLKViewController", "NSRange"] +- !private ["CSo17GLKViewController", "NotificationCenter"] +- !private ["CSo17GLKViewController", "SE_AppDeinit"] +- !private ["CSo17GLKViewController", "SE_AppDraw"] +- !private ["CSo17GLKViewController", "SE_AppOnScale"] +- !private ["CSo17GLKViewController", "SE_AppUpdate"] +- !private ["CSo17GLKViewController", "SE_OnKeyboardHide"] +- !private ["CSo17GLKViewController", "SE_SetKeyboardText"] +- ["CSo17GLKViewController", "String"] +- ["CSo17GLKViewController", "UIInterfaceOrientationMask"] +- ["CSo17GLKViewController", "UIPinchGestureRecognizer"] +- ["CSo17GLKViewController", "UITextField"] +- ["CSo17GLKViewController", "appInitCaller"] +- ["CSo17GLKViewController", "context"] +- ["CSo17GLKViewController", "deinit"] +- ["CSo17GLKViewController", "effect"] +- ["CSo17GLKViewController", "glkView"] +- ["CSo17GLKViewController", "hiddenTextField"] +- ["CSo17GLKViewController", "init"] +- ["CSo17GLKViewController", "onReceiveKeyboardNotification"] +- !private ["CSo17GLKViewController", "print"] +- ["CSo17GLKViewController", "respondToPinch"] +- ["CSo17GLKViewController", "setupGL"] +- ["CSo17GLKViewController", "supportedInterfaceOrientations"] +- ["CSo17GLKViewController", "tearDownGL"] +- ["CSo17GLKViewController", "textField"] +- ["CSo17GLKViewController", "textFieldDidBeginEditing"] +- ["CSo17GLKViewController", "textFieldDidEndEditing"] +- ["CSo17GLKViewController", "textFieldShouldBeginEditing"] +- ["CSo17GLKViewController", "textFieldShouldClear"] +- ["CSo17GLKViewController", "textFieldShouldEndEditing"] +- ["CSo17GLKViewController", "textFieldShouldReturn"] +- !private ["CSo17GLKViewController", "timeSinceLastUpdate"] +- ["CSo17GLKViewController", "update"] +- !private ["CSo17GLKViewController", "view"] +- ["CSo17GLKViewController", "viewDidLoad"] +- ["CSo17GLKViewController", ""] +- !private ["PSo15GLKViewDelegate", "CGRect"] +- !private ["PSo15GLKViewDelegate", "CustomAppInit"] +- !private ["PSo15GLKViewDelegate", "EAGLContext"] +- !private ["PSo15GLKViewDelegate", "Float"] +- !private ["PSo15GLKViewDelegate", "Int32"] +- !private ["PSo15GLKViewDelegate", "NotificationCenter"] +- !private ["PSo15GLKViewDelegate", "SE_AppDeinit"] +- !private ["PSo15GLKViewDelegate", "SE_AppDraw"] +- !private ["PSo15GLKViewDelegate", "SE_AppOnScale"] +- !private ["PSo15GLKViewDelegate", "SE_AppUpdate"] +- !private ["PSo15GLKViewDelegate", "SE_OnKeyboardHide"] +- !private ["PSo15GLKViewDelegate", "SE_SetKeyboardText"] +- !private ["PSo15GLKViewDelegate", "UIPinchGestureRecognizer"] +- !private ["PSo15GLKViewDelegate", "UITextField"] +- ["PSo15GLKViewDelegate", "appInitCaller"] +- ["PSo15GLKViewDelegate", "context"] +- ["PSo15GLKViewDelegate", "effect"] +- ["PSo15GLKViewDelegate", "glkView"] +- ["PSo15GLKViewDelegate", "hiddenTextField"] +- !private ["PSo15GLKViewDelegate", "init"] +- ["PSo15GLKViewDelegate", "onReceiveKeyboardNotification"] +- !private ["PSo15GLKViewDelegate", "print"] +- ["PSo15GLKViewDelegate", "respondToPinch"] +- ["PSo15GLKViewDelegate", "setupGL"] +- ["PSo15GLKViewDelegate", "supportedInterfaceOrientations"] +- ["PSo15GLKViewDelegate", "tearDownGL"] +- ["PSo15GLKViewDelegate", "textField"] +- ["PSo15GLKViewDelegate", "textFieldDidBeginEditing"] +- ["PSo15GLKViewDelegate", "textFieldDidEndEditing"] +- ["PSo15GLKViewDelegate", "textFieldShouldBeginEditing"] +- ["PSo15GLKViewDelegate", "textFieldShouldClear"] +- ["PSo15GLKViewDelegate", "textFieldShouldEndEditing"] +- ["PSo15GLKViewDelegate", "textFieldShouldReturn"] +- !private ["PSo15GLKViewDelegate", "timeSinceLastUpdate"] +- ["PSo15GLKViewDelegate", "update"] +- !private ["PSo15GLKViewDelegate", "view"] +- ["PSo15GLKViewDelegate", "viewDidLoad"] +- ["PSo15GLKViewDelegate", ""] +- ["OSC26GLKViewDrawableDepthFormat", "deinit"] +- !private ["OSC26GLKViewDrawableDepthFormat", "format24"] +- !private ["Ps8Hashable", "CGRect"] +- !private ["Ps8Hashable", "CustomAppInit"] +- !private ["Ps8Hashable", "EAGLContext"] +- !private ["Ps8Hashable", "Float"] +- !private ["Ps8Hashable", "Int32"] +- !private ["Ps8Hashable", "NotificationCenter"] +- !private ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "SE_AppDeinit"] +- !private ["Ps8Hashable", "SE_AppDraw"] +- !private ["Ps8Hashable", "SE_AppOnScale"] +- !private ["Ps8Hashable", "SE_AppUpdate"] +- !private ["Ps8Hashable", "SE_OnKeyboardHide"] +- !private ["Ps8Hashable", "SE_SetKeyboardText"] +- !private ["Ps8Hashable", "UIPinchGestureRecognizer"] +- !private ["Ps8Hashable", "UITextField"] +- !private ["Ps8Hashable", "UITextFieldTextDidChange"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "addGestureRecognizer"] +- !private ["Ps8Hashable", "addObserver"] +- !private ["Ps8Hashable", "addSubview"] +- ["Ps8Hashable", "appInitCaller"] +- !private ["Ps8Hashable", "autocorrectionType"] +- ["Ps8Hashable", "context"] +- !private ["Ps8Hashable", "default"] +- !private ["Ps8Hashable", "delaysTouchesEnded"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "drawableDepthFormat"] +- ["Ps8Hashable", "effect"] +- !private ["Ps8Hashable", "format24"] +- ["Ps8Hashable", "glkView"] +- ["Ps8Hashable", "hiddenTextField"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isMultipleTouchEnabled"] +- !private ["Ps8Hashable", "name"] +- !private ["Ps8Hashable", "no"] +- !private ["Ps8Hashable", "object"] +- ["Ps8Hashable", "onReceiveKeyboardNotification"] +- !private ["Ps8Hashable", "openGLES2"] +- !private ["Ps8Hashable", "print"] +- !private ["Ps8Hashable", "resignFirstResponder"] +- ["Ps8Hashable", "respondToPinch"] +- !private ["Ps8Hashable", "scale"] +- !private ["Ps8Hashable", "setCurrent"] +- ["Ps8Hashable", "setupGL"] +- ["Ps8Hashable", "supportedInterfaceOrientations"] +- ["Ps8Hashable", "tearDownGL"] +- !private ["Ps8Hashable", "text"] +- ["Ps8Hashable", "textField"] +- ["Ps8Hashable", "textFieldDidBeginEditing"] +- ["Ps8Hashable", "textFieldDidEndEditing"] +- ["Ps8Hashable", "textFieldShouldBeginEditing"] +- ["Ps8Hashable", "textFieldShouldClear"] +- ["Ps8Hashable", "textFieldShouldEndEditing"] +- ["Ps8Hashable", "textFieldShouldReturn"] +- !private ["Ps8Hashable", "timeSinceLastUpdate"] +- ["Ps8Hashable", "update"] +- !private ["Ps8Hashable", "view"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", ""] +- ["SQ", "deinit"] +- ["Si", "deinit"] +- ["Vs5Int32", "deinit"] +- !private ["Vs5Int32", "init"] +- !private ["Ps7Integer", "init"] +- !private ["Ps17IntegerArithmetic", "init"] +- !private ["Ps25LosslessStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps25LosslessStringConvertible", "init"] +- !private ["Ps10MirrorPath", "init"] +- ["CSo7NSCoder", "deinit"] +- !private ["PSo8NSCoding", "CGRect"] +- !private ["PSo8NSCoding", "CustomAppInit"] +- !private ["PSo8NSCoding", "EAGLContext"] +- !private ["PSo8NSCoding", "Float"] +- !private ["PSo8NSCoding", "Int32"] +- !private ["PSo8NSCoding", "NotificationCenter"] +- !private ["PSo8NSCoding", "SE_AppDeinit"] +- !private ["PSo8NSCoding", "SE_AppDraw"] +- !private ["PSo8NSCoding", "SE_AppOnScale"] +- !private ["PSo8NSCoding", "SE_AppUpdate"] +- !private ["PSo8NSCoding", "SE_OnKeyboardHide"] +- !private ["PSo8NSCoding", "SE_SetKeyboardText"] +- !private ["PSo8NSCoding", "UIPinchGestureRecognizer"] +- !private ["PSo8NSCoding", "UITextField"] +- !private ["PSo8NSCoding", "addGestureRecognizer"] +- !private ["PSo8NSCoding", "addSubview"] +- ["PSo8NSCoding", "appInitCaller"] +- !private ["PSo8NSCoding", "autocorrectionType"] +- ["PSo8NSCoding", "context"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "drawableDepthFormat"] +- ["PSo8NSCoding", "effect"] +- ["PSo8NSCoding", "glkView"] +- ["PSo8NSCoding", "hiddenTextField"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isMultipleTouchEnabled"] +- !private ["PSo8NSCoding", "name"] +- !private ["PSo8NSCoding", "object"] +- ["PSo8NSCoding", "onReceiveKeyboardNotification"] +- !private ["PSo8NSCoding", "print"] +- !private ["PSo8NSCoding", "resignFirstResponder"] +- ["PSo8NSCoding", "respondToPinch"] +- ["PSo8NSCoding", "setupGL"] +- ["PSo8NSCoding", "supportedInterfaceOrientations"] +- ["PSo8NSCoding", "tearDownGL"] +- !private ["PSo8NSCoding", "text"] +- ["PSo8NSCoding", "textField"] +- ["PSo8NSCoding", "textFieldDidBeginEditing"] +- ["PSo8NSCoding", "textFieldDidEndEditing"] +- ["PSo8NSCoding", "textFieldShouldBeginEditing"] +- ["PSo8NSCoding", "textFieldShouldClear"] +- ["PSo8NSCoding", "textFieldShouldEndEditing"] +- ["PSo8NSCoding", "textFieldShouldReturn"] +- !private ["PSo8NSCoding", "timeSinceLastUpdate"] +- ["PSo8NSCoding", "update"] +- !private ["PSo8NSCoding", "view"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "name"] +- !private ["PSo9NSCopying", "object"] +- !private ["PSo26NSExtensionRequestHandling", "CGRect"] +- !private ["PSo26NSExtensionRequestHandling", "CustomAppInit"] +- !private ["PSo26NSExtensionRequestHandling", "EAGLContext"] +- !private ["PSo26NSExtensionRequestHandling", "Float"] +- !private ["PSo26NSExtensionRequestHandling", "Int32"] +- !private ["PSo26NSExtensionRequestHandling", "NotificationCenter"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppDeinit"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppDraw"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppOnScale"] +- !private ["PSo26NSExtensionRequestHandling", "SE_AppUpdate"] +- !private ["PSo26NSExtensionRequestHandling", "SE_OnKeyboardHide"] +- !private ["PSo26NSExtensionRequestHandling", "SE_SetKeyboardText"] +- !private ["PSo26NSExtensionRequestHandling", "UIPinchGestureRecognizer"] +- !private ["PSo26NSExtensionRequestHandling", "UITextField"] +- ["PSo26NSExtensionRequestHandling", "appInitCaller"] +- ["PSo26NSExtensionRequestHandling", "context"] +- ["PSo26NSExtensionRequestHandling", "effect"] +- ["PSo26NSExtensionRequestHandling", "glkView"] +- ["PSo26NSExtensionRequestHandling", "hiddenTextField"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- ["PSo26NSExtensionRequestHandling", "onReceiveKeyboardNotification"] +- !private ["PSo26NSExtensionRequestHandling", "print"] +- ["PSo26NSExtensionRequestHandling", "respondToPinch"] +- ["PSo26NSExtensionRequestHandling", "setupGL"] +- ["PSo26NSExtensionRequestHandling", "supportedInterfaceOrientations"] +- ["PSo26NSExtensionRequestHandling", "tearDownGL"] +- ["PSo26NSExtensionRequestHandling", "textField"] +- ["PSo26NSExtensionRequestHandling", "textFieldDidBeginEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldDidEndEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldBeginEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldClear"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldEndEditing"] +- ["PSo26NSExtensionRequestHandling", "textFieldShouldReturn"] +- !private ["PSo26NSExtensionRequestHandling", "timeSinceLastUpdate"] +- ["PSo26NSExtensionRequestHandling", "update"] +- !private ["PSo26NSExtensionRequestHandling", "view"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["PSo16NSMutableCopying", "init"] +- ["CSo14NSNotification", "deinit"] +- !private ["CSo14NSNotification", "name"] +- !private ["CSo14NSNotification", "object"] +- ["CSo8NSObject", "Bool"] +- ["CSo8NSObject", "CGRect"] +- !private ["CSo8NSObject", "CustomAppInit"] +- ["CSo8NSObject", "EAGLContext"] +- !private ["CSo8NSObject", "Float"] +- ["CSo8NSObject", "GLKBaseEffect"] +- ["CSo8NSObject", "GLKView"] +- !private ["CSo8NSObject", "Int32"] +- ["CSo8NSObject", "NSNotification"] +- ["CSo8NSObject", "NSRange"] +- !private ["CSo8NSObject", "NotificationCenter"] +- !private ["CSo8NSObject", "SE_AppDeinit"] +- !private ["CSo8NSObject", "SE_AppDraw"] +- !private ["CSo8NSObject", "SE_AppOnScale"] +- !private ["CSo8NSObject", "SE_AppUpdate"] +- !private ["CSo8NSObject", "SE_OnKeyboardHide"] +- !private ["CSo8NSObject", "SE_SetKeyboardText"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UIInterfaceOrientationMask"] +- ["CSo8NSObject", "UIPinchGestureRecognizer"] +- ["CSo8NSObject", "UITextField"] +- !private ["CSo8NSObject", "addGestureRecognizer"] +- !private ["CSo8NSObject", "addObserver"] +- !private ["CSo8NSObject", "addSubview"] +- ["CSo8NSObject", "appInitCaller"] +- !private ["CSo8NSObject", "autocorrectionType"] +- ["CSo8NSObject", "context"] +- !private ["CSo8NSObject", "default"] +- !private ["CSo8NSObject", "delaysTouchesEnded"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "drawableDepthFormat"] +- ["CSo8NSObject", "effect"] +- ["CSo8NSObject", "glkView"] +- ["CSo8NSObject", "hiddenTextField"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isMultipleTouchEnabled"] +- !private ["CSo8NSObject", "name"] +- !private ["CSo8NSObject", "object"] +- ["CSo8NSObject", "onReceiveKeyboardNotification"] +- !private ["CSo8NSObject", "print"] +- !private ["CSo8NSObject", "resignFirstResponder"] +- ["CSo8NSObject", "respondToPinch"] +- !private ["CSo8NSObject", "scale"] +- !private ["CSo8NSObject", "setCurrent"] +- ["CSo8NSObject", "setupGL"] +- ["CSo8NSObject", "supportedInterfaceOrientations"] +- ["CSo8NSObject", "tearDownGL"] +- !private ["CSo8NSObject", "text"] +- ["CSo8NSObject", "textField"] +- ["CSo8NSObject", "textFieldDidBeginEditing"] +- ["CSo8NSObject", "textFieldDidEndEditing"] +- ["CSo8NSObject", "textFieldShouldBeginEditing"] +- ["CSo8NSObject", "textFieldShouldClear"] +- ["CSo8NSObject", "textFieldShouldEndEditing"] +- ["CSo8NSObject", "textFieldShouldReturn"] +- !private ["CSo8NSObject", "timeSinceLastUpdate"] +- ["CSo8NSObject", "update"] +- !private ["CSo8NSObject", "view"] +- ["CSo8NSObject", "viewDidLoad"] +- !private ["PSo16NSObjectProtocol", "CGRect"] +- !private ["PSo16NSObjectProtocol", "CustomAppInit"] +- !private ["PSo16NSObjectProtocol", "EAGLContext"] +- !private ["PSo16NSObjectProtocol", "Float"] +- !private ["PSo16NSObjectProtocol", "Int32"] +- !private ["PSo16NSObjectProtocol", "NotificationCenter"] +- !private ["PSo16NSObjectProtocol", "SE_AppDeinit"] +- !private ["PSo16NSObjectProtocol", "SE_AppDraw"] +- !private ["PSo16NSObjectProtocol", "SE_AppOnScale"] +- !private ["PSo16NSObjectProtocol", "SE_AppUpdate"] +- !private ["PSo16NSObjectProtocol", "SE_OnKeyboardHide"] +- !private ["PSo16NSObjectProtocol", "SE_SetKeyboardText"] +- !private ["PSo16NSObjectProtocol", "UIPinchGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "UITextField"] +- !private ["PSo16NSObjectProtocol", "addGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "addObserver"] +- !private ["PSo16NSObjectProtocol", "addSubview"] +- ["PSo16NSObjectProtocol", "appInitCaller"] +- !private ["PSo16NSObjectProtocol", "autocorrectionType"] +- ["PSo16NSObjectProtocol", "context"] +- !private ["PSo16NSObjectProtocol", "default"] +- !private ["PSo16NSObjectProtocol", "delaysTouchesEnded"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "drawableDepthFormat"] +- ["PSo16NSObjectProtocol", "effect"] +- ["PSo16NSObjectProtocol", "glkView"] +- ["PSo16NSObjectProtocol", "hiddenTextField"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isMultipleTouchEnabled"] +- !private ["PSo16NSObjectProtocol", "name"] +- !private ["PSo16NSObjectProtocol", "object"] +- ["PSo16NSObjectProtocol", "onReceiveKeyboardNotification"] +- !private ["PSo16NSObjectProtocol", "print"] +- !private ["PSo16NSObjectProtocol", "resignFirstResponder"] +- ["PSo16NSObjectProtocol", "respondToPinch"] +- !private ["PSo16NSObjectProtocol", "scale"] +- !private ["PSo16NSObjectProtocol", "setCurrent"] +- ["PSo16NSObjectProtocol", "setupGL"] +- ["PSo16NSObjectProtocol", "supportedInterfaceOrientations"] +- ["PSo16NSObjectProtocol", "tearDownGL"] +- !private ["PSo16NSObjectProtocol", "text"] +- ["PSo16NSObjectProtocol", "textField"] +- ["PSo16NSObjectProtocol", "textFieldDidBeginEditing"] +- ["PSo16NSObjectProtocol", "textFieldDidEndEditing"] +- ["PSo16NSObjectProtocol", "textFieldShouldBeginEditing"] +- ["PSo16NSObjectProtocol", "textFieldShouldClear"] +- ["PSo16NSObjectProtocol", "textFieldShouldEndEditing"] +- ["PSo16NSObjectProtocol", "textFieldShouldReturn"] +- !private ["PSo16NSObjectProtocol", "timeSinceLastUpdate"] +- ["PSo16NSObjectProtocol", "update"] +- !private ["PSo16NSObjectProtocol", "view"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["VCSo14NSNotification4Name", "RawValue"] +- !private ["VCSo14NSNotification4Name", "UITextFieldTextDidChange"] +- ["VCSo14NSNotification4Name", "deinit"] +- !private ["CSo18NotificationCenter", "addObserver"] +- !private ["CSo18NotificationCenter", "default"] +- ["CSo18NotificationCenter", "deinit"] +- !private ["Ps9OptionSet", "Element"] +- !private ["Ps9OptionSet", "landscapeLeft"] +- !private ["Ps9OptionSet", "landscapeRight"] +- !private ["Sq", "UITextFieldTextDidChange"] +- ["Sq", "deinit"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "UITextFieldTextDidChange"] +- !private ["Ps16RawRepresentable", "format24"] +- !private ["Ps16RawRepresentable", "landscapeLeft"] +- !private ["Ps16RawRepresentable", "landscapeRight"] +- !private ["Ps16RawRepresentable", "no"] +- !private ["Ps16RawRepresentable", "openGLES2"] +- ["V10ObjectiveC8Selector", "deinit"] +- !private ["Ps10SetAlgebra", "Element"] +- !private ["Ps10SetAlgebra", "landscapeLeft"] +- !private ["Ps10SetAlgebra", "landscapeRight"] +- !private ["Ps13SignedInteger", "init"] +- !private ["Ps12SignedNumber", "init"] +- !private ["Ps10Strideable", "init"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps16TextOutputStream", "init"] +- !private ["Ps20TextOutputStreamable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "addGestureRecognizer"] +- !private ["PSo29UIAccessibilityIdentification", "addSubview"] +- !private ["PSo29UIAccessibilityIdentification", "autocorrectionType"] +- !private ["PSo29UIAccessibilityIdentification", "context"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "drawableDepthFormat"] +- !private ["PSo29UIAccessibilityIdentification", "init"] +- !private ["PSo29UIAccessibilityIdentification", "isMultipleTouchEnabled"] +- !private ["PSo29UIAccessibilityIdentification", "resignFirstResponder"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo12UIAppearance", "addGestureRecognizer"] +- !private ["PSo12UIAppearance", "addSubview"] +- !private ["PSo12UIAppearance", "autocorrectionType"] +- !private ["PSo12UIAppearance", "context"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "drawableDepthFormat"] +- !private ["PSo12UIAppearance", "init"] +- !private ["PSo12UIAppearance", "isMultipleTouchEnabled"] +- !private ["PSo12UIAppearance", "resignFirstResponder"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo21UIAppearanceContainer", "CGRect"] +- !private ["PSo21UIAppearanceContainer", "CustomAppInit"] +- !private ["PSo21UIAppearanceContainer", "EAGLContext"] +- !private ["PSo21UIAppearanceContainer", "Float"] +- !private ["PSo21UIAppearanceContainer", "Int32"] +- !private ["PSo21UIAppearanceContainer", "NotificationCenter"] +- !private ["PSo21UIAppearanceContainer", "SE_AppDeinit"] +- !private ["PSo21UIAppearanceContainer", "SE_AppDraw"] +- !private ["PSo21UIAppearanceContainer", "SE_AppOnScale"] +- !private ["PSo21UIAppearanceContainer", "SE_AppUpdate"] +- !private ["PSo21UIAppearanceContainer", "SE_OnKeyboardHide"] +- !private ["PSo21UIAppearanceContainer", "SE_SetKeyboardText"] +- !private ["PSo21UIAppearanceContainer", "UIPinchGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "UITextField"] +- !private ["PSo21UIAppearanceContainer", "addGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "addSubview"] +- ["PSo21UIAppearanceContainer", "appInitCaller"] +- !private ["PSo21UIAppearanceContainer", "autocorrectionType"] +- ["PSo21UIAppearanceContainer", "context"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "drawableDepthFormat"] +- ["PSo21UIAppearanceContainer", "effect"] +- ["PSo21UIAppearanceContainer", "glkView"] +- ["PSo21UIAppearanceContainer", "hiddenTextField"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "isMultipleTouchEnabled"] +- ["PSo21UIAppearanceContainer", "onReceiveKeyboardNotification"] +- !private ["PSo21UIAppearanceContainer", "print"] +- !private ["PSo21UIAppearanceContainer", "resignFirstResponder"] +- ["PSo21UIAppearanceContainer", "respondToPinch"] +- ["PSo21UIAppearanceContainer", "setupGL"] +- ["PSo21UIAppearanceContainer", "supportedInterfaceOrientations"] +- ["PSo21UIAppearanceContainer", "tearDownGL"] +- !private ["PSo21UIAppearanceContainer", "text"] +- ["PSo21UIAppearanceContainer", "textField"] +- ["PSo21UIAppearanceContainer", "textFieldDidBeginEditing"] +- ["PSo21UIAppearanceContainer", "textFieldDidEndEditing"] +- ["PSo21UIAppearanceContainer", "textFieldShouldBeginEditing"] +- ["PSo21UIAppearanceContainer", "textFieldShouldClear"] +- ["PSo21UIAppearanceContainer", "textFieldShouldEndEditing"] +- ["PSo21UIAppearanceContainer", "textFieldShouldReturn"] +- !private ["PSo21UIAppearanceContainer", "timeSinceLastUpdate"] +- ["PSo21UIAppearanceContainer", "update"] +- !private ["PSo21UIAppearanceContainer", "view"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo18UIContentContainer", "CGRect"] +- !private ["PSo18UIContentContainer", "CustomAppInit"] +- !private ["PSo18UIContentContainer", "EAGLContext"] +- !private ["PSo18UIContentContainer", "Float"] +- !private ["PSo18UIContentContainer", "Int32"] +- !private ["PSo18UIContentContainer", "NotificationCenter"] +- !private ["PSo18UIContentContainer", "SE_AppDeinit"] +- !private ["PSo18UIContentContainer", "SE_AppDraw"] +- !private ["PSo18UIContentContainer", "SE_AppOnScale"] +- !private ["PSo18UIContentContainer", "SE_AppUpdate"] +- !private ["PSo18UIContentContainer", "SE_OnKeyboardHide"] +- !private ["PSo18UIContentContainer", "SE_SetKeyboardText"] +- !private ["PSo18UIContentContainer", "UIPinchGestureRecognizer"] +- !private ["PSo18UIContentContainer", "UITextField"] +- ["PSo18UIContentContainer", "appInitCaller"] +- ["PSo18UIContentContainer", "context"] +- ["PSo18UIContentContainer", "effect"] +- ["PSo18UIContentContainer", "glkView"] +- ["PSo18UIContentContainer", "hiddenTextField"] +- !private ["PSo18UIContentContainer", "init"] +- ["PSo18UIContentContainer", "onReceiveKeyboardNotification"] +- !private ["PSo18UIContentContainer", "print"] +- ["PSo18UIContentContainer", "respondToPinch"] +- ["PSo18UIContentContainer", "setupGL"] +- ["PSo18UIContentContainer", "supportedInterfaceOrientations"] +- ["PSo18UIContentContainer", "tearDownGL"] +- ["PSo18UIContentContainer", "textField"] +- ["PSo18UIContentContainer", "textFieldDidBeginEditing"] +- ["PSo18UIContentContainer", "textFieldDidEndEditing"] +- ["PSo18UIContentContainer", "textFieldShouldBeginEditing"] +- ["PSo18UIContentContainer", "textFieldShouldClear"] +- ["PSo18UIContentContainer", "textFieldShouldEndEditing"] +- ["PSo18UIContentContainer", "textFieldShouldReturn"] +- !private ["PSo18UIContentContainer", "timeSinceLastUpdate"] +- ["PSo18UIContentContainer", "update"] +- !private ["PSo18UIContentContainer", "view"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo30UIContentSizeCategoryAdjusting", "autocorrectionType"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "delegate"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "init"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "resignFirstResponder"] +- !private ["PSo30UIContentSizeCategoryAdjusting", "text"] +- !private ["CSo9UIControl", "autocorrectionType"] +- !private ["CSo9UIControl", "delegate"] +- !private ["CSo9UIControl", "init"] +- !private ["CSo9UIControl", "resignFirstResponder"] +- !private ["CSo9UIControl", "text"] +- !private ["PSo17UICoordinateSpace", "addGestureRecognizer"] +- !private ["PSo17UICoordinateSpace", "addSubview"] +- !private ["PSo17UICoordinateSpace", "autocorrectionType"] +- !private ["PSo17UICoordinateSpace", "context"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "drawableDepthFormat"] +- !private ["PSo17UICoordinateSpace", "init"] +- !private ["PSo17UICoordinateSpace", "isMultipleTouchEnabled"] +- !private ["PSo17UICoordinateSpace", "resignFirstResponder"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo13UIDynamicItem", "addGestureRecognizer"] +- !private ["PSo13UIDynamicItem", "addSubview"] +- !private ["PSo13UIDynamicItem", "autocorrectionType"] +- !private ["PSo13UIDynamicItem", "context"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "drawableDepthFormat"] +- !private ["PSo13UIDynamicItem", "init"] +- !private ["PSo13UIDynamicItem", "isMultipleTouchEnabled"] +- !private ["PSo13UIDynamicItem", "resignFirstResponder"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo18UIFocusEnvironment", "CGRect"] +- !private ["PSo18UIFocusEnvironment", "CustomAppInit"] +- !private ["PSo18UIFocusEnvironment", "EAGLContext"] +- !private ["PSo18UIFocusEnvironment", "Float"] +- !private ["PSo18UIFocusEnvironment", "Int32"] +- !private ["PSo18UIFocusEnvironment", "NotificationCenter"] +- !private ["PSo18UIFocusEnvironment", "SE_AppDeinit"] +- !private ["PSo18UIFocusEnvironment", "SE_AppDraw"] +- !private ["PSo18UIFocusEnvironment", "SE_AppOnScale"] +- !private ["PSo18UIFocusEnvironment", "SE_AppUpdate"] +- !private ["PSo18UIFocusEnvironment", "SE_OnKeyboardHide"] +- !private ["PSo18UIFocusEnvironment", "SE_SetKeyboardText"] +- !private ["PSo18UIFocusEnvironment", "UIPinchGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "UITextField"] +- !private ["PSo18UIFocusEnvironment", "addGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "addSubview"] +- ["PSo18UIFocusEnvironment", "appInitCaller"] +- !private ["PSo18UIFocusEnvironment", "autocorrectionType"] +- ["PSo18UIFocusEnvironment", "context"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "drawableDepthFormat"] +- ["PSo18UIFocusEnvironment", "effect"] +- ["PSo18UIFocusEnvironment", "glkView"] +- ["PSo18UIFocusEnvironment", "hiddenTextField"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UIFocusEnvironment", "onReceiveKeyboardNotification"] +- !private ["PSo18UIFocusEnvironment", "print"] +- !private ["PSo18UIFocusEnvironment", "resignFirstResponder"] +- ["PSo18UIFocusEnvironment", "respondToPinch"] +- ["PSo18UIFocusEnvironment", "setupGL"] +- ["PSo18UIFocusEnvironment", "supportedInterfaceOrientations"] +- ["PSo18UIFocusEnvironment", "tearDownGL"] +- !private ["PSo18UIFocusEnvironment", "text"] +- ["PSo18UIFocusEnvironment", "textField"] +- ["PSo18UIFocusEnvironment", "textFieldDidBeginEditing"] +- ["PSo18UIFocusEnvironment", "textFieldDidEndEditing"] +- ["PSo18UIFocusEnvironment", "textFieldShouldBeginEditing"] +- ["PSo18UIFocusEnvironment", "textFieldShouldClear"] +- ["PSo18UIFocusEnvironment", "textFieldShouldEndEditing"] +- ["PSo18UIFocusEnvironment", "textFieldShouldReturn"] +- !private ["PSo18UIFocusEnvironment", "timeSinceLastUpdate"] +- ["PSo18UIFocusEnvironment", "update"] +- !private ["PSo18UIFocusEnvironment", "view"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo11UIFocusItem", "addGestureRecognizer"] +- !private ["PSo11UIFocusItem", "addSubview"] +- !private ["PSo11UIFocusItem", "autocorrectionType"] +- !private ["PSo11UIFocusItem", "context"] +- !private ["PSo11UIFocusItem", "delegate"] +- !private ["PSo11UIFocusItem", "drawableDepthFormat"] +- !private ["PSo11UIFocusItem", "init"] +- !private ["PSo11UIFocusItem", "isMultipleTouchEnabled"] +- !private ["PSo11UIFocusItem", "resignFirstResponder"] +- !private ["PSo11UIFocusItem", "text"] +- !private ["CSo19UIGestureRecognizer", "delaysTouchesEnded"] +- !private ["CSo19UIGestureRecognizer", "init"] +- !private ["CSo19UIGestureRecognizer", "scale"] +- !private ["VSC26UIInterfaceOrientationMask", "Element"] +- ["VSC26UIInterfaceOrientationMask", "deinit"] +- !private ["VSC26UIInterfaceOrientationMask", "landscapeLeft"] +- !private ["VSC26UIInterfaceOrientationMask", "landscapeRight"] +- !private ["PSo10UIKeyInput", "autocorrectionType"] +- !private ["PSo10UIKeyInput", "delegate"] +- !private ["PSo10UIKeyInput", "init"] +- !private ["PSo10UIKeyInput", "resignFirstResponder"] +- !private ["PSo10UIKeyInput", "text"] +- ["CSo24UIPinchGestureRecognizer", "deinit"] +- !private ["CSo24UIPinchGestureRecognizer", "delaysTouchesEnded"] +- !private ["CSo24UIPinchGestureRecognizer", "init"] +- !private ["CSo24UIPinchGestureRecognizer", "scale"] +- ["CSo11UIResponder", "Bool"] +- ["CSo11UIResponder", "CGRect"] +- !private ["CSo11UIResponder", "CustomAppInit"] +- ["CSo11UIResponder", "EAGLContext"] +- !private ["CSo11UIResponder", "Float"] +- ["CSo11UIResponder", "GLKBaseEffect"] +- ["CSo11UIResponder", "GLKView"] +- !private ["CSo11UIResponder", "Int32"] +- ["CSo11UIResponder", "NSNotification"] +- ["CSo11UIResponder", "NSRange"] +- !private ["CSo11UIResponder", "NotificationCenter"] +- !private ["CSo11UIResponder", "SE_AppDeinit"] +- !private ["CSo11UIResponder", "SE_AppDraw"] +- !private ["CSo11UIResponder", "SE_AppOnScale"] +- !private ["CSo11UIResponder", "SE_AppUpdate"] +- !private ["CSo11UIResponder", "SE_OnKeyboardHide"] +- !private ["CSo11UIResponder", "SE_SetKeyboardText"] +- ["CSo11UIResponder", "String"] +- ["CSo11UIResponder", "UIInterfaceOrientationMask"] +- ["CSo11UIResponder", "UIPinchGestureRecognizer"] +- ["CSo11UIResponder", "UITextField"] +- !private ["CSo11UIResponder", "addGestureRecognizer"] +- !private ["CSo11UIResponder", "addSubview"] +- ["CSo11UIResponder", "appInitCaller"] +- !private ["CSo11UIResponder", "autocorrectionType"] +- ["CSo11UIResponder", "context"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "drawableDepthFormat"] +- ["CSo11UIResponder", "effect"] +- ["CSo11UIResponder", "glkView"] +- ["CSo11UIResponder", "hiddenTextField"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "isMultipleTouchEnabled"] +- ["CSo11UIResponder", "onReceiveKeyboardNotification"] +- !private ["CSo11UIResponder", "print"] +- !private ["CSo11UIResponder", "resignFirstResponder"] +- ["CSo11UIResponder", "respondToPinch"] +- ["CSo11UIResponder", "setupGL"] +- ["CSo11UIResponder", "supportedInterfaceOrientations"] +- ["CSo11UIResponder", "tearDownGL"] +- !private ["CSo11UIResponder", "text"] +- ["CSo11UIResponder", "textField"] +- ["CSo11UIResponder", "textFieldDidBeginEditing"] +- ["CSo11UIResponder", "textFieldDidEndEditing"] +- ["CSo11UIResponder", "textFieldShouldBeginEditing"] +- ["CSo11UIResponder", "textFieldShouldClear"] +- ["CSo11UIResponder", "textFieldShouldEndEditing"] +- ["CSo11UIResponder", "textFieldShouldReturn"] +- !private ["CSo11UIResponder", "timeSinceLastUpdate"] +- ["CSo11UIResponder", "update"] +- !private ["CSo11UIResponder", "view"] +- ["CSo11UIResponder", "viewDidLoad"] +- !private ["PSo30UIResponderStandardEditActions", "CGRect"] +- !private ["PSo30UIResponderStandardEditActions", "CustomAppInit"] +- !private ["PSo30UIResponderStandardEditActions", "EAGLContext"] +- !private ["PSo30UIResponderStandardEditActions", "Float"] +- !private ["PSo30UIResponderStandardEditActions", "Int32"] +- !private ["PSo30UIResponderStandardEditActions", "NotificationCenter"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppDeinit"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppDraw"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppOnScale"] +- !private ["PSo30UIResponderStandardEditActions", "SE_AppUpdate"] +- !private ["PSo30UIResponderStandardEditActions", "SE_OnKeyboardHide"] +- !private ["PSo30UIResponderStandardEditActions", "SE_SetKeyboardText"] +- !private ["PSo30UIResponderStandardEditActions", "UIPinchGestureRecognizer"] +- !private ["PSo30UIResponderStandardEditActions", "UITextField"] +- !private ["PSo30UIResponderStandardEditActions", "addGestureRecognizer"] +- !private ["PSo30UIResponderStandardEditActions", "addSubview"] +- ["PSo30UIResponderStandardEditActions", "appInitCaller"] +- !private ["PSo30UIResponderStandardEditActions", "autocorrectionType"] +- ["PSo30UIResponderStandardEditActions", "context"] +- !private ["PSo30UIResponderStandardEditActions", "delegate"] +- !private ["PSo30UIResponderStandardEditActions", "drawableDepthFormat"] +- ["PSo30UIResponderStandardEditActions", "effect"] +- ["PSo30UIResponderStandardEditActions", "glkView"] +- ["PSo30UIResponderStandardEditActions", "hiddenTextField"] +- !private ["PSo30UIResponderStandardEditActions", "init"] +- !private ["PSo30UIResponderStandardEditActions", "isMultipleTouchEnabled"] +- ["PSo30UIResponderStandardEditActions", "onReceiveKeyboardNotification"] +- !private ["PSo30UIResponderStandardEditActions", "print"] +- !private ["PSo30UIResponderStandardEditActions", "resignFirstResponder"] +- ["PSo30UIResponderStandardEditActions", "respondToPinch"] +- ["PSo30UIResponderStandardEditActions", "setupGL"] +- ["PSo30UIResponderStandardEditActions", "supportedInterfaceOrientations"] +- ["PSo30UIResponderStandardEditActions", "tearDownGL"] +- !private ["PSo30UIResponderStandardEditActions", "text"] +- ["PSo30UIResponderStandardEditActions", "textField"] +- ["PSo30UIResponderStandardEditActions", "textFieldDidBeginEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldDidEndEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldBeginEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldClear"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldEndEditing"] +- ["PSo30UIResponderStandardEditActions", "textFieldShouldReturn"] +- !private ["PSo30UIResponderStandardEditActions", "timeSinceLastUpdate"] +- ["PSo30UIResponderStandardEditActions", "update"] +- !private ["PSo30UIResponderStandardEditActions", "view"] +- ["PSo30UIResponderStandardEditActions", "viewDidLoad"] +- ["PSo30UIResponderStandardEditActions", ""] +- !private ["PSo16UIStateRestoring", "CGRect"] +- !private ["PSo16UIStateRestoring", "CustomAppInit"] +- !private ["PSo16UIStateRestoring", "EAGLContext"] +- !private ["PSo16UIStateRestoring", "Float"] +- !private ["PSo16UIStateRestoring", "Int32"] +- !private ["PSo16UIStateRestoring", "NotificationCenter"] +- !private ["PSo16UIStateRestoring", "SE_AppDeinit"] +- !private ["PSo16UIStateRestoring", "SE_AppDraw"] +- !private ["PSo16UIStateRestoring", "SE_AppOnScale"] +- !private ["PSo16UIStateRestoring", "SE_AppUpdate"] +- !private ["PSo16UIStateRestoring", "SE_OnKeyboardHide"] +- !private ["PSo16UIStateRestoring", "SE_SetKeyboardText"] +- !private ["PSo16UIStateRestoring", "UIPinchGestureRecognizer"] +- !private ["PSo16UIStateRestoring", "UITextField"] +- ["PSo16UIStateRestoring", "appInitCaller"] +- ["PSo16UIStateRestoring", "context"] +- ["PSo16UIStateRestoring", "effect"] +- ["PSo16UIStateRestoring", "glkView"] +- ["PSo16UIStateRestoring", "hiddenTextField"] +- !private ["PSo16UIStateRestoring", "init"] +- ["PSo16UIStateRestoring", "onReceiveKeyboardNotification"] +- !private ["PSo16UIStateRestoring", "print"] +- ["PSo16UIStateRestoring", "respondToPinch"] +- ["PSo16UIStateRestoring", "setupGL"] +- ["PSo16UIStateRestoring", "supportedInterfaceOrientations"] +- ["PSo16UIStateRestoring", "tearDownGL"] +- ["PSo16UIStateRestoring", "textField"] +- ["PSo16UIStateRestoring", "textFieldDidBeginEditing"] +- ["PSo16UIStateRestoring", "textFieldDidEndEditing"] +- ["PSo16UIStateRestoring", "textFieldShouldBeginEditing"] +- ["PSo16UIStateRestoring", "textFieldShouldClear"] +- ["PSo16UIStateRestoring", "textFieldShouldEndEditing"] +- ["PSo16UIStateRestoring", "textFieldShouldReturn"] +- !private ["PSo16UIStateRestoring", "timeSinceLastUpdate"] +- ["PSo16UIStateRestoring", "update"] +- !private ["PSo16UIStateRestoring", "view"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", ""] +- ["OSC24UITextAutocorrectionType", "deinit"] +- !private ["OSC24UITextAutocorrectionType", "no"] +- !private ["CSo11UITextField", "autocorrectionType"] +- ["CSo11UITextField", "deinit"] +- !private ["CSo11UITextField", "delegate"] +- !private ["CSo11UITextField", "init"] +- !private ["CSo11UITextField", "resignFirstResponder"] +- !private ["CSo11UITextField", "text"] +- !private ["PSo19UITextFieldDelegate", "CGRect"] +- !private ["PSo19UITextFieldDelegate", "CustomAppInit"] +- !private ["PSo19UITextFieldDelegate", "EAGLContext"] +- !private ["PSo19UITextFieldDelegate", "Float"] +- !private ["PSo19UITextFieldDelegate", "Int32"] +- !private ["PSo19UITextFieldDelegate", "NotificationCenter"] +- !private ["PSo19UITextFieldDelegate", "SE_AppDeinit"] +- !private ["PSo19UITextFieldDelegate", "SE_AppDraw"] +- !private ["PSo19UITextFieldDelegate", "SE_AppOnScale"] +- !private ["PSo19UITextFieldDelegate", "SE_AppUpdate"] +- !private ["PSo19UITextFieldDelegate", "SE_OnKeyboardHide"] +- !private ["PSo19UITextFieldDelegate", "SE_SetKeyboardText"] +- !private ["PSo19UITextFieldDelegate", "UIPinchGestureRecognizer"] +- !private ["PSo19UITextFieldDelegate", "UITextField"] +- ["PSo19UITextFieldDelegate", "appInitCaller"] +- !private ["PSo19UITextFieldDelegate", "context"] +- !private ["PSo19UITextFieldDelegate", "hiddenTextField"] +- !private ["PSo19UITextFieldDelegate", "init"] +- !private ["PSo19UITextFieldDelegate", "onReceiveKeyboardNotification"] +- !private ["PSo19UITextFieldDelegate", "print"] +- !private ["PSo19UITextFieldDelegate", "respondToPinch"] +- !private ["PSo19UITextFieldDelegate", "setupGL"] +- ["PSo19UITextFieldDelegate", "supportedInterfaceOrientations"] +- !private ["PSo19UITextFieldDelegate", "tearDownGL"] +- ["PSo19UITextFieldDelegate", "textField"] +- ["PSo19UITextFieldDelegate", "textFieldDidBeginEditing"] +- ["PSo19UITextFieldDelegate", "textFieldDidEndEditing"] +- ["PSo19UITextFieldDelegate", "textFieldShouldBeginEditing"] +- ["PSo19UITextFieldDelegate", "textFieldShouldClear"] +- ["PSo19UITextFieldDelegate", "textFieldShouldEndEditing"] +- ["PSo19UITextFieldDelegate", "textFieldShouldReturn"] +- !private ["PSo19UITextFieldDelegate", "timeSinceLastUpdate"] +- !private ["PSo19UITextFieldDelegate", "view"] +- ["PSo19UITextFieldDelegate", ""] +- !private ["PSo11UITextInput", "autocorrectionType"] +- !private ["PSo11UITextInput", "delegate"] +- !private ["PSo11UITextInput", "init"] +- !private ["PSo11UITextInput", "resignFirstResponder"] +- !private ["PSo11UITextInput", "text"] +- !private ["PSo17UITextInputTraits", "autocorrectionType"] +- !private ["PSo17UITextInputTraits", "delegate"] +- !private ["PSo17UITextInputTraits", "init"] +- !private ["PSo17UITextInputTraits", "resignFirstResponder"] +- !private ["PSo17UITextInputTraits", "text"] +- !private ["PSo18UITraitEnvironment", "CGRect"] +- !private ["PSo18UITraitEnvironment", "CustomAppInit"] +- !private ["PSo18UITraitEnvironment", "EAGLContext"] +- !private ["PSo18UITraitEnvironment", "Float"] +- !private ["PSo18UITraitEnvironment", "Int32"] +- !private ["PSo18UITraitEnvironment", "NotificationCenter"] +- !private ["PSo18UITraitEnvironment", "SE_AppDeinit"] +- !private ["PSo18UITraitEnvironment", "SE_AppDraw"] +- !private ["PSo18UITraitEnvironment", "SE_AppOnScale"] +- !private ["PSo18UITraitEnvironment", "SE_AppUpdate"] +- !private ["PSo18UITraitEnvironment", "SE_OnKeyboardHide"] +- !private ["PSo18UITraitEnvironment", "SE_SetKeyboardText"] +- !private ["PSo18UITraitEnvironment", "UIPinchGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "UITextField"] +- !private ["PSo18UITraitEnvironment", "addGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "addSubview"] +- ["PSo18UITraitEnvironment", "appInitCaller"] +- !private ["PSo18UITraitEnvironment", "autocorrectionType"] +- ["PSo18UITraitEnvironment", "context"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "drawableDepthFormat"] +- ["PSo18UITraitEnvironment", "effect"] +- ["PSo18UITraitEnvironment", "glkView"] +- ["PSo18UITraitEnvironment", "hiddenTextField"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "isMultipleTouchEnabled"] +- ["PSo18UITraitEnvironment", "onReceiveKeyboardNotification"] +- !private ["PSo18UITraitEnvironment", "print"] +- !private ["PSo18UITraitEnvironment", "resignFirstResponder"] +- ["PSo18UITraitEnvironment", "respondToPinch"] +- ["PSo18UITraitEnvironment", "setupGL"] +- ["PSo18UITraitEnvironment", "supportedInterfaceOrientations"] +- ["PSo18UITraitEnvironment", "tearDownGL"] +- !private ["PSo18UITraitEnvironment", "text"] +- ["PSo18UITraitEnvironment", "textField"] +- ["PSo18UITraitEnvironment", "textFieldDidBeginEditing"] +- ["PSo18UITraitEnvironment", "textFieldDidEndEditing"] +- ["PSo18UITraitEnvironment", "textFieldShouldBeginEditing"] +- ["PSo18UITraitEnvironment", "textFieldShouldClear"] +- ["PSo18UITraitEnvironment", "textFieldShouldEndEditing"] +- ["PSo18UITraitEnvironment", "textFieldShouldReturn"] +- !private ["PSo18UITraitEnvironment", "timeSinceLastUpdate"] +- ["PSo18UITraitEnvironment", "update"] +- !private ["PSo18UITraitEnvironment", "view"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "addGestureRecognizer"] +- !private ["CSo6UIView", "addSubview"] +- !private ["CSo6UIView", "autocorrectionType"] +- !private ["CSo6UIView", "context"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "drawableDepthFormat"] +- !private ["CSo6UIView", "init"] +- !private ["CSo6UIView", "isMultipleTouchEnabled"] +- !private ["CSo6UIView", "resignFirstResponder"] +- !private ["CSo6UIView", "text"] +- ["CSo16UIViewController", "Bool"] +- ["CSo16UIViewController", "CGRect"] +- !private ["CSo16UIViewController", "CustomAppInit"] +- ["CSo16UIViewController", "EAGLContext"] +- !private ["CSo16UIViewController", "Float"] +- ["CSo16UIViewController", "GLKBaseEffect"] +- ["CSo16UIViewController", "GLKView"] +- !private ["CSo16UIViewController", "Int32"] +- ["CSo16UIViewController", "NSNotification"] +- ["CSo16UIViewController", "NSRange"] +- !private ["CSo16UIViewController", "NotificationCenter"] +- !private ["CSo16UIViewController", "SE_AppDeinit"] +- !private ["CSo16UIViewController", "SE_AppDraw"] +- !private ["CSo16UIViewController", "SE_AppOnScale"] +- !private ["CSo16UIViewController", "SE_AppUpdate"] +- !private ["CSo16UIViewController", "SE_OnKeyboardHide"] +- !private ["CSo16UIViewController", "SE_SetKeyboardText"] +- ["CSo16UIViewController", "String"] +- ["CSo16UIViewController", "UIInterfaceOrientationMask"] +- ["CSo16UIViewController", "UIPinchGestureRecognizer"] +- ["CSo16UIViewController", "UITextField"] +- ["CSo16UIViewController", "appInitCaller"] +- ["CSo16UIViewController", "context"] +- ["CSo16UIViewController", "effect"] +- ["CSo16UIViewController", "glkView"] +- ["CSo16UIViewController", "hiddenTextField"] +- ["CSo16UIViewController", "init"] +- ["CSo16UIViewController", "onReceiveKeyboardNotification"] +- !private ["CSo16UIViewController", "print"] +- ["CSo16UIViewController", "respondToPinch"] +- ["CSo16UIViewController", "setupGL"] +- ["CSo16UIViewController", "supportedInterfaceOrientations"] +- ["CSo16UIViewController", "tearDownGL"] +- ["CSo16UIViewController", "textField"] +- ["CSo16UIViewController", "textFieldDidBeginEditing"] +- ["CSo16UIViewController", "textFieldDidEndEditing"] +- ["CSo16UIViewController", "textFieldShouldBeginEditing"] +- ["CSo16UIViewController", "textFieldShouldClear"] +- ["CSo16UIViewController", "textFieldShouldEndEditing"] +- ["CSo16UIViewController", "textFieldShouldReturn"] +- !private ["CSo16UIViewController", "timeSinceLastUpdate"] +- ["CSo16UIViewController", "update"] +- !private ["CSo16UIViewController", "view"] +- ["CSo16UIViewController", "viewDidLoad"] +- !private ["C14salmontemplate14ViewController", "CustomAppInit"] +- ["C14salmontemplate14ViewController", "UIInterfaceOrientationMask"] +- ["C14salmontemplate14ViewController", "appInitCaller"] +- ["C14salmontemplate14ViewController", "deinit"] +- ["C14salmontemplate14ViewController", "init"] +- ["C14salmontemplate14ViewController", "supportedInterfaceOrientations"] +- ["C14salmontemplate22ViewControllerTemplate", "Bool"] +- ["C14salmontemplate22ViewControllerTemplate", "CGRect"] +- !private ["C14salmontemplate22ViewControllerTemplate", "CustomAppInit"] +- ["C14salmontemplate22ViewControllerTemplate", "EAGLContext"] +- !private ["C14salmontemplate22ViewControllerTemplate", "Float"] +- ["C14salmontemplate22ViewControllerTemplate", "GLKBaseEffect"] +- ["C14salmontemplate22ViewControllerTemplate", "GLKView"] +- !private ["C14salmontemplate22ViewControllerTemplate", "Int32"] +- ["C14salmontemplate22ViewControllerTemplate", "NSNotification"] +- ["C14salmontemplate22ViewControllerTemplate", "NSRange"] +- !private ["C14salmontemplate22ViewControllerTemplate", "NotificationCenter"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppDeinit"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppDraw"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppOnScale"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_AppUpdate"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_OnKeyboardHide"] +- !private ["C14salmontemplate22ViewControllerTemplate", "SE_SetKeyboardText"] +- ["C14salmontemplate22ViewControllerTemplate", "String"] +- ["C14salmontemplate22ViewControllerTemplate", "UIInterfaceOrientationMask"] +- ["C14salmontemplate22ViewControllerTemplate", "UIPinchGestureRecognizer"] +- ["C14salmontemplate22ViewControllerTemplate", "UITextField"] +- ["C14salmontemplate22ViewControllerTemplate", "appInitCaller"] +- !private ["C14salmontemplate22ViewControllerTemplate", "context"] +- ["C14salmontemplate22ViewControllerTemplate", "deinit"] +- !private ["C14salmontemplate22ViewControllerTemplate", "effect"] +- ["C14salmontemplate22ViewControllerTemplate", "glkView"] +- ["C14salmontemplate22ViewControllerTemplate", "hiddenTextField"] +- ["C14salmontemplate22ViewControllerTemplate", "init"] +- ["C14salmontemplate22ViewControllerTemplate", "onReceiveKeyboardNotification"] +- !private ["C14salmontemplate22ViewControllerTemplate", "print"] +- ["C14salmontemplate22ViewControllerTemplate", "respondToPinch"] +- ["C14salmontemplate22ViewControllerTemplate", "setupGL"] +- ["C14salmontemplate22ViewControllerTemplate", "supportedInterfaceOrientations"] +- ["C14salmontemplate22ViewControllerTemplate", "tearDownGL"] +- ["C14salmontemplate22ViewControllerTemplate", "textField"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldDidBeginEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldDidEndEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldBeginEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldClear"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldEndEditing"] +- ["C14salmontemplate22ViewControllerTemplate", "textFieldShouldReturn"] +- !private ["C14salmontemplate22ViewControllerTemplate", "timeSinceLastUpdate"] +- ["C14salmontemplate22ViewControllerTemplate", "update"] +- !private ["C14salmontemplate22ViewControllerTemplate", "view"] +- ["C14salmontemplate22ViewControllerTemplate", "viewDidLoad"] +- ["C14salmontemplate22ViewControllerTemplate", ""] +- !private ["Ps15_CVarArgAligned", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "addGestureRecognizer"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "addSubview"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "autocorrectionType"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "context"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "delegate"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "drawableDepthFormat"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "init"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "isMultipleTouchEnabled"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "resignFirstResponder"] +- !private ["Ps37_DefaultCustomPlaygroundQuickLookable", "text"] +- !private ["Ps35_ExpressibleByBuiltinBooleanLiteral", "_getBuiltinLogicValue"] +- !private ["Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", "init"] +- !private ["Ps33_ExpressibleByBuiltinFloatLiteral", "init"] +- !private ["Ps35_ExpressibleByBuiltinIntegerLiteral", "init"] +- !private ["Ps34_ExpressibleByBuiltinStringLiteral", "init"] +- !private ["Ps39_ExpressibleByBuiltinUTF16StringLiteral", "init"] +- !private ["Ps41_ExpressibleByBuiltinUnicodeScalarLiteral", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "init"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "name"] +- !private ["Ps35_HasCustomAnyHashableRepresentation", "object"] +- !private ["Ps9_Hashable", "CGRect"] +- !private ["Ps9_Hashable", "CustomAppInit"] +- !private ["Ps9_Hashable", "EAGLContext"] +- !private ["Ps9_Hashable", "Float"] +- !private ["Ps9_Hashable", "Int32"] +- !private ["Ps9_Hashable", "NotificationCenter"] +- !private ["Ps9_Hashable", "RawValue"] +- !private ["Ps9_Hashable", "SE_AppDeinit"] +- !private ["Ps9_Hashable", "SE_AppDraw"] +- !private ["Ps9_Hashable", "SE_AppOnScale"] +- !private ["Ps9_Hashable", "SE_AppUpdate"] +- !private ["Ps9_Hashable", "SE_OnKeyboardHide"] +- !private ["Ps9_Hashable", "SE_SetKeyboardText"] +- !private ["Ps9_Hashable", "UIPinchGestureRecognizer"] +- !private ["Ps9_Hashable", "UITextField"] +- !private ["Ps9_Hashable", "UITextFieldTextDidChange"] +- !private ["Ps9_Hashable", "_getBuiltinLogicValue"] +- !private ["Ps9_Hashable", "addGestureRecognizer"] +- !private ["Ps9_Hashable", "addObserver"] +- !private ["Ps9_Hashable", "addSubview"] +- ["Ps9_Hashable", "appInitCaller"] +- !private ["Ps9_Hashable", "autocorrectionType"] +- ["Ps9_Hashable", "context"] +- !private ["Ps9_Hashable", "default"] +- !private ["Ps9_Hashable", "delaysTouchesEnded"] +- !private ["Ps9_Hashable", "delegate"] +- !private ["Ps9_Hashable", "drawableDepthFormat"] +- ["Ps9_Hashable", "effect"] +- !private ["Ps9_Hashable", "format24"] +- ["Ps9_Hashable", "glkView"] +- ["Ps9_Hashable", "hiddenTextField"] +- !private ["Ps9_Hashable", "init"] +- !private ["Ps9_Hashable", "isMultipleTouchEnabled"] +- !private ["Ps9_Hashable", "name"] +- !private ["Ps9_Hashable", "no"] +- !private ["Ps9_Hashable", "object"] +- ["Ps9_Hashable", "onReceiveKeyboardNotification"] +- !private ["Ps9_Hashable", "openGLES2"] +- !private ["Ps9_Hashable", "print"] +- !private ["Ps9_Hashable", "resignFirstResponder"] +- ["Ps9_Hashable", "respondToPinch"] +- !private ["Ps9_Hashable", "scale"] +- !private ["Ps9_Hashable", "setCurrent"] +- ["Ps9_Hashable", "setupGL"] +- ["Ps9_Hashable", "supportedInterfaceOrientations"] +- ["Ps9_Hashable", "tearDownGL"] +- !private ["Ps9_Hashable", "text"] +- ["Ps9_Hashable", "textField"] +- ["Ps9_Hashable", "textFieldDidBeginEditing"] +- ["Ps9_Hashable", "textFieldDidEndEditing"] +- ["Ps9_Hashable", "textFieldShouldBeginEditing"] +- ["Ps9_Hashable", "textFieldShouldClear"] +- ["Ps9_Hashable", "textFieldShouldEndEditing"] +- ["Ps9_Hashable", "textFieldShouldReturn"] +- !private ["Ps9_Hashable", "timeSinceLastUpdate"] +- ["Ps9_Hashable", "update"] +- !private ["Ps9_Hashable", "view"] +- ["Ps9_Hashable", "viewDidLoad"] +- ["Ps9_Hashable", ""] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps8_Integer", "init"] +- !private ["Ps18_IntegerArithmetic", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "RawValue"] +- !private ["Ps21_ObjectiveCBridgeable", "UITextFieldTextDidChange"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps14_SignedInteger", "init"] +- !private ["Ps11_Strideable", "init"] +- !private ["Ps20_SwiftNewtypeWrapper", "RawValue"] +- !private ["Ps20_SwiftNewtypeWrapper", "UITextFieldTextDidChange"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Ps19BinaryFloatingPoint" +- !private "Ps17BitwiseOperations" +- "Sb" +- !private "PSo15CALayerDelegate" +- "VSC6CGRect" +- "Ps7CVarArg" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- "Sd" +- "CSo11EAGLContext" +- "OSC16EAGLRenderingAPI" +- "Ps9Equatable" +- !private "Ps25ExpressibleByArrayLiteral" +- !private "Ps27ExpressibleByBooleanLiteral" +- !private "Ps43ExpressibleByExtendedGraphemeClusterLiteral" +- !private "Ps25ExpressibleByFloatLiteral" +- !private "Ps27ExpressibleByIntegerLiteral" +- !private "Ps23ExpressibleByNilLiteral" +- !private "Ps32ExpressibleByStringInterpolation" +- !private "Ps26ExpressibleByStringLiteral" +- !private "Ps33ExpressibleByUnicodeScalarLiteral" +- "Sf" +- !private "Ps13FloatingPoint" +- "CSo7GLKView" +- "CSo17GLKViewController" +- "PSo15GLKViewDelegate" +- "OSC26GLKViewDrawableDepthFormat" +- "Ps8Hashable" +- "SQ" +- "Si" +- "Vs5Int32" +- !private "Ps7Integer" +- !private "Ps17IntegerArithmetic" +- !private "Ps25LosslessStringConvertible" +- !private "Ps10MirrorPath" +- "CSo7NSCoder" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- "PSo26NSExtensionRequestHandling" +- !private "PSo16NSMutableCopying" +- "CSo14NSNotification" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "VCSo14NSNotification4Name" +- "CSo18NotificationCenter" +- !private "Ps9OptionSet" +- "Sq" +- !private "Ps16RawRepresentable" +- "V10ObjectiveC8Selector" +- !private "Ps10SetAlgebra" +- !private "Ps13SignedInteger" +- !private "Ps12SignedNumber" +- !private "Ps10Strideable" +- "SS" +- !private "Ps16TextOutputStream" +- !private "Ps20TextOutputStreamable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo18UIContentContainer" +- !private "PSo30UIContentSizeCategoryAdjusting" +- !private "CSo9UIControl" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo11UIFocusItem" +- !private "CSo19UIGestureRecognizer" +- "VSC26UIInterfaceOrientationMask" +- !private "PSo10UIKeyInput" +- "CSo24UIPinchGestureRecognizer" +- "CSo11UIResponder" +- "PSo30UIResponderStandardEditActions" +- "PSo16UIStateRestoring" +- "OSC24UITextAutocorrectionType" +- "CSo11UITextField" +- "PSo19UITextFieldDelegate" +- !private "PSo11UITextInput" +- !private "PSo17UITextInputTraits" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- "C14salmontemplate14ViewController" +- "C14salmontemplate22ViewControllerTemplate" +- !private "Ps15_CVarArgAligned" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps37_DefaultCustomPlaygroundQuickLookable" +- !private "Ps35_ExpressibleByBuiltinBooleanLiteral" +- !private "Ps51_ExpressibleByBuiltinExtendedGraphemeClusterLiteral" +- !private "Ps33_ExpressibleByBuiltinFloatLiteral" +- !private "Ps35_ExpressibleByBuiltinIntegerLiteral" +- !private "Ps34_ExpressibleByBuiltinStringLiteral" +- !private "Ps39_ExpressibleByBuiltinUTF16StringLiteral" +- !private "Ps41_ExpressibleByBuiltinUnicodeScalarLiteral" +- !private "Ps35_HasCustomAnyHashableRepresentation" +- "Ps9_Hashable" +- !private "Ps14_Incrementable" +- !private "Ps8_Integer" +- !private "Ps18_IntegerArithmetic" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps14_SignedInteger" +- !private "Ps11_Strideable" +- !private "Ps20_SwiftNewtypeWrapper" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/salmontemplate-Bridging-Header.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/SENamespaceWrapper.h" +- "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.h" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule" +interface-hash: "e0bf133d2159867f85ecdf14e7800dcd" diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftdoc new file mode 100644 index 0000000..342487f Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftmodule new file mode 100644 index 0000000..b856679 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController~partial.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.d new file mode 100644 index 0000000..8ba6b12 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.d @@ -0,0 +1,1655 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/creditscode.cpp \ + ../game/creditscode.h ../game/game_area_interface.h \ + ../../engine/include/Engine.h ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/menucode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.dia new file mode 100644 index 0000000..dd49319 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.o new file mode 100644 index 0000000..44c6f57 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.d new file mode 100644 index 0000000..6522a8a --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.d @@ -0,0 +1,1656 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/gamecode.cpp \ + ../game/gamecode.h ../../engine/include/Engine.h \ + ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h \ + ../game/game_area_interface.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/menucode.h ../game/creditscode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.dia new file mode 100644 index 0000000..83f7368 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.o new file mode 100644 index 0000000..40deea7 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.d new file mode 100644 index 0000000..2750847 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.d @@ -0,0 +1,1656 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ios_api.cpp \ + ../../engine/include/Engine.h ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/game_area_interface.h ../game/menucode.h \ + ../game/creditscode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.dia new file mode 100644 index 0000000..c81404e Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.o new file mode 100644 index 0000000..f795384 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.d new file mode 100644 index 0000000..3fa70e1 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.d @@ -0,0 +1,1655 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/loadingcode.cpp \ + ../game/loadingcode.h ../game/game_area_interface.h \ + ../../engine/include/Engine.h ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/menucode.h ../game/creditscode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.dia new file mode 100644 index 0000000..a0c9912 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.o new file mode 100644 index 0000000..692ce96 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.d new file mode 100644 index 0000000..bcf9a98 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.d @@ -0,0 +1,1654 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/main_code.cpp \ + ../game/main_code.h ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp ../../engine/include/Engine.h \ + ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h ../game/gamecode.h \ + ../game/game_area_interface.h ../game/menucode.h ../game/creditscode.h \ + ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.dia new file mode 100644 index 0000000..9debde4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.o new file mode 100644 index 0000000..4588501 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.d b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.d new file mode 100644 index 0000000..da498d7 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.d @@ -0,0 +1,1656 @@ +dependencies: \ + /Users/robertkhayreev/ios_workspace/double-hit-balls/game/menucode.cpp \ + ../game/menucode.h ../../engine/include/Engine.h \ + ../../engine/include/SalmonEngineIos.h \ + ../../engine/include/SalmonEngineInterface.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderInterface.h \ + ../../engine/include/Utils/Utils.h \ + ../../boost_1_63_0/boost/shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_array.hpp \ + ../../boost_1_63_0/boost/config.hpp \ + ../../boost_1_63_0/boost/config/user.hpp \ + ../../boost_1_63_0/boost/config/select_compiler_config.hpp \ + ../../boost_1_63_0/boost/config/compiler/clang.hpp \ + ../../boost_1_63_0/boost/config/select_stdlib_config.hpp \ + ../../boost_1_63_0/boost/config/stdlib/libcpp.hpp \ + ../../boost_1_63_0/boost/config/select_platform_config.hpp \ + ../../boost_1_63_0/boost/config/platform/macos.hpp \ + ../../boost_1_63_0/boost/config/posix_features.hpp \ + ../../boost_1_63_0/boost/config/suffix.hpp \ + ../../boost_1_63_0/boost/assert.hpp \ + ../../boost_1_63_0/boost/checked_delete.hpp \ + ../../boost_1_63_0/boost/core/checked_delete.hpp \ + ../../boost_1_63_0/boost/smart_ptr/shared_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/memory.hpp \ + ../../boost_1_63_0/boost/throw_exception.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/shared_count.hpp \ + ../../boost_1_63_0/boost/smart_ptr/bad_weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_has_sync.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_base_clang.hpp \ + ../../boost_1_63_0/boost/detail/sp_typeinfo.hpp \ + ../../boost_1_63_0/boost/core/typeinfo.hpp \ + ../../boost_1_63_0/boost/core/demangle.hpp \ + ../../boost_1_63_0/boost/cstdint.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_counted_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_disable_deprecated.hpp \ + ../../boost_1_63_0/boost/core/addressof.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_convertible.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_nullptr_t.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_pool.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/spinlock_std_atomic.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/yield_k.hpp \ + ../../boost_1_63_0/boost/predef.h \ + ../../boost_1_63_0/boost/predef/language.h \ + ../../boost_1_63_0/boost/predef/language/stdc.h \ + ../../boost_1_63_0/boost/predef/version_number.h \ + ../../boost_1_63_0/boost/predef/make.h \ + ../../boost_1_63_0/boost/predef/detail/test.h \ + ../../boost_1_63_0/boost/predef/language/stdcpp.h \ + ../../boost_1_63_0/boost/predef/language/objc.h \ + ../../boost_1_63_0/boost/predef/architecture.h \ + ../../boost_1_63_0/boost/predef/architecture/alpha.h \ + ../../boost_1_63_0/boost/predef/architecture/arm.h \ + ../../boost_1_63_0/boost/predef/architecture/blackfin.h \ + ../../boost_1_63_0/boost/predef/architecture/convex.h \ + ../../boost_1_63_0/boost/predef/architecture/ia64.h \ + ../../boost_1_63_0/boost/predef/architecture/m68k.h \ + ../../boost_1_63_0/boost/predef/architecture/mips.h \ + ../../boost_1_63_0/boost/predef/architecture/parisc.h \ + ../../boost_1_63_0/boost/predef/architecture/ppc.h \ + ../../boost_1_63_0/boost/predef/architecture/pyramid.h \ + ../../boost_1_63_0/boost/predef/architecture/rs6k.h \ + ../../boost_1_63_0/boost/predef/architecture/sparc.h \ + ../../boost_1_63_0/boost/predef/architecture/superh.h \ + ../../boost_1_63_0/boost/predef/architecture/sys370.h \ + ../../boost_1_63_0/boost/predef/architecture/sys390.h \ + ../../boost_1_63_0/boost/predef/architecture/x86.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/32.h \ + ../../boost_1_63_0/boost/predef/architecture/x86/64.h \ + ../../boost_1_63_0/boost/predef/architecture/z.h \ + ../../boost_1_63_0/boost/predef/compiler.h \ + ../../boost_1_63_0/boost/predef/compiler/borland.h \ + ../../boost_1_63_0/boost/predef/compiler/clang.h \ + ../../boost_1_63_0/boost/predef/detail/comp_detected.h \ + ../../boost_1_63_0/boost/predef/compiler/comeau.h \ + ../../boost_1_63_0/boost/predef/compiler/compaq.h \ + ../../boost_1_63_0/boost/predef/compiler/diab.h \ + ../../boost_1_63_0/boost/predef/compiler/digitalmars.h \ + ../../boost_1_63_0/boost/predef/compiler/dignus.h \ + ../../boost_1_63_0/boost/predef/compiler/edg.h \ + ../../boost_1_63_0/boost/predef/compiler/ekopath.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc_xml.h \ + ../../boost_1_63_0/boost/predef/compiler/gcc.h \ + ../../boost_1_63_0/boost/predef/compiler/greenhills.h \ + ../../boost_1_63_0/boost/predef/compiler/hp_acc.h \ + ../../boost_1_63_0/boost/predef/compiler/iar.h \ + ../../boost_1_63_0/boost/predef/compiler/ibm.h \ + ../../boost_1_63_0/boost/predef/compiler/intel.h \ + ../../boost_1_63_0/boost/predef/compiler/kai.h \ + ../../boost_1_63_0/boost/predef/compiler/llvm.h \ + ../../boost_1_63_0/boost/predef/compiler/metaware.h \ + ../../boost_1_63_0/boost/predef/compiler/metrowerks.h \ + ../../boost_1_63_0/boost/predef/compiler/microtec.h \ + ../../boost_1_63_0/boost/predef/compiler/mpw.h \ + ../../boost_1_63_0/boost/predef/compiler/palm.h \ + ../../boost_1_63_0/boost/predef/compiler/pgi.h \ + ../../boost_1_63_0/boost/predef/compiler/sgi_mipspro.h \ + ../../boost_1_63_0/boost/predef/compiler/sunpro.h \ + ../../boost_1_63_0/boost/predef/compiler/tendra.h \ + ../../boost_1_63_0/boost/predef/compiler/visualc.h \ + ../../boost_1_63_0/boost/predef/compiler/watcom.h \ + ../../boost_1_63_0/boost/predef/library.h \ + ../../boost_1_63_0/boost/predef/library/c.h \ + ../../boost_1_63_0/boost/predef/library/c/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_cassert.h \ + ../../boost_1_63_0/boost/predef/library/c/gnu.h \ + ../../boost_1_63_0/boost/predef/library/c/uc.h \ + ../../boost_1_63_0/boost/predef/library/c/vms.h \ + ../../boost_1_63_0/boost/predef/library/c/zos.h \ + ../../boost_1_63_0/boost/predef/library/std.h \ + ../../boost_1_63_0/boost/predef/library/std/_prefix.h \ + ../../boost_1_63_0/boost/predef/detail/_exception.h \ + ../../boost_1_63_0/boost/predef/library/std/cxx.h \ + ../../boost_1_63_0/boost/predef/library/std/dinkumware.h \ + ../../boost_1_63_0/boost/predef/library/std/libcomo.h \ + ../../boost_1_63_0/boost/predef/library/std/modena.h \ + ../../boost_1_63_0/boost/predef/library/std/msl.h \ + ../../boost_1_63_0/boost/predef/library/std/roguewave.h \ + ../../boost_1_63_0/boost/predef/library/std/sgi.h \ + ../../boost_1_63_0/boost/predef/library/std/stdcpp3.h \ + ../../boost_1_63_0/boost/predef/library/std/stlport.h \ + ../../boost_1_63_0/boost/predef/library/std/vacpp.h \ + ../../boost_1_63_0/boost/predef/os.h \ + ../../boost_1_63_0/boost/predef/os/aix.h \ + ../../boost_1_63_0/boost/predef/os/amigaos.h \ + ../../boost_1_63_0/boost/predef/os/android.h \ + ../../boost_1_63_0/boost/predef/os/beos.h \ + ../../boost_1_63_0/boost/predef/os/bsd.h \ + ../../boost_1_63_0/boost/predef/os/macos.h \ + ../../boost_1_63_0/boost/predef/os/ios.h \ + ../../boost_1_63_0/boost/predef/detail/os_detected.h \ + ../../boost_1_63_0/boost/predef/os/bsd/bsdi.h \ + ../../boost_1_63_0/boost/predef/os/bsd/dragonfly.h \ + ../../boost_1_63_0/boost/predef/os/bsd/free.h \ + ../../boost_1_63_0/boost/predef/os/bsd/open.h \ + ../../boost_1_63_0/boost/predef/os/bsd/net.h \ + ../../boost_1_63_0/boost/predef/os/cygwin.h \ + ../../boost_1_63_0/boost/predef/os/haiku.h \ + ../../boost_1_63_0/boost/predef/os/hpux.h \ + ../../boost_1_63_0/boost/predef/os/irix.h \ + ../../boost_1_63_0/boost/predef/os/linux.h \ + ../../boost_1_63_0/boost/predef/os/os400.h \ + ../../boost_1_63_0/boost/predef/os/qnxnto.h \ + ../../boost_1_63_0/boost/predef/os/solaris.h \ + ../../boost_1_63_0/boost/predef/os/unix.h \ + ../../boost_1_63_0/boost/predef/os/vms.h \ + ../../boost_1_63_0/boost/predef/os/windows.h \ + ../../boost_1_63_0/boost/predef/other.h \ + ../../boost_1_63_0/boost/predef/other/endian.h \ + ../../boost_1_63_0/boost/predef/platform.h \ + ../../boost_1_63_0/boost/predef/platform/mingw.h \ + ../../boost_1_63_0/boost/predef/platform/windows_desktop.h \ + ../../boost_1_63_0/boost/predef/platform/windows_store.h \ + ../../boost_1_63_0/boost/predef/platform/windows_phone.h \ + ../../boost_1_63_0/boost/predef/platform/windows_runtime.h \ + ../../boost_1_63_0/boost/predef/hardware.h \ + ../../boost_1_63_0/boost/predef/hardware/simd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/x86_amd/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/arm/versions.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc.h \ + ../../boost_1_63_0/boost/predef/hardware/simd/ppc/versions.h \ + ../../boost_1_63_0/boost/predef/version.h \ + ../../boost_1_63_0/boost/smart_ptr/detail/operator_bool.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree.hpp \ + ../../boost_1_63_0/boost/property_tree/ptree_fwd.hpp \ + ../../boost_1_63_0/boost/optional/optional_fwd.hpp \ + ../../boost_1_63_0/boost/property_tree/string_path.hpp \ + ../../boost_1_63_0/boost/property_tree/id_translator.hpp \ + ../../boost_1_63_0/boost/optional.hpp \ + ../../boost_1_63_0/boost/optional/optional.hpp \ + ../../boost_1_63_0/boost/core/enable_if.hpp \ + ../../boost_1_63_0/boost/core/explicit_operator_bool.hpp \ + ../../boost_1_63_0/boost/core/swap.hpp \ + ../../boost_1_63_0/boost/optional/bad_optional_access.hpp \ + ../../boost_1_63_0/boost/static_assert.hpp \ + ../../boost_1_63_0/boost/type.hpp \ + ../../boost_1_63_0/boost/type_traits/alignment_of.hpp \ + ../../boost_1_63_0/boost/type_traits/intrinsics.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/config.hpp \ + ../../boost_1_63_0/boost/version.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_constant.hpp \ + ../../boost_1_63_0/boost/type_traits/conditional.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_default_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/yes_no_type.hpp \ + ../../boost_1_63_0/boost/type_traits/type_with_alignment.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pod.hpp \ + ../../boost_1_63_0/boost/type_traits/is_void.hpp \ + ../../boost_1_63_0/boost/type_traits/is_scalar.hpp \ + ../../boost_1_63_0/boost/type_traits/is_arithmetic.hpp \ + ../../boost_1_63_0/boost/type_traits/is_integral.hpp \ + ../../boost_1_63_0/boost/type_traits/is_floating_point.hpp \ + ../../boost_1_63_0/boost/type_traits/is_enum.hpp \ + ../../boost_1_63_0/boost/type_traits/is_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_function_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_const.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/decay.hpp \ + ../../boost_1_63_0/boost/type_traits/is_array.hpp \ + ../../boost_1_63_0/boost/type_traits/is_function.hpp \ + ../../boost_1_63_0/boost/type_traits/is_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/is_function_ptr_helper.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_bounds.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_extent.hpp \ + ../../boost_1_63_0/boost/type_traits/add_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/is_base_and_derived.hpp \ + ../../boost_1_63_0/boost/type_traits/is_same.hpp \ + ../../boost_1_63_0/boost/type_traits/is_class.hpp \ + ../../boost_1_63_0/boost/type_traits/is_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/is_destructible.hpp \ + ../../boost_1_63_0/boost/type_traits/declval.hpp \ + ../../boost_1_63_0/boost/type_traits/add_rvalue_reference.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/is_const.hpp \ + ../../boost_1_63_0/boost/type_traits/is_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/is_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_assign.hpp \ + ../../boost_1_63_0/boost/utility/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/is_nothrow_move_constructible.hpp \ + ../../boost_1_63_0/boost/move/utility.hpp \ + ../../boost_1_63_0/boost/move/detail/config_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/workaround.hpp \ + ../../boost_1_63_0/boost/move/utility_core.hpp \ + ../../boost_1_63_0/boost/move/core.hpp \ + ../../boost_1_63_0/boost/move/detail/config_end.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils.hpp \ + ../../boost_1_63_0/boost/move/detail/meta_utils_core.hpp \ + ../../boost_1_63_0/boost/move/traits.hpp \ + ../../boost_1_63_0/boost/move/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/none.hpp ../../boost_1_63_0/boost/none_t.hpp \ + ../../boost_1_63_0/boost/utility/compare_pointees.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_config.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_factory_support.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_aligned_storage.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_reference_spec.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_relops.hpp \ + ../../boost_1_63_0/boost/optional/detail/optional_swap.hpp \ + ../../boost_1_63_0/boost/property_tree/exceptions.hpp \ + ../../boost_1_63_0/boost/any.hpp \ + ../../boost_1_63_0/boost/type_index.hpp \ + ../../boost_1_63_0/boost/type_index/stl_type_index.hpp \ + ../../boost_1_63_0/boost/type_index/type_index_facade.hpp \ + ../../boost_1_63_0/boost/mpl/if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/value_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/static_cast.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/workaround.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/integral.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/eti.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_spec.hpp \ + ../../boost_1_63_0/boost/mpl/lambda_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/adl_barrier.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/adl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/intel.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na.hpp \ + ../../boost_1_63_0/boost/mpl/bool.hpp \ + ../../boost_1_63_0/boost/mpl/bool_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/static_constant.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ctps.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/ttp.hpp \ + ../../boost_1_63_0/boost/mpl/int.hpp \ + ../../boost_1_63_0/boost/mpl/int_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nttp_decl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/nttp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/integral_wrapper.hpp \ + ../../boost_1_63_0/boost/preprocessor/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/config/config.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_arity_param.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dtp.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/params.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/preprocessor.hpp \ + ../../boost_1_63_0/boost/preprocessor/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/if.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bool.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/punctuation/comma.hpp \ + ../../boost_1_63_0/boost/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat.hpp \ + ../../boost_1_63_0/boost/preprocessor/debug/error.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/auto_rec.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/eat.hpp \ + ../../boost_1_63_0/boost/preprocessor/inc.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/inc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/def_params_tail.hpp \ + ../../boost_1_63_0/boost/mpl/limits/arity.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/and.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/bitand.hpp \ + ../../boost_1_63_0/boost/preprocessor/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/identity.hpp \ + ../../boost_1_63_0/boost/preprocessor/empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/add.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/dec.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_iif.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/adt.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/is_binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/detail/check.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/compl.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/detail/fold_right.hpp \ + ../../boost_1_63_0/boost/preprocessor/list/reverse.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/detail/while.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/expand.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/overload.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/rem.hpp \ + ../../boost_1_63_0/boost/preprocessor/tuple/detail/is_single_return.hpp \ + ../../boost_1_63_0/boost/preprocessor/variadic/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/sub.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/overload_resolution.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_support.hpp \ + ../../boost_1_63_0/boost/mpl/or.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/use_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/nested_type_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/compiler.hpp \ + ../../boost_1_63_0/boost/preprocessor/stringize.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/or.hpp \ + ../../boost_1_63_0/boost/type_traits/add_reference.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/exception_implementation.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_utils.hpp \ + ../../boost_1_63_0/boost/limits.hpp \ + ../../boost_1_63_0/boost/mpl/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/type_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/yes_no.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/arrays.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_xxx.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/msvc_typename.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/data.hpp \ + ../../boost_1_63_0/boost/preprocessor/array/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_trailing_params.hpp \ + ../../boost_1_63_0/boost/mpl/and.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/and.hpp \ + ../../boost_1_63_0/boost/property_tree/stream_translator.hpp \ + ../../boost_1_63_0/boost/optional/optional_io.hpp \ + ../../boost_1_63_0/boost/multi_index_container.hpp \ + ../../boost_1_63_0/boost/detail/allocator_utilities.hpp \ + ../../boost_1_63_0/boost/mpl/eval_if.hpp \ + ../../boost_1_63_0/boost/detail/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/core/no_exceptions_support.hpp \ + ../../boost_1_63_0/boost/mpl/at.hpp \ + ../../boost_1_63_0/boost/mpl/at_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/begin_end_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/void.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_begin.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/traits_lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/sequence_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/is_msvc_eti_arg.hpp \ + ../../boost_1_63_0/boost/mpl/advance.hpp \ + ../../boost_1_63_0/boost/mpl/advance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/common_name_wknd.hpp \ + ../../boost_1_63_0/boost/mpl/less.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/comparison_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_op.hpp \ + ../../boost_1_63_0/boost/mpl/numeric_cast.hpp \ + ../../boost_1_63_0/boost/mpl/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/has_apply.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_never_true.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp \ + ../../boost_1_63_0/boost/mpl/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/numeric_cast_utils.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/forwarding.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_eti_base.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less.hpp \ + ../../boost_1_63_0/boost/mpl/negate.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c.hpp \ + ../../boost_1_63_0/boost/mpl/integral_c_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/long.hpp \ + ../../boost_1_63_0/boost/mpl/long_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/next.hpp \ + ../../boost_1_63_0/boost/mpl/next_prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/prior.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp \ + ../../boost_1_63_0/boost/mpl/deref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/msvc_type.hpp \ + ../../boost_1_63_0/boost/mpl/contains.hpp \ + ../../boost_1_63_0/boost/mpl/contains_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/contains_impl.hpp \ + ../../boost_1_63_0/boost/mpl/find.hpp \ + ../../boost_1_63_0/boost/mpl/find_if.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/find_if_pred.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply.hpp \ + ../../boost_1_63_0/boost/mpl/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/arg.hpp \ + ../../boost_1_63_0/boost/mpl/arg_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/na_assert.hpp \ + ../../boost_1_63_0/boost/mpl/assert.hpp \ + ../../boost_1_63_0/boost/mpl/not.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/gpu.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/pp_counter.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arity_spec.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arg_typedef.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/arg.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp \ + ../../boost_1_63_0/boost/mpl/lambda.hpp \ + ../../boost_1_63_0/boost/mpl/bind.hpp \ + ../../boost_1_63_0/boost/mpl/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/protect.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/bind.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_type.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/bcc.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/quote.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/apply.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold_if.hpp \ + ../../boost_1_63_0/boost/mpl/logical.hpp \ + ../../boost_1_63_0/boost/mpl/always.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/default_params.hpp \ + ../../boost_1_63_0/boost/mpl/pair.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/identity.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp \ + ../../boost_1_63_0/boost/mpl/same_as.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/lambda_spec.hpp \ + ../../boost_1_63_0/boost/mpl/size.hpp \ + ../../boost_1_63_0/boost/mpl/size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/distance.hpp \ + ../../boost_1_63_0/boost/mpl/distance_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/O1_size_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/O1_size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_size.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_range.hpp \ + ../../boost_1_63_0/boost/multi_index_container_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/identity.hpp \ + ../../boost_1_63_0/boost/multi_index/identity_fwd.hpp \ + ../../boost_1_63_0/boost/type_traits/is_convertible.hpp \ + ../../boost_1_63_0/boost/multi_index/indexed_by.hpp \ + ../../boost_1_63_0/boost/mpl/vector.hpp \ + ../../boost_1_63_0/boost/mpl/limits/vector.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/at.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/typeof.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/push_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/pop_front_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/push_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/pop_back.hpp \ + ../../boost_1_63_0/boost/mpl/pop_back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/back.hpp \ + ../../boost_1_63_0/boost/mpl/back_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/clear_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/vector0.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_tags.hpp \ + ../../boost_1_63_0/boost/mpl/plus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/arithmetic_op.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/largest_int.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/plus.hpp \ + ../../boost_1_63_0/boost/mpl/minus.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/minus.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/empty_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp \ + ../../boost_1_63_0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/vector.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/expr_if.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_args.hpp \ + ../../boost_1_63_0/boost/multi_index/tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/no_duplicate_tags.hpp \ + ../../boost_1_63_0/boost/mpl/fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/at_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/has_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/overload_names.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/ptr_to_ref.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/operators.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/set0.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/size_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/base.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/insert_range_impl.hpp \ + ../../boost_1_63_0/boost/mpl/insert_range_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/insert.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/insert_impl.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/clear.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/clear_impl.hpp \ + ../../boost_1_63_0/boost/mpl/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/erase_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/erase_key_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/key_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/key_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/value_type_impl.hpp \ + ../../boost_1_63_0/boost/mpl/value_type_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/begin_end_impl.hpp \ + ../../boost_1_63_0/boost/mpl/set/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/has_key.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/has_key_impl.hpp \ + ../../boost_1_63_0/boost/mpl/transform.hpp \ + ../../boost_1_63_0/boost/mpl/pair_view.hpp \ + ../../boost_1_63_0/boost/mpl/iterator_category.hpp \ + ../../boost_1_63_0/boost/mpl/min_max.hpp \ + ../../boost_1_63_0/boost/mpl/is_sequence.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/inserter_algorithm.hpp \ + ../../boost_1_63_0/boost/mpl/back_inserter.hpp \ + ../../boost_1_63_0/boost/mpl/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/push_back_impl.hpp \ + ../../boost_1_63_0/boost/mpl/inserter.hpp \ + ../../boost_1_63_0/boost/mpl/front_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/facilities/intercept.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_binary_params.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/access_specifier.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/adl_swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/base_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_base.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/copy_map.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/auto_space.hpp \ + ../../boost_1_63_0/boost/noncopyable.hpp \ + ../../boost_1_63_0/boost/core/noncopyable.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/raw_ptr.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/do_not_copy_elements_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/node_type.hpp \ + ../../boost_1_63_0/boost/mpl/reverse_iter_fold.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/header_holder.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_node_base.hpp \ + ../../boost_1_63_0/boost/type_traits/aligned_storage.hpp \ + ../../boost_1_63_0/boost/archive/archive_exception.hpp \ + ../../boost_1_63_0/boost/archive/detail/decl.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_prefix.hpp \ + ../../boost_1_63_0/boost/config/abi_prefix.hpp \ + ../../boost_1_63_0/boost/archive/detail/abi_suffix.hpp \ + ../../boost_1_63_0/boost/config/abi_suffix.hpp \ + ../../boost_1_63_0/boost/serialization/access.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_index_list.hpp \ + ../../boost_1_63_0/boost/mpl/empty.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/empty_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/vartempl_support.hpp \ + ../../boost_1_63_0/boost/tuple/tuple.hpp \ + ../../boost_1_63_0/boost/ref.hpp ../../boost_1_63_0/boost/core/ref.hpp \ + ../../boost_1_63_0/boost/utility/addressof.hpp \ + ../../boost_1_63_0/boost/tuple/detail/tuple_basic.hpp \ + ../../boost_1_63_0/boost/type_traits/cv_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/add_const.hpp \ + ../../boost_1_63_0/boost/type_traits/add_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/add_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_volatile.hpp \ + ../../boost_1_63_0/boost/type_traits/function_traits.hpp \ + ../../boost_1_63_0/boost/utility/swap.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_loader.hpp \ + ../../boost_1_63_0/boost/serialization/nvp.hpp \ + ../../boost_1_63_0/boost/serialization/level.hpp \ + ../../boost_1_63_0/boost/type_traits/is_fundamental.hpp \ + ../../boost_1_63_0/boost/serialization/level_enum.hpp \ + ../../boost_1_63_0/boost/serialization/tracking.hpp \ + ../../boost_1_63_0/boost/mpl/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/greater.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater.hpp \ + ../../boost_1_63_0/boost/serialization/tracking_enum.hpp \ + ../../boost_1_63_0/boost/serialization/type_info_implementation.hpp \ + ../../boost_1_63_0/boost/serialization/traits.hpp \ + ../../boost_1_63_0/boost/serialization/split_member.hpp \ + ../../boost_1_63_0/boost/serialization/base_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_polymorphic.hpp \ + ../../boost_1_63_0/boost/serialization/force_include.hpp \ + ../../boost_1_63_0/boost/serialization/void_cast_fwd.hpp \ + ../../boost_1_63_0/boost/serialization/wrapper.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_saver.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/index_matcher.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/converter.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/has_tag.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/safe_mode.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/scope_guard.hpp \ + ../../boost_1_63_0/boost/utility/base_from_member.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/repeat_from_to.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/archive_constructed.hpp \ + ../../boost_1_63_0/boost/serialization/serialization.hpp \ + ../../boost_1_63_0/boost/serialization/strong_typedef.hpp \ + ../../boost_1_63_0/boost/operators.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/serialization_version.hpp \ + ../../boost_1_63_0/boost/serialization/version.hpp \ + ../../boost_1_63_0/boost/mpl/comparison.hpp \ + ../../boost_1_63_0/boost/mpl/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp \ + ../../boost_1_63_0/boost/mpl/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp \ + ../../boost_1_63_0/boost/mpl/greater_equal.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp \ + ../../boost_1_63_0/boost/serialization/collection_size_type.hpp \ + ../../boost_1_63_0/boost/serialization/split_free.hpp \ + ../../boost_1_63_0/boost/serialization/is_bitwise_serializable.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index.hpp \ + ../../boost_1_63_0/boost/bind.hpp \ + ../../boost_1_63_0/boost/bind/bind.hpp \ + ../../boost_1_63_0/boost/mem_fn.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn.hpp \ + ../../boost_1_63_0/boost/get_pointer.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_template.hpp \ + ../../boost_1_63_0/boost/bind/mem_fn_cc.hpp \ + ../../boost_1_63_0/boost/is_placeholder.hpp \ + ../../boost_1_63_0/boost/bind/arg.hpp \ + ../../boost_1_63_0/boost/visit_each.hpp \ + ../../boost_1_63_0/boost/core/is_same.hpp \ + ../../boost_1_63_0/boost/bind/storage.hpp \ + ../../boost_1_63_0/boost/bind/bind_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf_cc.hpp \ + ../../boost_1_63_0/boost/bind/bind_mf2_cc.hpp \ + ../../boost_1_63_0/boost/bind/placeholders.hpp \ + ../../boost_1_63_0/boost/call_traits.hpp \ + ../../boost_1_63_0/boost/detail/call_traits.hpp \ + ../../boost_1_63_0/boost/foreach_fwd.hpp \ + ../../boost_1_63_0/boost/iterator/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/next_prior.hpp \ + ../../boost_1_63_0/boost/type_traits/is_unsigned.hpp \ + ../../boost_1_63_0/boost/type_traits/integral_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/make_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/is_signed.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_binary_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/has_plus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_minus_assign.hpp \ + ../../boost_1_63_0/boost/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_adaptor.hpp \ + ../../boost_1_63_0/boost/detail/iterator.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_categories.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_def.hpp \ + ../../boost_1_63_0/boost/iterator/detail/config_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_facade.hpp \ + ../../boost_1_63_0/boost/iterator/interoperable.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/facade_iterator_category.hpp \ + ../../boost_1_63_0/boost/detail/indirect_traits.hpp \ + ../../boost_1_63_0/boost/iterator/detail/enable_if.hpp \ + ../../boost_1_63_0/boost/type_traits/add_lvalue_reference.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/bidir_node_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/seq_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/sequenced_index_fwd.hpp \ + ../../boost_1_63_0/boost/multi_index/ordered_index.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_impl.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/modify_key_adaptor.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_node.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/uintptr_type.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/ord_index_ops.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/promotes_arg.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/is_transparent.hpp \ + ../../boost_1_63_0/boost/type_traits/is_final.hpp \ + ../../boost_1_63_0/boost/utility/declval.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/unbounded.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/value_compare.hpp \ + ../../boost_1_63_0/boost/multi_index/detail/duplicates_iterator.hpp \ + ../../boost_1_63_0/boost/multi_index/member.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/ptree_implementation.hpp \ + ../../boost_1_63_0/boost/foreach.hpp \ + ../../boost_1_63_0/boost/range/end.hpp \ + ../../boost_1_63_0/boost/range/config.hpp \ + ../../boost_1_63_0/boost/range/detail/implementation_help.hpp \ + ../../boost_1_63_0/boost/range/detail/common.hpp \ + ../../boost_1_63_0/boost/range/detail/sfinae.hpp \ + ../../boost_1_63_0/boost/range/iterator.hpp \ + ../../boost_1_63_0/boost/range/range_fwd.hpp \ + ../../boost_1_63_0/boost/range/mutable_iterator.hpp \ + ../../boost_1_63_0/boost/range/detail/extract_optional_type.hpp \ + ../../boost_1_63_0/boost/range/detail/msvc_has_iterator_workaround.hpp \ + ../../boost_1_63_0/boost/range/const_iterator.hpp \ + ../../boost_1_63_0/boost/range/begin.hpp \ + ../../boost_1_63_0/boost/range/rend.hpp \ + ../../boost_1_63_0/boost/range/reverse_iterator.hpp \ + ../../boost_1_63_0/boost/range/rbegin.hpp \ + ../../boost_1_63_0/boost/type_traits/is_abstract.hpp \ + ../../boost_1_63_0/boost/asio.hpp \ + ../../boost_1_63_0/boost/asio/async_result.hpp \ + ../../boost_1_63_0/boost/asio/detail/config.hpp \ + ../../boost_1_63_0/boost/asio/handler_type.hpp \ + ../../boost_1_63_0/boost/asio/detail/push_options.hpp \ + ../../boost_1_63_0/boost/asio/detail/pop_options.hpp \ + ../../boost_1_63_0/boost/asio/basic_datagram_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_io_object.hpp \ + ../../boost_1_63_0/boost/asio/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/noncopyable.hpp \ + ../../boost_1_63_0/boost/asio/detail/wrapped_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/bind_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_alloc_helpers.hpp \ + ../../boost_1_63_0/boost/asio/detail/addressof.hpp \ + ../../boost_1_63_0/boost/asio/handler_alloc_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/handler_alloc_hook.ipp \ + ../../boost_1_63_0/boost/asio/detail/call_stack.hpp \ + ../../boost_1_63_0/boost/asio/detail/tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_tss_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_tss_ptr.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_error.hpp \ + ../../boost_1_63_0/boost/system/error_code.hpp \ + ../../boost_1_63_0/boost/system/config.hpp \ + ../../boost_1_63_0/boost/system/api_config.hpp \ + ../../boost_1_63_0/boost/config/auto_link.hpp \ + ../../boost_1_63_0/boost/cerrno.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/throw_error.ipp \ + ../../boost_1_63_0/boost/asio/detail/throw_exception.hpp \ + ../../boost_1_63_0/boost/system/system_error.hpp \ + ../../boost_1_63_0/boost/asio/error.hpp \ + ../../boost_1_63_0/boost/asio/impl/error.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_thread_info.hpp \ + ../../boost_1_63_0/boost/asio/detail/op_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread_info_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_cont_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_continuation_hook.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_invoke_helpers.hpp \ + ../../boost_1_63_0/boost/asio/handler_invoke_hook.hpp \ + ../../boost_1_63_0/boost/asio/impl/io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_type_requirements.hpp \ + ../../boost_1_63_0/boost/asio/detail/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/scoped_lock.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_mutex.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/service_registry.ipp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/atomic_count.hpp \ + ../../boost_1_63_0/boost/asio/detail/event.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_event.hpp \ + ../../boost_1_63_0/boost/asio/detail/assert.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_event.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactor_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/task_io_service_operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/handler_tracking.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/handler_tracking.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/completion_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/macos_fenced_block.hpp \ + ../../boost_1_63_0/boost/asio/detail/operation.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/task_io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/limits.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/object_pool.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactor_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/pipe_select_interrupter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/pipe_select_interrupter.ipp \ + ../../boost_1_63_0/boost/asio/detail/socket_types.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_set.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_set.ipp \ + ../../boost_1_63_0/boost/asio/detail/wait_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/kqueue_reactor.ipp \ + ../../boost_1_63_0/boost/asio/impl/io_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/type_traits.hpp \ + ../../boost_1_63_0/boost/asio/socket_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/io_control.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/datagram_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/buffer.hpp \ + ../../boost_1_63_0/boost/asio/detail/array_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_sequence_adapter.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/buffer_sequence_adapter.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_null_buffers_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_accept_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_holder.hpp \ + ../../boost_1_63_0/boost/asio/detail/socket_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/shared_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/weak_ptr.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/socket_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_connect_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvfrom_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_sendto_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recv_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_recvmsg_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_socket_send_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_socket_service_base.ipp \ + ../../boost_1_63_0/boost/asio/basic_deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/deadline_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue.hpp \ + ../../boost_1_63_0/boost/asio/detail/cstdint.hpp \ + ../../boost_1_63_0/boost/asio/detail/date_time_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_scheduler_fwd.hpp \ + ../../boost_1_63_0/boost/asio/detail/wait_handler.hpp \ + ../../boost_1_63_0/boost/asio/time_traits.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_types.hpp \ + ../../boost_1_63_0/boost/date_time/time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/c_time.hpp \ + ../../boost_1_63_0/boost/date_time/compiler_config.hpp \ + ../../boost_1_63_0/boost/date_time/locale_config.hpp \ + ../../boost_1_63_0/boost/shared_ptr.hpp \ + ../../boost_1_63_0/boost/date_time/microsec_time_clock.hpp \ + ../../boost_1_63_0/boost/date_time/filetime_functions.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/ptime.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_system.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_config.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/cmath.hpp \ + ../../boost_1_63_0/boost/date_time/time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/time_defs.hpp \ + ../../boost_1_63_0/boost/date_time/special_defs.hpp \ + ../../boost_1_63_0/boost/date_time/time_resolution_traits.hpp \ + ../../boost_1_63_0/boost/date_time/int_adapter.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_types.hpp \ + ../../boost_1_63_0/boost/date_time/date.hpp \ + ../../boost_1_63_0/boost/date_time/year_month_day.hpp \ + ../../boost_1_63_0/boost/date_time/period.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_weekday.hpp \ + ../../boost_1_63_0/boost/date_time/constrained_value.hpp \ + ../../boost_1_63_0/boost/date_time/date_defs.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day_of_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian_calendar.ipp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_ymd.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_day.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_year.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_month.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration.hpp \ + ../../boost_1_63_0/boost/date_time/date_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_duration_types.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/greg_date.hpp \ + ../../boost_1_63_0/boost/date_time/adjust_functors.hpp \ + ../../boost_1_63_0/boost/date_time/wrapping_int.hpp \ + ../../boost_1_63_0/boost/date_time/date_generators.hpp \ + ../../boost_1_63_0/boost/date_time/date_clock_device.hpp \ + ../../boost_1_63_0/boost/date_time/date_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_split.hpp \ + ../../boost_1_63_0/boost/date_time/time_system_counted.hpp \ + ../../boost_1_63_0/boost/date_time/time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/date_duration_operators.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_duration.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_period.hpp \ + ../../boost_1_63_0/boost/date_time/time_iterator.hpp \ + ../../boost_1_63_0/boost/date_time/dst_rules.hpp \ + ../../boost_1_63_0/boost/asio/detail/timer_queue_ptime.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/timer_queue_ptime.ipp \ + ../../boost_1_63_0/boost/asio/basic_raw_socket.hpp \ + ../../boost_1_63_0/boost/asio/raw_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_seq_packet_socket.hpp \ + ../../boost_1_63_0/boost/asio/seq_packet_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_serial_port.hpp \ + ../../boost_1_63_0/boost/asio/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.hpp \ + ../../boost_1_63_0/boost/asio/impl/serial_port_base.ipp \ + ../../boost_1_63_0/boost/asio/serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/reactive_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_ops.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/descriptor_ops.ipp \ + ../../boost_1_63_0/boost/asio/detail/reactive_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_read_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/descriptor_write_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_descriptor_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/reactive_serial_port_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/win_iocp_serial_port_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_signal_set.hpp \ + ../../boost_1_63_0/boost/asio/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_set_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_handler.hpp \ + ../../boost_1_63_0/boost/asio/detail/signal_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/signal_set_service.ipp \ + ../../boost_1_63_0/boost/asio/detail/signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_signal_blocker.hpp \ + ../../boost_1_63_0/boost/asio/detail/static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_static_mutex.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_acceptor.hpp \ + ../../boost_1_63_0/boost/asio/socket_acceptor_service.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_iostream.hpp \ + ../../boost_1_63_0/boost/asio/basic_socket_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/detail/array.hpp \ + ../../boost_1_63_0/boost/asio/stream_socket_service.hpp \ + ../../boost_1_63_0/boost/asio/deadline_timer.hpp \ + ../../boost_1_63_0/boost/asio/basic_stream_socket.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf.hpp \ + ../../boost_1_63_0/boost/asio/basic_streambuf_fwd.hpp \ + ../../boost_1_63_0/boost/asio/basic_waitable_timer.hpp \ + ../../boost_1_63_0/boost/asio/wait_traits.hpp \ + ../../boost_1_63_0/boost/asio/waitable_timer_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/chrono_time_traits.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffer_resize_guard.hpp \ + ../../boost_1_63_0/boost/asio/detail/buffered_stream_storage.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_read_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/buffered_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffered_write_stream_fwd.hpp \ + ../../boost_1_63_0/boost/asio/completion_condition.hpp \ + ../../boost_1_63_0/boost/asio/write.hpp \ + ../../boost_1_63_0/boost/asio/impl/write.hpp \ + ../../boost_1_63_0/boost/asio/detail/base_from_completion_cond.hpp \ + ../../boost_1_63_0/boost/asio/detail/consuming_buffers.hpp \ + ../../boost_1_63_0/boost/asio/detail/dependent_type.hpp \ + ../../boost_1_63_0/boost/asio/impl/buffered_write_stream.hpp \ + ../../boost_1_63_0/boost/asio/buffers_iterator.hpp \ + ../../boost_1_63_0/boost/asio/connect.hpp \ + ../../boost_1_63_0/boost/asio/impl/connect.hpp \ + ../../boost_1_63_0/boost/asio/coroutine.hpp \ + ../../boost_1_63_0/boost/asio/generic/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/generic/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/generic/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/raw_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/seq_packet_protocol.hpp \ + ../../boost_1_63_0/boost/asio/generic/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/ip/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/detail/winsock_init.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v4.ipp \ + ../../boost_1_63_0/boost/asio/ip/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address_v6.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/address.ipp \ + ../../boost_1_63_0/boost/asio/ip/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/ip/impl/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_iterator.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_entry.hpp \ + ../../boost_1_63_0/boost/asio/ip/basic_resolver_query.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_query_base.hpp \ + ../../boost_1_63_0/boost/asio/ip/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_endpoint_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolve_op.hpp \ + ../../boost_1_63_0/boost/asio/detail/resolver_service_base.hpp \ + ../../boost_1_63_0/boost/asio/detail/thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/posix_thread.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/posix_thread.ipp \ + ../../boost_1_63_0/boost/asio/detail/impl/resolver_service_base.ipp \ + ../../boost_1_63_0/boost/asio/ip/host_name.hpp \ + ../../boost_1_63_0/boost/asio/ip/impl/host_name.ipp \ + ../../boost_1_63_0/boost/asio/ip/icmp.hpp \ + ../../boost_1_63_0/boost/asio/ip/multicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/detail/socket_option.hpp \ + ../../boost_1_63_0/boost/asio/ip/tcp.hpp \ + ../../boost_1_63_0/boost/asio/ip/udp.hpp \ + ../../boost_1_63_0/boost/asio/ip/unicast.hpp \ + ../../boost_1_63_0/boost/asio/ip/v6_only.hpp \ + ../../boost_1_63_0/boost/asio/is_read_buffered.hpp \ + ../../boost_1_63_0/boost/asio/is_write_buffered.hpp \ + ../../boost_1_63_0/boost/asio/local/basic_endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/endpoint.hpp \ + ../../boost_1_63_0/boost/asio/local/detail/impl/endpoint.ipp \ + ../../boost_1_63_0/boost/asio/local/connect_pair.hpp \ + ../../boost_1_63_0/boost/asio/local/datagram_protocol.hpp \ + ../../boost_1_63_0/boost/asio/local/stream_protocol.hpp \ + ../../boost_1_63_0/boost/asio/placeholders.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/descriptor_base.hpp \ + ../../boost_1_63_0/boost/asio/posix/basic_stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor_service.hpp \ + ../../boost_1_63_0/boost/asio/posix/stream_descriptor.hpp \ + ../../boost_1_63_0/boost/asio/read.hpp \ + ../../boost_1_63_0/boost/asio/impl/read.hpp \ + ../../boost_1_63_0/boost/asio/read_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_at.hpp \ + ../../boost_1_63_0/boost/asio/read_until.hpp \ + ../../boost_1_63_0/boost/asio/detail/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/config.hpp \ + ../../boost_1_63_0/boost/regex/user.hpp \ + ../../boost_1_63_0/boost/regex/config/cwchar.hpp \ + ../../boost_1_63_0/boost/regex/v4/regex_fwd.hpp \ + ../../boost_1_63_0/boost/regex/v4/match_flags.hpp \ + ../../boost_1_63_0/boost/asio/impl/read_until.hpp \ + ../../boost_1_63_0/boost/asio/serial_port.hpp \ + ../../boost_1_63_0/boost/asio/signal_set.hpp \ + ../../boost_1_63_0/boost/asio/strand.hpp \ + ../../boost_1_63_0/boost/asio/detail/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.hpp \ + ../../boost_1_63_0/boost/asio/detail/impl/strand_service.ipp \ + ../../boost_1_63_0/boost/asio/streambuf.hpp \ + ../../boost_1_63_0/boost/asio/version.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/basic_stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/object_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/overlapped_ptr.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/random_access_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle.hpp \ + ../../boost_1_63_0/boost/asio/windows/stream_handle_service.hpp \ + ../../boost_1_63_0/boost/asio/write_at.hpp \ + ../../boost_1_63_0/boost/asio/impl/write_at.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_formatters.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/formatters.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting.hpp \ + ../../boost_1_63_0/boost/date_time/iso_format.hpp \ + ../../boost_1_63_0/boost/date_time/parse_format_base.hpp \ + ../../boost_1_63_0/boost/date_time/date_format_simple.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/gregorian_io.hpp \ + ../../boost_1_63_0/boost/io/ios_state.hpp \ + ../../boost_1_63_0/boost/io_fwd.hpp \ + ../../boost_1_63_0/boost/date_time/date_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/replace.hpp \ + ../../boost_1_63_0/boost/algorithm/string/config.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_core.hpp \ + ../../boost_1_63_0/boost/range/functions.hpp \ + ../../boost_1_63_0/boost/range/size.hpp \ + ../../boost_1_63_0/boost/range/size_type.hpp \ + ../../boost_1_63_0/boost/range/difference_type.hpp \ + ../../boost_1_63_0/boost/range/has_range_iterator.hpp \ + ../../boost_1_63_0/boost/range/concepts.hpp \ + ../../boost_1_63_0/boost/concept_check.hpp \ + ../../boost_1_63_0/boost/concept/assert.hpp \ + ../../boost_1_63_0/boost/concept/detail/general.hpp \ + ../../boost_1_63_0/boost/concept/detail/backward_compatibility.hpp \ + ../../boost_1_63_0/boost/concept/detail/has_constraints.hpp \ + ../../boost_1_63_0/boost/type_traits/conversion_traits.hpp \ + ../../boost_1_63_0/boost/concept/usage.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_def.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/for_each_i.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/detail/for.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/seq.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/elem.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/size.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/detail/is_empty.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/enum.hpp \ + ../../boost_1_63_0/boost/concept/detail/concept_undef.hpp \ + ../../boost_1_63_0/boost/iterator/iterator_concepts.hpp \ + ../../boost_1_63_0/boost/range/value_type.hpp \ + ../../boost_1_63_0/boost/range/detail/misc_concept.hpp \ + ../../boost_1_63_0/boost/type_traits/make_unsigned.hpp \ + ../../boost_1_63_0/boost/range/detail/has_member_size.hpp \ + ../../boost_1_63_0/boost/utility.hpp \ + ../../boost_1_63_0/boost/utility/binary.hpp \ + ../../boost_1_63_0/boost/preprocessor/control/deduce_d.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/cat.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/fold_left.hpp \ + ../../boost_1_63_0/boost/preprocessor/seq/transform.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/mod.hpp \ + ../../boost_1_63_0/boost/preprocessor/arithmetic/detail/div_base.hpp \ + ../../boost_1_63_0/boost/preprocessor/comparison/less_equal.hpp \ + ../../boost_1_63_0/boost/preprocessor/logical/not.hpp \ + ../../boost_1_63_0/boost/utility/identity_type.hpp \ + ../../boost_1_63_0/boost/range/distance.hpp \ + ../../boost_1_63_0/boost/range/empty.hpp \ + ../../boost_1_63_0/boost/range/algorithm/equal.hpp \ + ../../boost_1_63_0/boost/range/detail/safe_bool.hpp \ + ../../boost_1_63_0/boost/algorithm/string/find_format.hpp \ + ../../boost_1_63_0/boost/range/as_literal.hpp \ + ../../boost_1_63_0/boost/range/iterator_range.hpp \ + ../../boost_1_63_0/boost/range/iterator_range_io.hpp \ + ../../boost_1_63_0/boost/range/detail/str_types.hpp \ + ../../boost_1_63_0/boost/algorithm/string/concept.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_store.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/replace_storage.hpp \ + ../../boost_1_63_0/boost/algorithm/string/sequence_traits.hpp \ + ../../boost_1_63_0/boost/algorithm/string/yes_no_type.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/sequence.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/find_format_all.hpp \ + ../../boost_1_63_0/boost/algorithm/string/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/constants.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/finder.hpp \ + ../../boost_1_63_0/boost/algorithm/string/compare.hpp \ + ../../boost_1_63_0/boost/algorithm/string/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/formatter.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/util.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/period_parser.hpp \ + ../../boost_1_63_0/boost/date_time/string_parse_tree.hpp \ + ../../boost_1_63_0/boost/lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/bad_lexical_cast.hpp \ + ../../boost_1_63_0/boost/lexical_cast/try_lexical_convert.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/is_character.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_numeric.hpp \ + ../../boost_1_63_0/boost/type_traits/is_float.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/cast.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/conversion_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/meta.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/int_float_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/int_float_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/sign_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/sign_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/udt_builtin_mixture.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/udt_builtin_mixture_enum.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/is_subranged.hpp \ + ../../boost_1_63_0/boost/mpl/multiplies.hpp \ + ../../boost_1_63_0/boost/mpl/times.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/times.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/converter_policies.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/converter.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/bounds.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/numeric_cast_traits.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp \ + ../../boost_1_63_0/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift.hpp \ + ../../boost_1_63_0/boost/detail/lcast_precision.hpp \ + ../../boost_1_63_0/boost/integer_traits.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/widest_char.hpp \ + ../../boost_1_63_0/boost/array.hpp ../../boost_1_63_0/boost/swap.hpp \ + ../../boost_1_63_0/boost/functional/hash_fwd.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash_fwd.hpp \ + ../../boost_1_63_0/boost/container/container_fwd.hpp \ + ../../boost_1_63_0/boost/container/detail/std_fwd.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_begin.hpp \ + ../../boost_1_63_0/boost/move/detail/std_ns_end.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/converter_lexical_streams.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_char_constants.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/lcast_unsigned_converters.hpp \ + ../../boost_1_63_0/boost/lexical_cast/detail/inf_nan.hpp \ + ../../boost_1_63_0/boost/math/special_functions/sign.hpp \ + ../../boost_1_63_0/boost/math/tools/config.hpp \ + ../../boost_1_63_0/boost/math/tools/user.hpp \ + ../../boost_1_63_0/boost/math/special_functions/math_fwd.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/round_fwd.hpp \ + ../../boost_1_63_0/boost/math/tools/promotion.hpp \ + ../../boost_1_63_0/boost/math/policies/policy.hpp \ + ../../boost_1_63_0/boost/mpl/list.hpp \ + ../../boost_1_63_0/boost/mpl/limits/list.hpp \ + ../../boost_1_63_0/boost/mpl/list/list20.hpp \ + ../../boost_1_63_0/boost/mpl/list/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/list0.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/item.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/tag.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/pop_front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/push_back.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/front.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/clear.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/O1_size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/size.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/empty.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/begin_end.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/iterator.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/include_preprocessed.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp \ + ../../boost_1_63_0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessed/gcc/list.hpp \ + ../../boost_1_63_0/boost/mpl/remove_if.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/complex.hpp \ + ../../boost_1_63_0/boost/math/special_functions/detail/fp_traits.hpp \ + ../../boost_1_63_0/boost/detail/endian.hpp \ + ../../boost_1_63_0/boost/predef/detail/endian_compat.h \ + ../../boost_1_63_0/boost/math/special_functions/fpclassify.hpp \ + ../../boost_1_63_0/boost/math/tools/real_cast.hpp \ + ../../boost_1_63_0/boost/integer.hpp \ + ../../boost_1_63_0/boost/integer_fwd.hpp \ + ../../boost_1_63_0/boost/detail/basic_pointerbuf.hpp \ + ../../boost_1_63_0/boost/algorithm/string/case_conv.hpp \ + ../../boost_1_63_0/boost/iterator/transform_iterator.hpp \ + ../../boost_1_63_0/boost/utility/result_of.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/iterate.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/slot.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/def.hpp \ + ../../boost_1_63_0/boost/preprocessor/repetition/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/iter/forward1.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/lower1.hpp \ + ../../boost_1_63_0/boost/preprocessor/slot/detail/shared.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/bounds/upper1.hpp \ + ../../boost_1_63_0/boost/utility/detail/result_of_iterate.hpp \ + ../../boost_1_63_0/boost/algorithm/string/detail/case_conv.hpp \ + ../../boost_1_63_0/boost/date_time/string_convert.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_formatter.hpp \ + ../../boost_1_63_0/boost/date_time/date_generator_parser.hpp \ + ../../boost_1_63_0/boost/date_time/format_date_parser.hpp \ + ../../boost_1_63_0/boost/date_time/strings_from_facet.hpp \ + ../../boost_1_63_0/boost/date_time/special_values_parser.hpp \ + ../../boost_1_63_0/boost/date_time/gregorian/parsers.hpp \ + ../../boost_1_63_0/boost/date_time/date_parsing.hpp \ + ../../boost_1_63_0/boost/tokenizer.hpp \ + ../../boost_1_63_0/boost/token_iterator.hpp \ + ../../boost_1_63_0/boost/iterator/minimum_category.hpp \ + ../../boost_1_63_0/boost/token_functions.hpp \ + ../../boost_1_63_0/boost/date_time/time_formatting_streams.hpp \ + ../../boost_1_63_0/boost/date_time/date_formatting_locales.hpp \ + ../../boost_1_63_0/boost/date_time/date_names_put.hpp \ + ../../boost_1_63_0/boost/date_time/time_parsing.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/posix_time_io.hpp \ + ../../boost_1_63_0/boost/date_time/time_facet.hpp \ + ../../boost_1_63_0/boost/algorithm/string/erase.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/conversion.hpp \ + ../../boost_1_63_0/boost/date_time/posix_time/time_parsers.hpp \ + ../../boost_1_63_0/boost/signal.hpp \ + ../../boost_1_63_0/boost/signals/signal0.hpp \ + ../../boost_1_63_0/boost/signals/signal_template.hpp \ + ../../boost_1_63_0/boost/signals/connection.hpp \ + ../../boost_1_63_0/boost/signals/detail/signals_common.hpp \ + ../../boost_1_63_0/boost/signals/detail/config.hpp \ + ../../boost_1_63_0/boost/smart_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_ptr.hpp \ + ../../boost_1_63_0/boost/scoped_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/scoped_array.hpp \ + ../../boost_1_63_0/boost/weak_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/weak_ptr.hpp \ + ../../boost_1_63_0/boost/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/smart_ptr/intrusive_ptr.hpp \ + ../../boost_1_63_0/boost/config/no_tr1/functional.hpp \ + ../../boost_1_63_0/boost/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/smart_ptr/enable_shared_from_this.hpp \ + ../../boost_1_63_0/boost/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_object.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_forward.hpp \ + ../../boost_1_63_0/boost/smart_ptr/make_shared_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_count_impl.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_allocator.hpp \ + ../../boost_1_63_0/boost/align/align.hpp \ + ../../boost_1_63_0/boost/align/detail/align_cxx11.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_traits.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/array_utility.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_destructor.hpp \ + ../../boost_1_63_0/boost/smart_ptr/detail/sp_if_array.hpp \ + ../../boost_1_63_0/boost/smart_ptr/allocate_shared_array.hpp \ + ../../boost_1_63_0/boost/signals/slot.hpp \ + ../../boost_1_63_0/boost/signals/trackable.hpp \ + ../../boost_1_63_0/boost/type_traits.hpp \ + ../../boost_1_63_0/boost/type_traits/common_type.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/mp_defer.hpp \ + ../../boost_1_63_0/boost/type_traits/copy_cv.hpp \ + ../../boost_1_63_0/boost/type_traits/extent.hpp \ + ../../boost_1_63_0/boost/type_traits/floating_point_promotion.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_and_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_or_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_bit_xor_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_complement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_prefix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_dereference.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides.hpp \ + ../../boost_1_63_0/boost/type_traits/has_divides_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater.hpp \ + ../../boost_1_63_0/boost/type_traits/has_greater_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_left_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less.hpp \ + ../../boost_1_63_0/boost/type_traits/has_less_equal.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_and.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_not.hpp \ + ../../boost_1_63_0/boost/type_traits/has_logical_or.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_modulus_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies.hpp \ + ../../boost_1_63_0/boost/type_traits/has_multiplies_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_negate.hpp \ + ../../boost_1_63_0/boost/type_traits/has_new_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_not_equal_to.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_constructible.hpp \ + ../../boost_1_63_0/boost/type_traits/has_nothrow_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/detail/has_postfix_operator.hpp \ + ../../boost_1_63_0/boost/type_traits/has_post_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_decrement.hpp \ + ../../boost_1_63_0/boost/type_traits/has_pre_increment.hpp \ + ../../boost_1_63_0/boost/type_traits/has_right_shift_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_assign.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_copy.hpp \ + ../../boost_1_63_0/boost/type_traits/has_trivial_move_constructor.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_minus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_unary_plus.hpp \ + ../../boost_1_63_0/boost/type_traits/has_virtual_destructor.hpp \ + ../../boost_1_63_0/boost/type_traits/is_complex.hpp \ + ../../boost_1_63_0/boost/type_traits/is_compound.hpp \ + ../../boost_1_63_0/boost/type_traits/is_copy_assignable.hpp \ + ../../boost_1_63_0/boost/type_traits/is_empty.hpp \ + ../../boost_1_63_0/boost/type_traits/is_member_object_pointer.hpp \ + ../../boost_1_63_0/boost/type_traits/is_object.hpp \ + ../../boost_1_63_0/boost/type_traits/is_stateless.hpp \ + ../../boost_1_63_0/boost/type_traits/is_union.hpp \ + ../../boost_1_63_0/boost/type_traits/is_virtual_base_of.hpp \ + ../../boost_1_63_0/boost/type_traits/rank.hpp \ + ../../boost_1_63_0/boost/type_traits/remove_all_extents.hpp \ + ../../boost_1_63_0/boost/type_traits/type_identity.hpp \ + ../../boost_1_63_0/boost/type_traits/promote.hpp \ + ../../boost_1_63_0/boost/last_value.hpp \ + ../../boost_1_63_0/boost/signals/detail/signal_base.hpp \ + ../../boost_1_63_0/boost/signals/detail/named_slot_map.hpp \ + ../../boost_1_63_0/boost/function/function2.hpp \ + ../../boost_1_63_0/boost/function/detail/maybe_include.hpp \ + ../../boost_1_63_0/boost/function/function_template.hpp \ + ../../boost_1_63_0/boost/function/detail/prologue.hpp \ + ../../boost_1_63_0/boost/function/function_base.hpp \ + ../../boost_1_63_0/boost/type_traits/composite_traits.hpp \ + ../../boost_1_63_0/boost/function_equal.hpp \ + ../../boost_1_63_0/boost/function/function_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_params.hpp \ + ../../boost_1_63_0/boost/signals/detail/slot_call_iterator.hpp \ + ../../boost_1_63_0/boost/function/function0.hpp \ + ../../boost_1_63_0/boost/signals/signal1.hpp \ + ../../boost_1_63_0/boost/function/function1.hpp \ + ../../boost_1_63_0/boost/signals/signal2.hpp \ + ../../boost_1_63_0/boost/signals/signal3.hpp \ + ../../boost_1_63_0/boost/function/function3.hpp \ + ../../boost_1_63_0/boost/signals/signal4.hpp \ + ../../boost_1_63_0/boost/function/function4.hpp \ + ../../boost_1_63_0/boost/signals/signal5.hpp \ + ../../boost_1_63_0/boost/function/function5.hpp \ + ../../boost_1_63_0/boost/signals/signal6.hpp \ + ../../boost_1_63_0/boost/function/function6.hpp \ + ../../boost_1_63_0/boost/signals/signal7.hpp \ + ../../boost_1_63_0/boost/function/function7.hpp \ + ../../boost_1_63_0/boost/signals/signal8.hpp \ + ../../boost_1_63_0/boost/function/function8.hpp \ + ../../boost_1_63_0/boost/signals/signal9.hpp \ + ../../boost_1_63_0/boost/function/function9.hpp \ + ../../boost_1_63_0/boost/signals/signal10.hpp \ + ../../boost_1_63_0/boost/function/function10.hpp \ + ../../boost_1_63_0/boost/function.hpp \ + ../../boost_1_63_0/boost/preprocessor/iterate.hpp \ + ../../boost_1_63_0/boost/function/detail/function_iterate.hpp \ + ../../engine/include/Utils/Console/Console.h \ + ../../engine/include/Utils/DataTypes/DataTypes.h \ + ../../engine/include/Utils/DataTypes/NewDataTypes.h \ + ../../engine/include/Render/RenderMisc.h \ + ../../engine/include/Utils/ErrorTypes/ErrorTypes.h \ + ../../engine/include/Utils/../GlobalConst.h \ + ../../engine/include/Utils/FileUtils/FileUtils.h \ + ../../engine/include/Utils/IosApi/IosApi.h \ + ../../engine/include/Utils/SerializeInterface/SerializeInterface.h \ + ../../boost_1_63_0/boost/property_tree/xml_parser.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_write.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_utils.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/file_parser_error.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_writer_settings.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_flags.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/xml_parser_read_rapidxml.hpp \ + ../../boost_1_63_0/boost/property_tree/detail/rapidxml.hpp \ + ../../engine/include/Utils/BindableVar.h \ + ../../boost_1_63_0/boost/variant.hpp \ + ../../boost_1_63_0/boost/variant/variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/config.hpp \ + ../../boost_1_63_0/boost/variant/variant_fwd.hpp \ + ../../boost_1_63_0/boost/blank_fwd.hpp \ + ../../boost_1_63_0/boost/preprocessor/enum_shifted_params.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/backup_holder.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/forced_return.hpp \ + ../../boost_1_63_0/boost/variant/detail/generic_result_type.hpp \ + ../../boost_1_63_0/boost/variant/detail/initializer.hpp \ + ../../boost_1_63_0/boost/detail/reference_content.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper_fwd.hpp \ + ../../boost_1_63_0/boost/variant/detail/move.hpp \ + ../../boost_1_63_0/boost/move/move.hpp \ + ../../boost_1_63_0/boost/move/iterator.hpp \ + ../../boost_1_63_0/boost/move/detail/iterator_traits.hpp \ + ../../boost_1_63_0/boost/move/algorithm.hpp \ + ../../boost_1_63_0/boost/move/algo/move.hpp \ + ../../boost_1_63_0/boost/move/adl_move_swap.hpp \ + ../../boost_1_63_0/boost/variant/detail/make_variant_list.hpp \ + ../../boost_1_63_0/boost/variant/detail/over_sequence.hpp \ + ../../boost_1_63_0/boost/variant/detail/visitation_impl.hpp \ + ../../boost_1_63_0/boost/variant/detail/cast_storage.hpp \ + ../../boost_1_63_0/boost/variant/detail/hash_variant.hpp \ + ../../boost_1_63_0/boost/variant/static_visitor.hpp \ + ../../boost_1_63_0/boost/variant/apply_visitor.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_unary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_binary.hpp \ + ../../boost_1_63_0/boost/variant/detail/apply_visitor_delayed.hpp \ + ../../boost_1_63_0/boost/variant/detail/has_result_type.hpp \ + ../../boost_1_63_0/boost/aligned_storage.hpp \ + ../../boost_1_63_0/boost/blank.hpp \ + ../../boost_1_63_0/boost/detail/templated_streams.hpp \ + ../../boost_1_63_0/boost/math/common_factor_ct.hpp \ + ../../boost_1_63_0/boost/math_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/front.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/front_impl.hpp \ + ../../boost_1_63_0/boost/mpl/max_element.hpp \ + ../../boost_1_63_0/boost/mpl/size_t.hpp \ + ../../boost_1_63_0/boost/mpl/size_t_fwd.hpp \ + ../../boost_1_63_0/boost/mpl/sizeof.hpp \ + ../../boost_1_63_0/boost/variant/detail/variant_io.hpp \ + ../../boost_1_63_0/boost/variant/recursive_variant.hpp \ + ../../boost_1_63_0/boost/variant/detail/enable_recursive.hpp \ + ../../boost_1_63_0/boost/variant/detail/substitute.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/preprocessor/repeat.hpp \ + ../../boost_1_63_0/boost/variant/recursive_wrapper.hpp \ + ../../boost_1_63_0/boost/mpl/equal.hpp \ + ../../boost_1_63_0/boost/variant/get.hpp \ + ../../boost_1_63_0/boost/variant/detail/element_index.hpp \ + ../../boost_1_63_0/boost/variant/visitor_ptr.hpp \ + ../../boost_1_63_0/boost/variant/bad_visit.hpp \ + ../../engine/include/Utils/SimpleTimer.h \ + ../../engine/include/Utils/ThreadUtils.h \ + ../../boost_1_63_0/boost/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread.hpp \ + ../../boost_1_63_0/boost/thread/thread_only.hpp \ + ../../boost_1_63_0/boost/thread/detail/platform.hpp \ + ../../boost_1_63_0/boost/config/requires_threads.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_data.hpp \ + ../../boost_1_63_0/boost/thread/detail/config.hpp \ + ../../boost_1_63_0/boost/thread/exceptions.hpp \ + ../../boost_1_63_0/boost/thread/lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/detail/delete.hpp \ + ../../boost_1_63_0/boost/thread/detail/move.hpp \ + ../../boost_1_63_0/boost/thread/detail/lockable_wrapper.hpp \ + ../../boost_1_63_0/boost/thread/lock_options.hpp \ + ../../boost_1_63_0/boost/thread/lock_types.hpp \ + ../../boost_1_63_0/boost/thread/lockable_traits.hpp \ + ../../boost_1_63_0/boost/thread/thread_time.hpp \ + ../../boost_1_63_0/boost/chrono/time_point.hpp \ + ../../boost_1_63_0/boost/chrono/duration.hpp \ + ../../boost_1_63_0/boost/chrono/config.hpp \ + ../../boost_1_63_0/boost/chrono/detail/static_assert.hpp \ + ../../boost_1_63_0/boost/ratio/ratio.hpp \ + ../../boost_1_63_0/boost/ratio/config.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/abs.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/sign.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/gcd.hpp \ + ../../boost_1_63_0/boost/mpl/aux_/config/dependent_nttp.hpp \ + ../../boost_1_63_0/boost/ratio/detail/mpl/lcm.hpp \ + ../../boost_1_63_0/boost/ratio/ratio_fwd.hpp \ + ../../boost_1_63_0/boost/ratio/detail/overflow_helpers.hpp \ + ../../boost_1_63_0/boost/chrono/detail/is_evenly_divisible_by.hpp \ + ../../boost_1_63_0/boost/thread/mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/mutex.hpp \ + ../../boost_1_63_0/boost/core/ignore_unused.hpp \ + ../../boost_1_63_0/boost/thread/xtime.hpp \ + ../../boost_1_63_0/boost/thread/pthread/timespec.hpp \ + ../../boost_1_63_0/boost/thread/pthread/pthread_mutex_scoped_lock.hpp \ + ../../boost_1_63_0/boost/chrono/system_clocks.hpp \ + ../../boost_1_63_0/boost/chrono/detail/system.hpp \ + ../../boost_1_63_0/boost/chrono/clock_string.hpp \ + ../../boost_1_63_0/boost/chrono/ceil.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable_fwd.hpp \ + ../../boost_1_63_0/boost/thread/cv_status.hpp \ + ../../boost_1_63_0/boost/core/scoped_enum.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/pthread/thread_heap_alloc.hpp \ + ../../boost_1_63_0/boost/thread/detail/make_tuple_indices.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoke.hpp \ + ../../boost_1_63_0/boost/thread/detail/is_convertible.hpp \ + ../../boost_1_63_0/boost/functional/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/hash.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/hash_float.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/float_functions.hpp \ + ../../boost_1_63_0/boost/functional/hash/detail/limits.hpp \ + ../../boost_1_63_0/boost/integer/static_log2.hpp \ + ../../boost_1_63_0/boost/functional/hash/extensions.hpp \ + ../../boost_1_63_0/boost/detail/container_fwd.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_interruption.hpp \ + ../../boost_1_63_0/boost/thread/v2/thread.hpp \ + ../../boost_1_63_0/boost/thread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/pthread/condition_variable.hpp \ + ../../boost_1_63_0/boost/thread/detail/thread_group.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/unique_ptr.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/config.hpp \ + ../../boost_1_63_0/boost/move/unique_ptr.hpp \ + ../../boost_1_63_0/boost/move/detail/unique_ptr_meta_utils.hpp \ + ../../boost_1_63_0/boost/move/default_delete.hpp \ + ../../boost_1_63_0/boost/move/make_unique.hpp \ + ../../boost_1_63_0/boost/thread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/shared_mutex.hpp \ + ../../boost_1_63_0/boost/thread/once.hpp \ + ../../boost_1_63_0/boost/thread/pthread/once_atomic.hpp \ + ../../boost_1_63_0/boost/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/atomic.hpp \ + ../../boost_1_63_0/boost/atomic/capabilities.hpp \ + ../../boost_1_63_0/boost/atomic/detail/config.hpp \ + ../../boost_1_63_0/boost/atomic/detail/platform.hpp \ + ../../boost_1_63_0/boost/atomic/detail/int_sizes.hpp \ + ../../boost_1_63_0/boost/atomic/detail/caps_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/fences.hpp \ + ../../boost_1_63_0/boost/memory_order.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_lockfree.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_atomic.hpp \ + ../../boost_1_63_0/boost/atomic/detail/storage_type.hpp \ + ../../boost_1_63_0/boost/atomic/detail/operations_fwd.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_cas_based.hpp \ + ../../boost_1_63_0/boost/atomic/detail/ops_emulated.hpp \ + ../../boost_1_63_0/boost/atomic/detail/lockpool.hpp \ + ../../boost_1_63_0/boost/atomic/detail/link.hpp \ + ../../boost_1_63_0/boost/atomic/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_flag.hpp \ + ../../boost_1_63_0/boost/atomic/detail/atomic_template.hpp \ + ../../boost_1_63_0/boost/atomic/detail/bitwise_cast.hpp \ + ../../boost_1_63_0/boost/thread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/pthread/recursive_mutex.hpp \ + ../../boost_1_63_0/boost/thread/tss.hpp \ + ../../boost_1_63_0/boost/thread/locks.hpp \ + ../../boost_1_63_0/boost/thread/lock_algorithms.hpp \ + ../../boost_1_63_0/boost/thread/shared_lock_guard.hpp \ + ../../boost_1_63_0/boost/thread/barrier.hpp \ + ../../boost_1_63_0/boost/thread/detail/nullary_function.hpp \ + ../../boost_1_63_0/boost/thread/detail/memory.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/pointer_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_arg.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/allocator_traits.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/scoped_allocator.hpp \ + ../../boost_1_63_0/boost/thread/csbl/memory/shared_ptr.hpp \ + ../../boost_1_63_0/boost/thread/future.hpp \ + ../../boost_1_63_0/boost/thread/detail/invoker.hpp \ + ../../boost_1_63_0/boost/thread/csbl/tuple.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_header.hpp \ + ../../boost_1_63_0/boost/thread/detail/variadic_footer.hpp \ + ../../boost_1_63_0/boost/thread/exceptional_ptr.hpp \ + ../../boost_1_63_0/boost/exception_ptr.hpp \ + ../../boost_1_63_0/boost/exception/detail/exception_ptr.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_error_code.hpp \ + ../../boost_1_63_0/boost/thread/futures/future_status.hpp \ + ../../boost_1_63_0/boost/thread/futures/is_future_type.hpp \ + ../../boost_1_63_0/boost/thread/futures/launch.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_all.hpp \ + ../../boost_1_63_0/boost/thread/futures/wait_for_any.hpp \ + ../../boost_1_63_0/boost/thread/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor.hpp \ + ../../boost_1_63_0/boost/thread/executors/work.hpp \ + ../../boost_1_63_0/boost/thread/csbl/functional.hpp \ + ../../boost_1_63_0/boost/thread/executors/executor_adaptor.hpp \ + ../../boost_1_63_0/boost/thread/executors/generic_executor_ref.hpp \ + ../../boost_1_63_0/boost/detail/atomic_undef_macros.hpp \ + ../../boost_1_63_0/boost/detail/atomic_redef_macros.hpp \ + ../../engine/include/Utils/Network/Network.h \ + ../../engine/include/Utils/Network/SignalSender.h \ + ../../engine/include/Utils/Network/Server.h \ + ../../engine/include/SimpleLand/SimpleLand.h \ + ../../engine/include/Render/SalmonRender/BackgroundCubemap.h \ + ../../engine/include/Render/SalmonRender/Cameras.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderIos.h \ + ../../engine/include/Render/SalmonRender/SalmonRenderGLES20.h \ + ../../engine/include/Animation/SalmonAnimation.h \ + ../../engine/include/ModelManager/ModelManager.h \ + ../../engine/include/TextureManager/SalmonTexture.h \ + ../../engine/include/Utils/PngHelper.h ../../libs/lpng1510/png.h \ + ../../libs/lpng1510/pnglibconf.h ../../libs/lpng1510/pngconf.h \ + ../../engine/include/Utils/JpegHelper.h \ + ../../engine/include/Utils/TgaLoader.h \ + ../../engine/include/ScriptManager/ScriptManager.h \ + ../../engine/include/ShaderManager/ShaderManager.h \ + ../../engine/include/FrameManager/FrameManager.h \ + ../../engine/include/LightManager/LightManager.h \ + ../../engine/include/SoundManager/SoundManagerIos.h \ + ../../engine/include/SoundManager/SoundManagerInterface.h \ + ../../engine/include/FontManager/FontManager.h \ + ../../engine/include/SmartValueManager/SmartValueManager.h \ + ../../engine/include/ModelManager/NewModelManager.h \ + ../../engine/include/Render/RenderParams.h \ + ../../engine/include/PhysicsManager/PhysicsManager.h \ + ../../engine/include/GUIManager/GUIManager.h \ + ../../engine/include/GUIManager/ButtonWidget.h \ + ../../engine/include/GUIManager/KeyboardWidget.h \ + ../../engine/include/GUIManager/WidgetXmlParsers.h \ + ../../engine/include/HalibutAnimation/HalibutAnimation.h \ + ../../engine/include/GUIManager/WidgetTemplatesImpl.h \ + ../../engine/include/Utils/ThreadUtilsImpl.h \ + ../game/game_area_interface.h ../game/main_code.h \ + ../../boost_1_63_0/boost/assign.hpp \ + ../../boost_1_63_0/boost/assign/std.hpp \ + ../../boost_1_63_0/boost/assign/std/vector.hpp \ + ../../boost_1_63_0/boost/assign/list_inserter.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/local.hpp \ + ../../boost_1_63_0/boost/preprocessor/iteration/detail/local.hpp \ + ../../boost_1_63_0/boost/assign/std/deque.hpp \ + ../../boost_1_63_0/boost/assign/std/list.hpp \ + ../../boost_1_63_0/boost/assign/std/slist.hpp \ + ../../boost_1_63_0/boost/assign/std/stack.hpp \ + ../../boost_1_63_0/boost/assign/std/queue.hpp \ + ../../boost_1_63_0/boost/assign/std/set.hpp \ + ../../boost_1_63_0/boost/assign/std/map.hpp \ + ../../boost_1_63_0/boost/assign/list_of.hpp \ + ../../boost_1_63_0/boost/assign/assignment_exception.hpp \ + ../game/gamecode.h ../game/creditscode.h ../game/loadingcode.h diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.dia b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.dia new file mode 100644 index 0000000..a94f049 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.dia differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.o b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.o new file mode 100644 index 0000000..ef9cf60 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.o differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-OutputFileMap.json b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-OutputFileMap.json new file mode 100644 index 0000000..8e7f986 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/CustomGLKView.swift":{"swiftmodule":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/CustomGLKView-E191E5DC19D9D69B~partial.swiftmodule","object":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/CustomGLKView-E191E5DC19D9D69B.o","llvm-bc":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/CustomGLKView-E191E5DC19D9D69B.bc","diagnostics":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/CustomGLKView-E191E5DC19D9D69B.dia","dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/CustomGLKView-E191E5DC19D9D69B.d","swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/CustomGLKView-E191E5DC19D9D69B.swiftdeps"},"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/ViewController.swift":{"swiftmodule":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/ViewController~partial.swiftmodule","object":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/ViewController.o","llvm-bc":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/ViewController.bc","diagnostics":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/ViewController.dia","dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/ViewController.d","swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/ViewController.swiftdeps"},"":{"swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/salmontemplate-master.swiftdeps"},"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/AppDelegate.swift":{"swiftmodule":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/AppDelegate~partial.swiftmodule","object":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/AppDelegate.o","llvm-bc":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/AppDelegate.bc","diagnostics":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/AppDelegate.dia","dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/AppDelegate.d","swift-dependencies":"\/Users\/robertkhayreev\/ios_workspace\/double-hit-balls\/proj.ios\/build\/salmontemplate.build\/Debug-iphonesimulator\/salmontemplate.build\/Objects-normal\/x86_64\/AppDelegate.swiftdeps"}} \ No newline at end of file diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-Swift.h b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-Swift.h new file mode 100644 index 0000000..fc2d6c1 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-Swift.h @@ -0,0 +1,188 @@ +// Generated by Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if defined(__has_attribute) && __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +@import GLKit; +@import CoreGraphics; +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UIWindow; +@class UIViewController; +@class UIApplication; + +SWIFT_CLASS("_TtC14salmontemplate11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +@property (nonatomic, strong) UIViewController * _Nullable viewController; +- (void)applicationDidFinishLaunching:(UIApplication * _Nonnull)application; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class NSCoder; +@class UITouch; +@class UIEvent; +@class EAGLContext; + +SWIFT_CLASS("_TtC14salmontemplate15GLKViewTemplate") +@interface GLKViewTemplate : GLKView +- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +- (void)addTouchToHashWithTouch:(UITouch * _Nonnull)touch; +- (void)removeTouchFromHashWithTouch:(UITouch * _Nonnull)touch; +- (void)touchesBegan:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesEnded:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (void)touchesCancelled:(NSSet * _Nonnull)touches withEvent:(UIEvent * _Nullable)event; +- (nonnull instancetype)initWithFrame:(CGRect)frame context:(EAGLContext * _Nonnull)context SWIFT_UNAVAILABLE; +@end + +@class UITextField; +@class UIPinchGestureRecognizer; +@class NSNotification; +@class NSBundle; + +SWIFT_CLASS("_TtC14salmontemplate22ViewControllerTemplate") +@interface ViewControllerTemplate : GLKViewController +@property (nonatomic, strong) UITextField * _Nullable hiddenTextField; +- (void)viewDidLoad; +- (void)setupGL; +- (void)tearDownGL; +- (void)appInitCaller; +- (void)respondToPinchWithGestureRecognizer:(UIPinchGestureRecognizer * _Nonnull)gestureRecognizer; +- (void)onReceiveKeyboardNotificationWithNotification:(NSNotification * _Nonnull)notification; +- (void)textFieldDidBeginEditing:(UITextField * _Nonnull)textField; +- (void)textFieldDidEndEditing:(UITextField * _Nonnull)textField; +- (BOOL)textField:(UITextField * _Nonnull)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString * _Nonnull)string; +- (void)update; +- (void)glkView:(GLKView * _Nonnull)view drawInRect:(CGRect)rect; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC14salmontemplate14ViewController") +@interface ViewController : ViewControllerTemplate +- (void)appInitCaller; +@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +#pragma clang diagnostic pop diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-master.swiftdeps b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-master.swiftdeps new file mode 100644 index 0000000..8bd4a3c --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate-master.swiftdeps @@ -0,0 +1,7 @@ +version: "Apple Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1)" +options: "158529e80e14962ad98bbd4d33157338" +build_time: [537963943, 706281000] +inputs: + "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/AppDelegate.swift": [537893392, 0] + "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/CustomGLKView.swift": [537957087, 0] + "/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/ViewController.swift": [537957087, 0] diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.LinkFileList b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.LinkFileList new file mode 100644 index 0000000..cc4638b --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.LinkFileList @@ -0,0 +1,11 @@ +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/creditscode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/gamecode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/main_code.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/loadingcode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/SENamespaceWrapper.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/menucode.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ios_api.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-BF7820DFD49B288C.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/AppDelegate.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/CustomGLKView-E191E5DC19D9D69B.o +/Users/robertkhayreev/ios_workspace/double-hit-balls/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/ViewController.o diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.swiftdoc b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.swiftdoc new file mode 100644 index 0000000..342487f Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.swiftdoc differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.swiftmodule b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.swiftmodule new file mode 100644 index 0000000..bd918b1 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate.swiftmodule differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate_dependency_info.dat b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate_dependency_info.dat new file mode 100644 index 0000000..11bde05 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/Objects-normal/x86_64/salmontemplate_dependency_info.dat differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/ViewController_iPad-PartialInfo.plist b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/ViewController_iPad-PartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/ViewController_iPad-PartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/ViewController_iPhone-PartialInfo.plist b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/ViewController_iPhone-PartialInfo.plist new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/ViewController_iPhone-PartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/dgph b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/dgph new file mode 100644 index 0000000..2e22206 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/dgph differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/dgph~ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/dgph~ new file mode 100644 index 0000000..2e22206 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/dgph~ differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-non-framework-target-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-non-framework-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-non-framework-target-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-all-target-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-generated-files.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap new file mode 100644 index 0000000..dc511c4 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-own-target-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap new file mode 100644 index 0000000..ef2dbe0 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate-project-headers.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate.app.xcent b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate.app.xcent new file mode 100644 index 0000000..ec1e5e3 --- /dev/null +++ b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate.app.xcent @@ -0,0 +1,12 @@ + + + + + application-identifier + R89DR83966.fishrungames.template + keychain-access-groups + + R89DR83966.fishrungames.template + + + diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate.hmap new file mode 100644 index 0000000..b5e4814 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/salmontemplate.hmap differ diff --git a/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/swift-overrides.hmap b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/swift-overrides.hmap new file mode 100644 index 0000000..05190a6 Binary files /dev/null and b/proj.ios/build/salmontemplate.build/Debug-iphonesimulator/salmontemplate.build/swift-overrides.hmap differ diff --git a/proj.ios/en.lproj/InfoPlist.strings b/proj.ios/en.lproj/InfoPlist.strings new file mode 100755 index 0000000..0f167df --- /dev/null +++ b/proj.ios/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/proj.ios/en.lproj/ViewController_iPad.xib b/proj.ios/en.lproj/ViewController_iPad.xib new file mode 100755 index 0000000..eb81e88 --- /dev/null +++ b/proj.ios/en.lproj/ViewController_iPad.xib @@ -0,0 +1,133 @@ + + + + 1296 + 11E53 + 2182 + 1138.47 + 569.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 1181 + + + IBProxyObject + IBUIView + + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + PluginDependencyRecalculationVersion + + + + + IBFilesOwner + IBIPadFramework + + + IBFirstResponder + IBIPadFramework + + + + 274 + {{0, 20}, {768, 1004}} + + + + 3 + MQA + + 2 + + + + 2 + + IBIPadFramework + + + + + + + view + + + + 3 + + + + + + 0 + + + + + + 1 + + + + + -1 + + + File's Owner + + + -2 + + + + + + + ViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + UIResponder + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + CustomGLKView + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + + + + 3 + + + + + CustomGLKView + GLKView + + IBProjectSource + ./Classes/CustomGLKView.h + + + + ViewController + GLKViewController + + IBProjectSource + ./Classes/ViewController.h + + + + + 0 + IBIPadFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + YES + 3 + 1181 + + diff --git a/proj.ios/en.lproj/ViewController_iPhone.xib b/proj.ios/en.lproj/ViewController_iPhone.xib new file mode 100755 index 0000000..96a4a92 --- /dev/null +++ b/proj.ios/en.lproj/ViewController_iPhone.xib @@ -0,0 +1,111 @@ + + + + 1296 + 11E53 + 2182 + 1138.47 + 569.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 1181 + + + IBProxyObject + IBUIView + + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + PluginDependencyRecalculationVersion + + + + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 274 + {320, 460} + + + 3 + MQA + + 2 + + + NO + IBCocoaTouchFramework + + + + + + + view + + + + 3 + + + + + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 2 + + + + + + + ViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + UIResponder + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + CustomGLKView + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + + + + 4 + + + 0 + IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + + YES + 3 + 1181 + + diff --git a/proj.ios/ios_api.cpp b/proj.ios/ios_api.cpp new file mode 100755 index 0000000..cfbaa06 --- /dev/null +++ b/proj.ios/ios_api.cpp @@ -0,0 +1,8 @@ +#include "include/Engine.h" +#include "main_code.h" + + +extern "C" void CustomAppInit() +{ + AppInit(480, 320); +} diff --git a/proj.ios/ios_api.h b/proj.ios/ios_api.h new file mode 100755 index 0000000..e83ed47 --- /dev/null +++ b/proj.ios/ios_api.h @@ -0,0 +1,6 @@ + +#ifdef __cplusplus +extern "C" void CustomAppInit(); +#else +void CustomAppInit(); +#endif diff --git a/proj.ios/res/Icon.png b/proj.ios/res/Icon.png new file mode 100755 index 0000000..b6880bf Binary files /dev/null and b/proj.ios/res/Icon.png differ diff --git a/proj.ios/res/Splash-landscape.png b/proj.ios/res/Splash-landscape.png new file mode 100755 index 0000000..61dbcaa Binary files /dev/null and b/proj.ios/res/Splash-landscape.png differ diff --git a/proj.ios/res/iTunesArtwork b/proj.ios/res/iTunesArtwork new file mode 100755 index 0000000..876e97d Binary files /dev/null and b/proj.ios/res/iTunesArtwork differ diff --git a/proj.ios/salmontemplate-Bridging-Header.h b/proj.ios/salmontemplate-Bridging-Header.h new file mode 100644 index 0000000..452d5c3 --- /dev/null +++ b/proj.ios/salmontemplate-Bridging-Header.h @@ -0,0 +1,8 @@ +// +// Use this file to import your target's public headers that you would like to expose to Swift. +// + +//#include "include/Utils/IosApi + +#import "SENamespaceWrapper.h" +#import "ios_api.h" diff --git a/proj.ios/salmontemplate.xcodeproj/project.pbxproj b/proj.ios/salmontemplate.xcodeproj/project.pbxproj new file mode 100755 index 0000000..2506c28 --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/project.pbxproj @@ -0,0 +1,602 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 4C49B2BE15B0991B003512CD /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C49B2BD15B0991B003512CD /* UIKit.framework */; }; + 4C49B2C015B0991B003512CD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C49B2BF15B0991B003512CD /* Foundation.framework */; }; + 4C49B2C215B0991B003512CD /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C49B2C115B0991B003512CD /* CoreGraphics.framework */; }; + 4C49B2C415B0991B003512CD /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C49B2C315B0991B003512CD /* GLKit.framework */; }; + 4C49B2C615B0991B003512CD /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C49B2C515B0991B003512CD /* OpenGLES.framework */; }; + 4C49B2CC15B0991B003512CD /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4C49B2CA15B0991B003512CD /* InfoPlist.strings */; }; + 4C49B2DC15B0991B003512CD /* ViewController_iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4C49B2DA15B0991B003512CD /* ViewController_iPhone.xib */; }; + 4C49B2DF15B0991B003512CD /* ViewController_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4C49B2DD15B0991B003512CD /* ViewController_iPad.xib */; }; + 4C74848615C5AD6E0056EC44 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C74848315C5AD6E0056EC44 /* Icon.png */; }; + 4C74848715C5AD6E0056EC44 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = 4C74848415C5AD6E0056EC44 /* iTunesArtwork */; }; + 4C74848815C5AD6E0056EC44 /* Splash-landscape.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C74848515C5AD6E0056EC44 /* Splash-landscape.png */; }; + 4C77831815BABE26003D5142 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C77831415BABD8B003D5142 /* AudioToolbox.framework */; }; + 4C77831915BABE26003D5142 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C77831515BABD8B003D5142 /* OpenAL.framework */; }; + 4C7AD44C15B1D77700A599F6 /* ios_api.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C7AD44B15B1D77700A599F6 /* ios_api.cpp */; }; + 4CCC0ECC15B30D6B005432FB /* CustomGLKView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CCC0ECB15B30D6B005432FB /* CustomGLKView.mm */; }; + 4CE6A9D215B2F979006A3965 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 4CE6A9D115B2F979006A3965 /* assets */; }; + 74AC9EBD1E2CE407003C9749 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74AC9EBC1E2CE407003C9749 /* ViewController.swift */; }; + 74AC9EC11E2CF533003C9749 /* SENamespaceWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74AC9EBF1E2CF533003C9749 /* SENamespaceWrapper.cpp */; }; + 74C3AE2E1E2E2A40003C07F2 /* creditscode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74C3AE251E2E2A40003C07F2 /* creditscode.cpp */; }; + 74C3AE2F1E2E2A40003C07F2 /* gamecode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74C3AE281E2E2A40003C07F2 /* gamecode.cpp */; }; + 74C3AE301E2E2A40003C07F2 /* loadingcode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74C3AE2A1E2E2A40003C07F2 /* loadingcode.cpp */; }; + 74C3AE311E2E2A40003C07F2 /* menucode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74C3AE2C1E2E2A40003C07F2 /* menucode.cpp */; }; + 74EEBAEF1E2D13A6004C6C65 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EEBAEE1E2D13A6004C6C65 /* AppDelegate.swift */; }; + 74EEBAF11E2D1C7C004C6C65 /* CustomGLKView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EEBAF01E2D1C7C004C6C65 /* CustomGLKView.swift */; }; + 84D0FEBE1E274DDD00EC3FE5 /* libSalmon Engine.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C902A7815C5735700FBC901 /* libSalmon Engine.a */; }; + 84D0FEC91E274E4A00EC3FE5 /* libvorbis-tremor-ios.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0FEC61E274E3700EC3FE5 /* libvorbis-tremor-ios.a */; }; + 84D0FECC1E274EBC00EC3FE5 /* main_code.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84D0FECA1E274EBC00EC3FE5 /* main_code.cpp */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 4C902A7715C5735700FBC901 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 4C902A7015C5735500FBC901 /* Salmon Engine.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 4C8CE90215B0A0F400078175; + remoteInfo = "Salmon Engine"; + }; + 84D0FEBF1E274DF700EC3FE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 4C902A7015C5735500FBC901 /* Salmon Engine.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 4C8CE90115B0A0F400078175; + remoteInfo = "Salmon Engine"; + }; + 84D0FEC51E274E3700EC3FE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 84D0FEC11E274E3700EC3FE5 /* vorbis-tremor-ios.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 4C77827D15BAB67E003D5142; + remoteInfo = "vorbis-tremor-ios"; + }; + 84D0FEC71E274E3F00EC3FE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 84D0FEC11E274E3700EC3FE5 /* vorbis-tremor-ios.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 4C77827C15BAB67E003D5142; + remoteInfo = "vorbis-tremor-ios"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 4C49B2B915B0991B003512CD /* salmontemplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = salmontemplate.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 4C49B2BD15B0991B003512CD /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 4C49B2BF15B0991B003512CD /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 4C49B2C115B0991B003512CD /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 4C49B2C315B0991B003512CD /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; }; + 4C49B2C515B0991B003512CD /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + 4C49B2C915B0991B003512CD /* template-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "template-Info.plist"; sourceTree = ""; }; + 4C49B2CB15B0991B003512CD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 4C49B2CF15B0991B003512CD /* template-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "template-Prefix.pch"; sourceTree = ""; }; + 4C49B2DB15B0991B003512CD /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController_iPhone.xib; sourceTree = ""; }; + 4C49B2DE15B0991B003512CD /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController_iPad.xib; sourceTree = ""; }; + 4C74848315C5AD6E0056EC44 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon.png; path = res/Icon.png; sourceTree = ""; }; + 4C74848415C5AD6E0056EC44 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; name = iTunesArtwork; path = res/iTunesArtwork; sourceTree = ""; }; + 4C74848515C5AD6E0056EC44 /* Splash-landscape.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Splash-landscape.png"; path = "res/Splash-landscape.png"; sourceTree = ""; }; + 4C77831415BABD8B003D5142 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; + 4C77831515BABD8B003D5142 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; }; + 4C7AD44B15B1D77700A599F6 /* ios_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ios_api.cpp; sourceTree = ""; }; + 4C902A7015C5735500FBC901 /* Salmon Engine.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "Salmon Engine.xcodeproj"; path = "../../Engine/iOS/Salmon Engine/Salmon Engine.xcodeproj"; sourceTree = ""; }; + 4CCC0ECA15B30D6A005432FB /* CustomGLKView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomGLKView.h; sourceTree = ""; }; + 4CCC0ECB15B30D6B005432FB /* CustomGLKView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CustomGLKView.mm; sourceTree = ""; }; + 4CCC0ECD15B310FB005432FB /* ios_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ios_api.h; sourceTree = ""; }; + 4CE6A9D115B2F979006A3965 /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = assets; path = ../assets; sourceTree = ""; }; + 74AC9EBB1E2CE407003C9749 /* salmontemplate-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "salmontemplate-Bridging-Header.h"; sourceTree = ""; }; + 74AC9EBC1E2CE407003C9749 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 74AC9EBF1E2CF533003C9749 /* SENamespaceWrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SENamespaceWrapper.cpp; sourceTree = ""; }; + 74AC9EC01E2CF533003C9749 /* SENamespaceWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SENamespaceWrapper.h; sourceTree = ""; }; + 74C3AE251E2E2A40003C07F2 /* creditscode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = creditscode.cpp; path = ../game/creditscode.cpp; sourceTree = ""; }; + 74C3AE261E2E2A40003C07F2 /* creditscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = creditscode.h; path = ../game/creditscode.h; sourceTree = ""; }; + 74C3AE271E2E2A40003C07F2 /* game_area_interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = game_area_interface.h; path = ../game/game_area_interface.h; sourceTree = ""; }; + 74C3AE281E2E2A40003C07F2 /* gamecode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = gamecode.cpp; path = ../game/gamecode.cpp; sourceTree = ""; }; + 74C3AE291E2E2A40003C07F2 /* gamecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gamecode.h; path = ../game/gamecode.h; sourceTree = ""; }; + 74C3AE2A1E2E2A40003C07F2 /* loadingcode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = loadingcode.cpp; path = ../game/loadingcode.cpp; sourceTree = ""; }; + 74C3AE2B1E2E2A40003C07F2 /* loadingcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loadingcode.h; path = ../game/loadingcode.h; sourceTree = ""; }; + 74C3AE2C1E2E2A40003C07F2 /* menucode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = menucode.cpp; path = ../game/menucode.cpp; sourceTree = ""; }; + 74C3AE2D1E2E2A40003C07F2 /* menucode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = menucode.h; path = ../game/menucode.h; sourceTree = ""; }; + 74EEBAEE1E2D13A6004C6C65 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 74EEBAF01E2D1C7C004C6C65 /* CustomGLKView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomGLKView.swift; sourceTree = ""; }; + 84D0FEC11E274E3700EC3FE5 /* vorbis-tremor-ios.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "vorbis-tremor-ios.xcodeproj"; path = "../../libs/vorbis-tremor-ios/vorbis-tremor-ios.xcodeproj"; sourceTree = ""; }; + 84D0FECA1E274EBC00EC3FE5 /* main_code.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main_code.cpp; path = ../game/main_code.cpp; sourceTree = ""; }; + 84D0FECB1E274EBC00EC3FE5 /* main_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = main_code.h; path = ../game/main_code.h; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 4C49B2B615B0991B003512CD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 84D0FEC91E274E4A00EC3FE5 /* libvorbis-tremor-ios.a in Frameworks */, + 84D0FEBE1E274DDD00EC3FE5 /* libSalmon Engine.a in Frameworks */, + 4C77831815BABE26003D5142 /* AudioToolbox.framework in Frameworks */, + 4C77831915BABE26003D5142 /* OpenAL.framework in Frameworks */, + 4C49B2BE15B0991B003512CD /* UIKit.framework in Frameworks */, + 4C49B2C015B0991B003512CD /* Foundation.framework in Frameworks */, + 4C49B2C215B0991B003512CD /* CoreGraphics.framework in Frameworks */, + 4C49B2C415B0991B003512CD /* GLKit.framework in Frameworks */, + 4C49B2C615B0991B003512CD /* OpenGLES.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 4C49B2AE15B0991B003512CD = { + isa = PBXGroup; + children = ( + 84D0FEC11E274E3700EC3FE5 /* vorbis-tremor-ios.xcodeproj */, + 4C902A7015C5735500FBC901 /* Salmon Engine.xcodeproj */, + 4C7B819515C40F770024D61A /* Libs */, + 4CC1FC3415B200130025C6F7 /* Resources */, + 4C49B2C715B0991B003512CD /* Sources */, + 4C49B2BC15B0991B003512CD /* Frameworks */, + 4C49B2BA15B0991B003512CD /* Products */, + ); + sourceTree = ""; + }; + 4C49B2BA15B0991B003512CD /* Products */ = { + isa = PBXGroup; + children = ( + 4C49B2B915B0991B003512CD /* salmontemplate.app */, + ); + name = Products; + sourceTree = ""; + }; + 4C49B2BC15B0991B003512CD /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4C77831415BABD8B003D5142 /* AudioToolbox.framework */, + 4C77831515BABD8B003D5142 /* OpenAL.framework */, + 4C49B2BD15B0991B003512CD /* UIKit.framework */, + 4C49B2BF15B0991B003512CD /* Foundation.framework */, + 4C49B2C115B0991B003512CD /* CoreGraphics.framework */, + 4C49B2C315B0991B003512CD /* GLKit.framework */, + 4C49B2C515B0991B003512CD /* OpenGLES.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 4C49B2C715B0991B003512CD /* Sources */ = { + isa = PBXGroup; + children = ( + 4CE6A9E315B2F9A4006A3965 /* Game */, + 4CCC0ECD15B310FB005432FB /* ios_api.h */, + 4C7AD44B15B1D77700A599F6 /* ios_api.cpp */, + 74AC9EBC1E2CE407003C9749 /* ViewController.swift */, + 74EEBAEE1E2D13A6004C6C65 /* AppDelegate.swift */, + 74EEBAF01E2D1C7C004C6C65 /* CustomGLKView.swift */, + 4C49B2DA15B0991B003512CD /* ViewController_iPhone.xib */, + 4C49B2DD15B0991B003512CD /* ViewController_iPad.xib */, + 4C49B2C815B0991B003512CD /* Supporting Files */, + 4CCC0ECA15B30D6A005432FB /* CustomGLKView.h */, + 4CCC0ECB15B30D6B005432FB /* CustomGLKView.mm */, + ); + name = Sources; + sourceTree = ""; + }; + 4C49B2C815B0991B003512CD /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 4C49B2C915B0991B003512CD /* template-Info.plist */, + 4C49B2CA15B0991B003512CD /* InfoPlist.strings */, + 4C49B2CF15B0991B003512CD /* template-Prefix.pch */, + 74AC9EBB1E2CE407003C9749 /* salmontemplate-Bridging-Header.h */, + 74AC9EC01E2CF533003C9749 /* SENamespaceWrapper.h */, + 74AC9EBF1E2CF533003C9749 /* SENamespaceWrapper.cpp */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 4C7B819515C40F770024D61A /* Libs */ = { + isa = PBXGroup; + children = ( + ); + name = Libs; + sourceTree = ""; + }; + 4C902A7115C5735500FBC901 /* Products */ = { + isa = PBXGroup; + children = ( + 4C902A7815C5735700FBC901 /* libSalmon Engine.a */, + ); + name = Products; + sourceTree = ""; + }; + 4CC1FC3415B200130025C6F7 /* Resources */ = { + isa = PBXGroup; + children = ( + 4C74848315C5AD6E0056EC44 /* Icon.png */, + 4C74848415C5AD6E0056EC44 /* iTunesArtwork */, + 4C74848515C5AD6E0056EC44 /* Splash-landscape.png */, + 4CE6A9D115B2F979006A3965 /* assets */, + ); + name = Resources; + sourceTree = ""; + }; + 4CE6A9E315B2F9A4006A3965 /* Game */ = { + isa = PBXGroup; + children = ( + 74C3AE251E2E2A40003C07F2 /* creditscode.cpp */, + 74C3AE261E2E2A40003C07F2 /* creditscode.h */, + 74C3AE271E2E2A40003C07F2 /* game_area_interface.h */, + 74C3AE281E2E2A40003C07F2 /* gamecode.cpp */, + 74C3AE291E2E2A40003C07F2 /* gamecode.h */, + 74C3AE2A1E2E2A40003C07F2 /* loadingcode.cpp */, + 74C3AE2B1E2E2A40003C07F2 /* loadingcode.h */, + 74C3AE2C1E2E2A40003C07F2 /* menucode.cpp */, + 74C3AE2D1E2E2A40003C07F2 /* menucode.h */, + 84D0FECA1E274EBC00EC3FE5 /* main_code.cpp */, + 84D0FECB1E274EBC00EC3FE5 /* main_code.h */, + ); + name = Game; + sourceTree = ""; + }; + 84D0FEC21E274E3700EC3FE5 /* Products */ = { + isa = PBXGroup; + children = ( + 84D0FEC61E274E3700EC3FE5 /* libvorbis-tremor-ios.a */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 4C49B2B815B0991B003512CD /* salmontemplate */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4C49B2E215B0991B003512CD /* Build configuration list for PBXNativeTarget "salmontemplate" */; + buildPhases = ( + 4C49B2B515B0991B003512CD /* Sources */, + 4C49B2B715B0991B003512CD /* Resources */, + 4C49B2B615B0991B003512CD /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 84D0FEC81E274E3F00EC3FE5 /* PBXTargetDependency */, + 84D0FEC01E274DF700EC3FE5 /* PBXTargetDependency */, + ); + name = salmontemplate; + productName = doublehitballs; + productReference = 4C49B2B915B0991B003512CD /* salmontemplate.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 4C49B2B015B0991B003512CD /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0800; + TargetAttributes = { + 4C49B2B815B0991B003512CD = { + DevelopmentTeam = R89DR83966; + LastSwiftMigration = 0820; + }; + }; + }; + buildConfigurationList = 4C49B2B315B0991B003512CD /* Build configuration list for PBXProject "salmontemplate" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 4C49B2AE15B0991B003512CD; + productRefGroup = 4C49B2BA15B0991B003512CD /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 4C902A7115C5735500FBC901 /* Products */; + ProjectRef = 4C902A7015C5735500FBC901 /* Salmon Engine.xcodeproj */; + }, + { + ProductGroup = 84D0FEC21E274E3700EC3FE5 /* Products */; + ProjectRef = 84D0FEC11E274E3700EC3FE5 /* vorbis-tremor-ios.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 4C49B2B815B0991B003512CD /* salmontemplate */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 4C902A7815C5735700FBC901 /* libSalmon Engine.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libSalmon Engine.a"; + remoteRef = 4C902A7715C5735700FBC901 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 84D0FEC61E274E3700EC3FE5 /* libvorbis-tremor-ios.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libvorbis-tremor-ios.a"; + remoteRef = 84D0FEC51E274E3700EC3FE5 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 4C49B2B715B0991B003512CD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4C49B2CC15B0991B003512CD /* InfoPlist.strings in Resources */, + 4C49B2DC15B0991B003512CD /* ViewController_iPhone.xib in Resources */, + 4C49B2DF15B0991B003512CD /* ViewController_iPad.xib in Resources */, + 4CE6A9D215B2F979006A3965 /* assets in Resources */, + 4C74848615C5AD6E0056EC44 /* Icon.png in Resources */, + 4C74848715C5AD6E0056EC44 /* iTunesArtwork in Resources */, + 4C74848815C5AD6E0056EC44 /* Splash-landscape.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 4C49B2B515B0991B003512CD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74EEBAEF1E2D13A6004C6C65 /* AppDelegate.swift in Sources */, + 74C3AE2E1E2E2A40003C07F2 /* creditscode.cpp in Sources */, + 74C3AE2F1E2E2A40003C07F2 /* gamecode.cpp in Sources */, + 74EEBAF11E2D1C7C004C6C65 /* CustomGLKView.swift in Sources */, + 84D0FECC1E274EBC00EC3FE5 /* main_code.cpp in Sources */, + 74C3AE301E2E2A40003C07F2 /* loadingcode.cpp in Sources */, + 74AC9EBD1E2CE407003C9749 /* ViewController.swift in Sources */, + 74AC9EC11E2CF533003C9749 /* SENamespaceWrapper.cpp in Sources */, + 74C3AE311E2E2A40003C07F2 /* menucode.cpp in Sources */, + 4C7AD44C15B1D77700A599F6 /* ios_api.cpp in Sources */, + 4CCC0ECC15B30D6B005432FB /* CustomGLKView.mm in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 84D0FEC01E274DF700EC3FE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Salmon Engine"; + targetProxy = 84D0FEBF1E274DF700EC3FE5 /* PBXContainerItemProxy */; + }; + 84D0FEC81E274E3F00EC3FE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "vorbis-tremor-ios"; + targetProxy = 84D0FEC71E274E3F00EC3FE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 4C49B2CA15B0991B003512CD /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 4C49B2CB15B0991B003512CD /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + 4C49B2DA15B0991B003512CD /* ViewController_iPhone.xib */ = { + isa = PBXVariantGroup; + children = ( + 4C49B2DB15B0991B003512CD /* en */, + ); + name = ViewController_iPhone.xib; + sourceTree = ""; + }; + 4C49B2DD15B0991B003512CD /* ViewController_iPad.xib */ = { + isa = PBXVariantGroup; + children = ( + 4C49B2DE15B0991B003512CD /* en */, + ); + name = ViewController_iPad.xib; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 4C49B2E015B0991B003512CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = ( + "$(ARCHS_STANDARD)", + x86_64, + ); + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALID_ARCHS = "arm64 armv7 armv7s i386 x86_64"; + }; + name = Debug; + }; + 4C49B2E115B0991B003512CD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = ( + "$(ARCHS_STANDARD)", + x86_64, + ); + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VALID_ARCHS = "arm64 armv7 armv7s i386 x86_64"; + }; + name = Release; + }; + 4C49B2E315B0991B003512CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + DEVELOPMENT_TEAM = R89DR83966; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "template-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + TARGET_IOS, + DEBUG, + "$(inherited)", + BOOST_NO_CXX11_NUMERIC_LIMITS, + ); + GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ""; + "GCC_THUMB_SUPPORT[arch=armv6]" = ""; + HEADER_SEARCH_PATHS = ( + ../../engine, + ../../libs/lpng1510, + ../../libs/sqplus/sqplus, + ../../libs/sqplus/include, + ../../boost_1_63_0, + ../game, + "../../libs/vorbis-tremor-ios/vorbis", + "../../libs/jpeg-9", + "../../libs/jpeg-9/vc10", + ); + INFOPLIST_FILE = "template-Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = fishrungames.template; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "salmontemplate-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + SYMROOT = build; + TARGETED_DEVICE_FAMILY = 1; + VALID_ARCHS = "arm64 armv7 armv7s i386 x86_64"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 4C49B2E415B0991B003512CD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + DEVELOPMENT_TEAM = R89DR83966; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "template-Prefix.pch"; + GCC_PREPROCESSOR_DEFINITIONS = ( + TARGET_IOS, + BOOST_NO_CXX11_NUMERIC_LIMITS, + ); + GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = ""; + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + "GCC_THUMB_SUPPORT[arch=armv6]" = ""; + HEADER_SEARCH_PATHS = ( + ../../engine, + ../../libs/lpng1510, + ../../libs/sqplus/sqplus, + ../../libs/sqplus/include, + ../../boost_1_63_0, + ../game, + "../../libs/vorbis-tremor-ios/vorbis", + "../../libs/jpeg-9", + "../../libs/jpeg-9/vc10", + ); + INFOPLIST_FILE = "template-Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = fishrungames.template; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "salmontemplate-Bridging-Header.h"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = 1; + VALID_ARCHS = "arm64 armv7 armv7s i386 x86_64"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4C49B2B315B0991B003512CD /* Build configuration list for PBXProject "salmontemplate" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4C49B2E015B0991B003512CD /* Debug */, + 4C49B2E115B0991B003512CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4C49B2E215B0991B003512CD /* Build configuration list for PBXNativeTarget "salmontemplate" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4C49B2E315B0991B003512CD /* Debug */, + 4C49B2E415B0991B003512CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 4C49B2B015B0991B003512CD /* Project object */; +} diff --git a/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcshareddata/salmontemplate.xcscmblueprint b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcshareddata/salmontemplate.xcscmblueprint new file mode 100644 index 0000000..9a76ab2 --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcshareddata/salmontemplate.xcscmblueprint @@ -0,0 +1,44 @@ +{ + "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "2AD24AAE48399F8E22FBC73AD5FD8C74EE16365D", + "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { + + }, + "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { + "BE9D9983110387292D5CB4F272304D6C83D04C6D" : 9223372036854775807, + "1A5242F72A7D6830805208F1DACB2505CEF9E8BC" : 9223372036854775807, + "2AD24AAE48399F8E22FBC73AD5FD8C74EE16365D" : 9223372036854775807, + "06912967E8913965CA039D95E67B099E227979E9" : 9223372036854775807 + }, + "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "79288CE0-9822-4247-B002-4DC7C712C2A0", + "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { + "BE9D9983110387292D5CB4F272304D6C83D04C6D" : "libs\/", + "1A5242F72A7D6830805208F1DACB2505CEF9E8BC" : "engine\/", + "2AD24AAE48399F8E22FBC73AD5FD8C74EE16365D" : "double-hit-balls\/", + "06912967E8913965CA039D95E67B099E227979E9" : "SalmonEngineTemplate\/" + }, + "DVTSourceControlWorkspaceBlueprintNameKey" : "salmontemplate", + "DVTSourceControlWorkspaceBlueprintVersion" : 204, + "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "proj.ios\/salmontemplate.xcodeproj", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ + { + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "gitlab.fishrungames.com:salmon-engine-core\/SalmonEngineTemplate.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "06912967E8913965CA039D95E67B099E227979E9" + }, + { + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "gitlab.fishrungames.com:salmon-engine-core\/engine.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "1A5242F72A7D6830805208F1DACB2505CEF9E8BC" + }, + { + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "gitlab.fishrungames.com:salmon-engine-projects\/double-hit-balls.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "2AD24AAE48399F8E22FBC73AD5FD8C74EE16365D" + }, + { + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "gitlab.fishrungames.com:salmon-engine-core\/libs.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "BE9D9983110387292D5CB4F272304D6C83D04C6D" + } + ] +} \ No newline at end of file diff --git a/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcuserdata/robertkhayreev.xcuserdatad/UserInterfaceState.xcuserstate b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcuserdata/robertkhayreev.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..ba88d6f Binary files /dev/null and b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcuserdata/robertkhayreev.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcuserdata/robertkhayreev.xcuserdatad/WorkspaceSettings.xcsettings b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcuserdata/robertkhayreev.xcuserdatad/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..a8f6112 --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/project.xcworkspace/xcuserdata/robertkhayreev.xcuserdatad/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + BuildLocationStyle + UseTargetSettings + + diff --git a/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100644 index 0000000..f544b6d --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,39 @@ + + + + + + + + + + + + + diff --git a/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcschemes/salmontemplate.xcscheme b/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcschemes/salmontemplate.xcscheme new file mode 100644 index 0000000..10bbc5d --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcschemes/salmontemplate.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcschemes/xcschememanagement.plist b/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..4e7308f --- /dev/null +++ b/proj.ios/salmontemplate.xcodeproj/xcuserdata/robertkhayreev.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,22 @@ + + + + + SchemeUserState + + salmontemplate.xcscheme + + orderHint + 1 + + + SuppressBuildableAutocreation + + 4C49B2B815B0991B003512CD + + primary + + + + + diff --git a/proj.ios/template-Info.plist b/proj.ios/template-Info.plist new file mode 100755 index 0000000..b45d6f6 --- /dev/null +++ b/proj.ios/template-Info.plist @@ -0,0 +1,50 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + Salmon Universal Template + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + Icon.png + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + UILaunchImageFile + Splash-landscape.png + UIPrerenderedIcon + + UIRequiredDeviceCapabilities + + armv7 + + UIStatusBarHidden + + UISupportedInterfaceOrientations + + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/proj.ios/template-Prefix.pch b/proj.ios/template-Prefix.pch new file mode 100755 index 0000000..cd479f5 --- /dev/null +++ b/proj.ios/template-Prefix.pch @@ -0,0 +1,14 @@ +// +// Prefix header for all source files of the 'doublehitballs' target in the 'doublehitballs' project +// + +#import + +#ifndef __IPHONE_5_0 +#warning "This project uses features only available in iOS SDK 5.0 and later." +#endif + +#ifdef __OBJC__ + #import + #import +#endif