Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58ff13c70b | |||
| d6c5ab0629 | |||
| ea5b11e13c | |||
| 6ac137f9ff | |||
| 5e197fd1c5 | |||
| 0d91f5a054 | |||
| 09f58850e8 | |||
| 088d368709 | |||
| 4508acf2ed | |||
| 7ae3643508 | |||
| d6047dc471 | |||
| 3724c3000c | |||
| 38f28c9e3a | |||
| 5b3134f094 | |||
| 85efea0363 | |||
| dd8b5b9dc6 | |||
| 5775bbc2af | |||
| 0a9707d68f | |||
| c1c2f93793 | |||
| 3454df7198 | |||
| 5545e1bc43 | |||
| 367b516abd | |||
| de0957a62b | |||
| 9ce6b9092c | |||
| 7e32ee3482 | |||
| 0d188c8228 | |||
| 840d01e1b0 | |||
| 5c39ae71a7 | |||
| 51b5cd2f55 | |||
| acd7f3e859 | |||
| 01e2bcc6c7 | |||
| 8a45af6d52 | |||
| 5efb2a8437 | |||
| 92bebeb0c1 | |||
| 58f52a374c | |||
| b488e84664 | |||
| d06c49d3b6 | |||
| fcd6e4cf45 | |||
| 5e7e4136dc | |||
| e18df5a043 | |||
| 9e226ecd7e | |||
| f985e42589 | |||
| 9edd04f4e0 |
+30
-12
@@ -1,4 +1,27 @@
|
||||
.DS_Store
|
||||
## Build generated
|
||||
build/
|
||||
DerivedData
|
||||
|
||||
## Various settings
|
||||
*.pbxuser
|
||||
!default.pbxuser
|
||||
*.mode1v3
|
||||
!default.mode1v3
|
||||
*.mode2v3
|
||||
!default.mode2v3
|
||||
*.perspectivev3
|
||||
!default.perspectivev3
|
||||
xcuserdata
|
||||
|
||||
## Other
|
||||
*.xccheckout
|
||||
*.moved-aside
|
||||
*.xcuserstate
|
||||
*.xcscmblueprint
|
||||
|
||||
## Obj-C/Swift specific
|
||||
*.hmap
|
||||
*.ipa
|
||||
|
||||
*.xcuserstate
|
||||
|
||||
@@ -11,20 +34,15 @@ xcuserdata/
|
||||
|
||||
.DS_Store
|
||||
*.DS_Store
|
||||
build/
|
||||
*.pbxuser
|
||||
!default.pbxuser
|
||||
*.mode1v3
|
||||
!default.mode1v3
|
||||
*.mode2v3
|
||||
!default.mode2v3
|
||||
*.perspectivev3
|
||||
!default.perspectivev3
|
||||
|
||||
*.xcworkspace
|
||||
!default.xcworkspace
|
||||
xcuserdata
|
||||
profile
|
||||
*.moved-aside
|
||||
DerivedData
|
||||
.idea/
|
||||
*.LSOverride
|
||||
|
||||
# Cocoapods
|
||||
|
||||
Pods
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
|
||||
To [contribute](https://guides.github.com/activities/contributing-to-open-source/) to this project,
|
||||
|
||||
1. Fork the repo
|
||||
2. Branch off of `dev`
|
||||
3. Pull request back to `dev`
|
||||
4. Lettuce know if you have questions along the way
|
||||
@@ -1,11 +1,20 @@
|
||||
# VIMVideoPlayer
|
||||
|
||||
`VIMVideoPlayer` is a simple wrapper around the [`AVPlayer`](https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVPlayer_Class/index.html) and [`AVPlayerLayer`](https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVPlayerLayer_Class/index.html#//apple_ref/occ/cl/AVPlayerLayer) classes.
|
||||
`VIMVideoPlayer` is a simple wrapper around the [`AVPlayer`](https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVPlayer_Class/index.html) and [`AVPlayerLayer`](https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVPlayerLayer_Class/index.html#//apple_ref/occ/cl/AVPlayerLayer) classes. Check out the [Pegasus](https://github.com/vimeo/Pegasus) project for a demo.
|
||||
|
||||
## Setup
|
||||
|
||||
Add the `VIMVideoPlayerView` and `VIMVideoPlayer` classes to your project.
|
||||
|
||||
Do this by including it as a git submodule or by using cocoapods:
|
||||
|
||||
```Ruby
|
||||
# Add this to your podfile
|
||||
target 'MyTarget' do
|
||||
pod 'VIMVideoPlayer', '5.4.2'
|
||||
end
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Create a new `VIMVideoPlayerView` and add it to your view hierarchy:
|
||||
@@ -76,7 +85,7 @@ Optionally implement the `VIMVideoPlayerViewDelegate` protocol methods:
|
||||
|
||||
See `VIMVideoPlayer.h` for additional configuration options and functionality.
|
||||
|
||||
See `VIMVideoPlayerViewController` for an example of how to encapsulate a `VIMVideoPlayerView` instance with playback controls (play/pause/seek/airplay etc).
|
||||
See the [Pegasus](https://github.com/vimeo/Pegasus) project for an example of how to encapsulate a `VIMVideoPlayerView` instance with playback controls (play/pause/seek/airplay etc).
|
||||
|
||||
## License
|
||||
|
||||
@@ -86,6 +95,6 @@ See `VIMVideoPlayerViewController` for an example of how to encapsulate a `VIMVi
|
||||
|
||||
Tweet at us here: @vimeoapi
|
||||
|
||||
Post on [Stackoverflow](http://stackoverflow.com/questions/tagged/vimeo-api) with the tag `vimeo-api`
|
||||
Post on [Stackoverflow](http://stackoverflow.com/questions/tagged/vimeo-ios) with the tag `vimeo-ios`
|
||||
|
||||
Get in touch [here](Vimeo.com/help/contact)
|
||||
|
||||
@@ -1,448 +0,0 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
AFCC3C6F1ACD616E00D24B3B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCC3C6E1ACD616E00D24B3B /* main.m */; };
|
||||
AFCC3C721ACD616E00D24B3B /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCC3C711ACD616E00D24B3B /* AppDelegate.m */; };
|
||||
AFCC3C751ACD616E00D24B3B /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCC3C741ACD616E00D24B3B /* ViewController.m */; };
|
||||
AFCC3C781ACD616E00D24B3B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFCC3C761ACD616E00D24B3B /* Main.storyboard */; };
|
||||
AFCC3C7A1ACD616E00D24B3B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AFCC3C791ACD616E00D24B3B /* Images.xcassets */; };
|
||||
AFCC3C7D1ACD616E00D24B3B /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = AFCC3C7B1ACD616E00D24B3B /* LaunchScreen.xib */; };
|
||||
AFCC3C891ACD616E00D24B3B /* SagaTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCC3C881ACD616E00D24B3B /* SagaTests.m */; };
|
||||
AFCC3CA41ACD621800D24B3B /* VIMVideoPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCC3CA11ACD621800D24B3B /* VIMVideoPlayer.m */; };
|
||||
AFCC3CA51ACD621800D24B3B /* VIMVideoPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCC3CA31ACD621800D24B3B /* VIMVideoPlayerView.m */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
AFCC3C831ACD616E00D24B3B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = AFCC3C611ACD616E00D24B3B /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = AFCC3C681ACD616E00D24B3B;
|
||||
remoteInfo = Saga;
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
AFCC3C691ACD616E00D24B3B /* Saga.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Saga.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
AFCC3C6D1ACD616E00D24B3B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
AFCC3C6E1ACD616E00D24B3B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
||||
AFCC3C701ACD616E00D24B3B /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
||||
AFCC3C711ACD616E00D24B3B /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
||||
AFCC3C731ACD616E00D24B3B /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
|
||||
AFCC3C741ACD616E00D24B3B /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
|
||||
AFCC3C771ACD616E00D24B3B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
||||
AFCC3C791ACD616E00D24B3B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
||||
AFCC3C7C1ACD616E00D24B3B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
|
||||
AFCC3C821ACD616E00D24B3B /* SagaTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SagaTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
AFCC3C871ACD616E00D24B3B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
AFCC3C881ACD616E00D24B3B /* SagaTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SagaTests.m; sourceTree = "<group>"; };
|
||||
AFCC3CA01ACD621800D24B3B /* VIMVideoPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VIMVideoPlayer.h; sourceTree = "<group>"; };
|
||||
AFCC3CA11ACD621800D24B3B /* VIMVideoPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VIMVideoPlayer.m; sourceTree = "<group>"; };
|
||||
AFCC3CA21ACD621800D24B3B /* VIMVideoPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VIMVideoPlayerView.h; sourceTree = "<group>"; };
|
||||
AFCC3CA31ACD621800D24B3B /* VIMVideoPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VIMVideoPlayerView.m; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
AFCC3C661ACD616E00D24B3B /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
AFCC3C7F1ACD616E00D24B3B /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
AFCC3C601ACD616E00D24B3B = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3C6B1ACD616E00D24B3B /* Saga */,
|
||||
AFCC3C851ACD616E00D24B3B /* SagaTests */,
|
||||
AFCC3C6A1ACD616E00D24B3B /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C6A1ACD616E00D24B3B /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3C691ACD616E00D24B3B /* Saga.app */,
|
||||
AFCC3C821ACD616E00D24B3B /* SagaTests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C6B1ACD616E00D24B3B /* Saga */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3C701ACD616E00D24B3B /* AppDelegate.h */,
|
||||
AFCC3C711ACD616E00D24B3B /* AppDelegate.m */,
|
||||
AFCC3C731ACD616E00D24B3B /* ViewController.h */,
|
||||
AFCC3C741ACD616E00D24B3B /* ViewController.m */,
|
||||
AFCC3C9F1ACD621800D24B3B /* VIMVideoPlayer */,
|
||||
AFCC3C761ACD616E00D24B3B /* Main.storyboard */,
|
||||
AFCC3C791ACD616E00D24B3B /* Images.xcassets */,
|
||||
AFCC3C7B1ACD616E00D24B3B /* LaunchScreen.xib */,
|
||||
AFCC3C6C1ACD616E00D24B3B /* Supporting Files */,
|
||||
);
|
||||
path = Saga;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C6C1ACD616E00D24B3B /* Supporting Files */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3C6D1ACD616E00D24B3B /* Info.plist */,
|
||||
AFCC3C6E1ACD616E00D24B3B /* main.m */,
|
||||
);
|
||||
name = "Supporting Files";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C851ACD616E00D24B3B /* SagaTests */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3C881ACD616E00D24B3B /* SagaTests.m */,
|
||||
AFCC3C861ACD616E00D24B3B /* Supporting Files */,
|
||||
);
|
||||
path = SagaTests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C861ACD616E00D24B3B /* Supporting Files */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3C871ACD616E00D24B3B /* Info.plist */,
|
||||
);
|
||||
name = "Supporting Files";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C9F1ACD621800D24B3B /* VIMVideoPlayer */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
AFCC3CA01ACD621800D24B3B /* VIMVideoPlayer.h */,
|
||||
AFCC3CA11ACD621800D24B3B /* VIMVideoPlayer.m */,
|
||||
AFCC3CA21ACD621800D24B3B /* VIMVideoPlayerView.h */,
|
||||
AFCC3CA31ACD621800D24B3B /* VIMVideoPlayerView.m */,
|
||||
);
|
||||
name = VIMVideoPlayer;
|
||||
path = ../../VIMVideoPlayer;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
AFCC3C681ACD616E00D24B3B /* Saga */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = AFCC3C8C1ACD616E00D24B3B /* Build configuration list for PBXNativeTarget "Saga" */;
|
||||
buildPhases = (
|
||||
AFCC3C651ACD616E00D24B3B /* Sources */,
|
||||
AFCC3C661ACD616E00D24B3B /* Frameworks */,
|
||||
AFCC3C671ACD616E00D24B3B /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = Saga;
|
||||
productName = Saga;
|
||||
productReference = AFCC3C691ACD616E00D24B3B /* Saga.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
AFCC3C811ACD616E00D24B3B /* SagaTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = AFCC3C8F1ACD616E00D24B3B /* Build configuration list for PBXNativeTarget "SagaTests" */;
|
||||
buildPhases = (
|
||||
AFCC3C7E1ACD616E00D24B3B /* Sources */,
|
||||
AFCC3C7F1ACD616E00D24B3B /* Frameworks */,
|
||||
AFCC3C801ACD616E00D24B3B /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
AFCC3C841ACD616E00D24B3B /* PBXTargetDependency */,
|
||||
);
|
||||
name = SagaTests;
|
||||
productName = SagaTests;
|
||||
productReference = AFCC3C821ACD616E00D24B3B /* SagaTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
AFCC3C611ACD616E00D24B3B /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0620;
|
||||
ORGANIZATIONNAME = "Alfie Hanssen";
|
||||
TargetAttributes = {
|
||||
AFCC3C681ACD616E00D24B3B = {
|
||||
CreatedOnToolsVersion = 6.2;
|
||||
};
|
||||
AFCC3C811ACD616E00D24B3B = {
|
||||
CreatedOnToolsVersion = 6.2;
|
||||
TestTargetID = AFCC3C681ACD616E00D24B3B;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = AFCC3C641ACD616E00D24B3B /* Build configuration list for PBXProject "Saga" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
Base,
|
||||
);
|
||||
mainGroup = AFCC3C601ACD616E00D24B3B;
|
||||
productRefGroup = AFCC3C6A1ACD616E00D24B3B /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
AFCC3C681ACD616E00D24B3B /* Saga */,
|
||||
AFCC3C811ACD616E00D24B3B /* SagaTests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
AFCC3C671ACD616E00D24B3B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
AFCC3C781ACD616E00D24B3B /* Main.storyboard in Resources */,
|
||||
AFCC3C7D1ACD616E00D24B3B /* LaunchScreen.xib in Resources */,
|
||||
AFCC3C7A1ACD616E00D24B3B /* Images.xcassets in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
AFCC3C801ACD616E00D24B3B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
AFCC3C651ACD616E00D24B3B /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
AFCC3C751ACD616E00D24B3B /* ViewController.m in Sources */,
|
||||
AFCC3C721ACD616E00D24B3B /* AppDelegate.m in Sources */,
|
||||
AFCC3C6F1ACD616E00D24B3B /* main.m in Sources */,
|
||||
AFCC3CA51ACD621800D24B3B /* VIMVideoPlayerView.m in Sources */,
|
||||
AFCC3CA41ACD621800D24B3B /* VIMVideoPlayer.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
AFCC3C7E1ACD616E00D24B3B /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
AFCC3C891ACD616E00D24B3B /* SagaTests.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
AFCC3C841ACD616E00D24B3B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = AFCC3C681ACD616E00D24B3B /* Saga */;
|
||||
targetProxy = AFCC3C831ACD616E00D24B3B /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
AFCC3C761ACD616E00D24B3B /* Main.storyboard */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
AFCC3C771ACD616E00D24B3B /* Base */,
|
||||
);
|
||||
name = Main.storyboard;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
AFCC3C7B1ACD616E00D24B3B /* LaunchScreen.xib */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
AFCC3C7C1ACD616E00D24B3B /* Base */,
|
||||
);
|
||||
name = LaunchScreen.xib;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
AFCC3C8A1ACD616E00D24B3B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
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;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = iphoneos;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
AFCC3C8B1ACD616E00D24B3B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = iphoneos;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
AFCC3C8D1ACD616E00D24B3B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
INFOPLIST_FILE = Saga/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
AFCC3C8E1ACD616E00D24B3B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
INFOPLIST_FILE = Saga/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
AFCC3C901ACD616E00D24B3B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
"$(SDKROOT)/Developer/Library/Frameworks",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
INFOPLIST_FILE = SagaTests/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Saga.app/Saga";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
AFCC3C911ACD616E00D24B3B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
"$(SDKROOT)/Developer/Library/Frameworks",
|
||||
"$(inherited)",
|
||||
);
|
||||
INFOPLIST_FILE = SagaTests/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Saga.app/Saga";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
AFCC3C641ACD616E00D24B3B /* Build configuration list for PBXProject "Saga" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
AFCC3C8A1ACD616E00D24B3B /* Debug */,
|
||||
AFCC3C8B1ACD616E00D24B3B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
AFCC3C8C1ACD616E00D24B3B /* Build configuration list for PBXNativeTarget "Saga" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
AFCC3C8D1ACD616E00D24B3B /* Debug */,
|
||||
AFCC3C8E1ACD616E00D24B3B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
};
|
||||
AFCC3C8F1ACD616E00D24B3B /* Build configuration list for PBXNativeTarget "SagaTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
AFCC3C901ACD616E00D24B3B /* Debug */,
|
||||
AFCC3C911ACD616E00D24B3B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = AFCC3C611ACD616E00D24B3B /* Project object */;
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
//
|
||||
// AppDelegate.h
|
||||
// Saga
|
||||
//
|
||||
// Created by Alfred Hanssen on 4/2/15.
|
||||
// Copyright (c) 2015 Alfie Hanssen. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||||
|
||||
@property (strong, nonatomic) UIWindow *window;
|
||||
|
||||
|
||||
@end
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
//
|
||||
// AppDelegate.m
|
||||
// Saga
|
||||
//
|
||||
// Created by Alfred Hanssen on 4/2/15.
|
||||
// Copyright (c) 2015 Alfie Hanssen. All rights reserved.
|
||||
//
|
||||
|
||||
#import "AppDelegate.h"
|
||||
|
||||
@interface AppDelegate ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
|
||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||||
// Override point for customization after application launch.
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (void)applicationWillResignActive:(UIApplication *)application {
|
||||
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
||||
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
|
||||
}
|
||||
|
||||
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
||||
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
||||
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
|
||||
}
|
||||
|
||||
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
||||
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
|
||||
}
|
||||
|
||||
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
||||
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
||||
}
|
||||
|
||||
- (void)applicationWillTerminate:(UIApplication *)application {
|
||||
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
|
||||
}
|
||||
|
||||
@end
|
||||
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6214" systemVersion="14A314h" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
|
||||
<dependencies>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6207"/>
|
||||
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="iN0-l3-epB">
|
||||
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text=" Copyright (c) 2015 Alfie Hanssen. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
|
||||
<rect key="frame" x="20" y="439" width="441" height="21"/>
|
||||
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Saga" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
|
||||
<rect key="frame" x="20" y="140" width="441" height="43"/>
|
||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
|
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
||||
<constraints>
|
||||
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
|
||||
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
|
||||
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
|
||||
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
|
||||
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
|
||||
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
<point key="canvasLocation" x="548" y="455"/>
|
||||
</view>
|
||||
</objects>
|
||||
</document>
|
||||
@@ -1,97 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6751" systemVersion="14C109" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="vXZ-lx-hvc">
|
||||
<dependencies>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6736"/>
|
||||
</dependencies>
|
||||
<scenes>
|
||||
<!--View Controller-->
|
||||
<scene sceneID="ufC-wZ-h7g">
|
||||
<objects>
|
||||
<viewController id="vXZ-lx-hvc" customClass="ViewController" sceneMemberID="viewController">
|
||||
<layoutGuides>
|
||||
<viewControllerLayoutGuide type="top" id="jyV-Pf-zRb"/>
|
||||
<viewControllerLayoutGuide type="bottom" id="2fi-mo-0CV"/>
|
||||
</layoutGuides>
|
||||
<view key="view" contentMode="scaleToFill" id="kh9-bI-dsS">
|
||||
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
<subviews>
|
||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PwW-oT-K0O" userLabel="Controls View">
|
||||
<rect key="frame" x="0.0" y="556" width="600" height="44"/>
|
||||
<subviews>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nae-k5-OzC" userLabel="Play Button">
|
||||
<rect key="frame" x="0.0" y="0.0" width="44" height="44"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="44" id="1sa-PR-7nR"/>
|
||||
</constraints>
|
||||
<state key="normal" image="PlayIcon">
|
||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
||||
</state>
|
||||
<state key="selected" image="PauseIcon"/>
|
||||
<state key="highlighted" image="PauseIcon"/>
|
||||
<connections>
|
||||
<action selector="didTapPlay:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="Vdd-rt-uvD"/>
|
||||
</connections>
|
||||
</button>
|
||||
<slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" minValue="0.0" maxValue="1" translatesAutoresizingMaskIntoConstraints="NO" id="x5h-HM-LKJ" userLabel="Scrubber Slider">
|
||||
<rect key="frame" x="46" y="6" width="498" height="31"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="30" id="yA9-Zi-xra"/>
|
||||
</constraints>
|
||||
<connections>
|
||||
<action selector="scrubberSliderDidStartScrubbing:" destination="vXZ-lx-hvc" eventType="touchDown" id="cmE-up-vNe"/>
|
||||
<action selector="scrubberSliderDidStopScrubbing:" destination="vXZ-lx-hvc" eventType="touchCancel" id="8Td-Un-NsT"/>
|
||||
<action selector="scrubberSliderDidStopScrubbing:" destination="vXZ-lx-hvc" eventType="touchUpInside" id="QTX-c9-7fj"/>
|
||||
<action selector="scrubberSliderDidStopScrubbing:" destination="vXZ-lx-hvc" eventType="touchUpOutside" id="fCY-Gw-twf"/>
|
||||
<action selector="scrubberSliderValueDidChange:" destination="vXZ-lx-hvc" eventType="valueChanged" id="zjA-AP-1dr"/>
|
||||
</connections>
|
||||
</slider>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="00:00" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="9oF-97-oIN" userLabel="Time Label - 00:00">
|
||||
<rect key="frame" x="550" y="11" width="35" height="22"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="22" id="7If-zg-cFp"/>
|
||||
<constraint firstAttribute="width" constant="35" id="iG3-vh-mOo"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" type="system" pointSize="12"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="0.090196078430000007" green="0.090196078430000007" blue="0.090196078430000007" alpha="0.5" colorSpace="calibratedRGB"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="trailing" secondItem="9oF-97-oIN" secondAttribute="trailing" constant="15" id="6Q1-Yu-kto"/>
|
||||
<constraint firstAttribute="bottom" secondItem="nae-k5-OzC" secondAttribute="bottom" id="8ro-rd-efV"/>
|
||||
<constraint firstAttribute="height" constant="44" id="B0u-Ho-L61"/>
|
||||
<constraint firstItem="9oF-97-oIN" firstAttribute="leading" secondItem="x5h-HM-LKJ" secondAttribute="trailing" constant="8" id="BEx-Ei-jLW"/>
|
||||
<constraint firstItem="nae-k5-OzC" firstAttribute="top" secondItem="PwW-oT-K0O" secondAttribute="top" id="Gx8-Qx-p6R"/>
|
||||
<constraint firstItem="x5h-HM-LKJ" firstAttribute="leading" secondItem="nae-k5-OzC" secondAttribute="trailing" constant="4" id="IET-wq-Psj"/>
|
||||
<constraint firstAttribute="bottom" secondItem="9oF-97-oIN" secondAttribute="bottom" constant="11" id="MYf-lM-zhP"/>
|
||||
<constraint firstItem="nae-k5-OzC" firstAttribute="leading" secondItem="PwW-oT-K0O" secondAttribute="leading" id="dM4-3z-aSu"/>
|
||||
<constraint firstItem="x5h-HM-LKJ" firstAttribute="top" secondItem="PwW-oT-K0O" secondAttribute="top" constant="6" id="gZk-E6-OCu"/>
|
||||
<constraint firstAttribute="bottom" secondItem="x5h-HM-LKJ" secondAttribute="bottom" constant="8" id="pZ5-Zu-2hJ"/>
|
||||
<constraint firstItem="9oF-97-oIN" firstAttribute="top" secondItem="PwW-oT-K0O" secondAttribute="top" constant="11" id="uxo-ib-TiJ"/>
|
||||
</constraints>
|
||||
</view>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
||||
<constraints>
|
||||
<constraint firstItem="PwW-oT-K0O" firstAttribute="leading" secondItem="kh9-bI-dsS" secondAttribute="leading" id="CaW-DV-hxe"/>
|
||||
<constraint firstItem="2fi-mo-0CV" firstAttribute="top" secondItem="PwW-oT-K0O" secondAttribute="bottom" id="F93-1T-mAz"/>
|
||||
<constraint firstAttribute="trailing" secondItem="PwW-oT-K0O" secondAttribute="trailing" id="sIx-qf-8AC"/>
|
||||
</constraints>
|
||||
</view>
|
||||
<connections>
|
||||
<outlet property="playButton" destination="nae-k5-OzC" id="jd0-wi-Jod"/>
|
||||
<outlet property="playerScrubber" destination="x5h-HM-LKJ" id="thx-Sz-2NR"/>
|
||||
<outlet property="playerTimeLabel" destination="9oF-97-oIN" id="KgN-Be-lKa"/>
|
||||
</connections>
|
||||
</viewController>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="x5A-6p-PRh" sceneMemberID="firstResponder"/>
|
||||
</objects>
|
||||
</scene>
|
||||
</scenes>
|
||||
<resources>
|
||||
<image name="PauseIcon" width="15" height="15"/>
|
||||
<image name="PlayIcon" width="13" height="15"/>
|
||||
</resources>
|
||||
</document>
|
||||
@@ -1,38 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "29x29",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "29x29",
|
||||
"scale" : "3x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "40x40",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "40x40",
|
||||
"scale" : "3x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "60x60",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "60x60",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "scrub.pdf"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
||||
@@ -1,664 +0,0 @@
|
||||
%PDF-1.4
|
||||
%âãÏÓ
|
||||
1 0 obj
|
||||
<</Metadata 2 0 R/Pages 3 0 R/Type/Catalog>>
|
||||
endobj
|
||||
2 0 obj
|
||||
<</Length 34532/Subtype/XML/Type/Metadata>>stream
|
||||
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
|
||||
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c014 79.156821, 2014/08/29-03:07:50 ">
|
||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:xmp="http://ns.adobe.com/xap/1.0/"
|
||||
xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/"
|
||||
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||
xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
|
||||
xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
|
||||
xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/"
|
||||
xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
|
||||
xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
|
||||
xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/"
|
||||
xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
|
||||
<dc:format>application/pdf</dc:format>
|
||||
<dc:title>
|
||||
<rdf:Alt>
|
||||
<rdf:li xml:lang="x-default">scrub</rdf:li>
|
||||
</rdf:Alt>
|
||||
</dc:title>
|
||||
<xmp:MetadataDate>2014-11-10T13:17:36-05:00</xmp:MetadataDate>
|
||||
<xmp:ModifyDate>2014-11-10T13:17:36-05:00</xmp:ModifyDate>
|
||||
<xmp:CreateDate>2014-11-10T13:17:36-05:00</xmp:CreateDate>
|
||||
<xmp:CreatorTool>Adobe Illustrator CC 2014 (Macintosh)</xmp:CreatorTool>
|
||||
<xmp:Thumbnails>
|
||||
<rdf:Alt>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpGImg:width>256</xmpGImg:width>
|
||||
<xmpGImg:height>4</xmpGImg:height>
|
||||
<xmpGImg:format>JPEG</xmpGImg:format>
|
||||
<xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgABAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A7r+W/H0rmnGvoWvqcOnq
Uk5V98VZBoXrek/qcq8IvtV/32K9cVUovrH+HZK+t6vA09T7fbpTfjiqzy96/wCi7n1ufLk1OVa0
4DpXFVfRvrPqP6/p/tcPT4/ZqPtcfwr74qmuKvNPzE/SH6fX6v8A4n9P0E/44vL6rXk3Wn7fj9GK
sY/3M/8Af+f8Pirv9zP/AH/n/D4q7/cz/wB/5/w+Ku/3M/8Af+f8Pirv9zP/AH/n/D4q7/cz/wB/
5/w+KvQPy0+t/Ub36z+muXqrx/TtfUpx/wB1V/Z8cVZliryz/kHX/az/AOSmdB/hX9D7Hi/8A/23
7Xf8g6/7Wf8AyUx/wr+h9i/4B/tv2u/5B1/2s/8Akpj/AIV/Q+xf8A/237Xf8g6/7Wf/ACUx/wAK
/ofYv+Af7b9rv+Qdf9rP/kpj/hX9D7F/wD/bftTM/o76zefVvr3p/W7rnT9CU9X6w/q8frP77j6n
KnPemc+9o79x/wAv3/hu4q79x/y/f+G7irv3H/L9/wCG7irv3H/L9/4buKu/cf8AL9/4buKu/cf8
v3/hu4q79x/y/f8Ahu4q79x/y/f+G7irv3H/AC/f+G7irv3H/L9/4buKqV39S+qzet9f9H029Sn+
Hq8aGtKb9MVf/9k=</xmpGImg:image>
|
||||
</rdf:li>
|
||||
</rdf:Alt>
|
||||
</xmp:Thumbnails>
|
||||
<xmpMM:InstanceID>uuid:e25211b8-5fa1-da46-8e43-c38919d12675</xmpMM:InstanceID>
|
||||
<xmpMM:DocumentID>xmp.did:ab082d0a-05e1-4c03-ab16-30e4866938c3</xmpMM:DocumentID>
|
||||
<xmpMM:OriginalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</xmpMM:OriginalDocumentID>
|
||||
<xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
|
||||
<xmpMM:DerivedFrom rdf:parseType="Resource">
|
||||
<stRef:instanceID>uuid:682a7937-05e7-574b-aa69-b7d80e54ae47</stRef:instanceID>
|
||||
<stRef:documentID>xmp.did:d69cdaae-56ab-4561-a1d2-4e0057389713</stRef:documentID>
|
||||
<stRef:originalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</stRef:originalDocumentID>
|
||||
<stRef:renditionClass>proof:pdf</stRef:renditionClass>
|
||||
</xmpMM:DerivedFrom>
|
||||
<xmpMM:History>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>saved</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:d69cdaae-56ab-4561-a1d2-4e0057389713</stEvt:instanceID>
|
||||
<stEvt:when>2014-09-30T11:17:29-07:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Illustrator CC 2014 (Macintosh)</stEvt:softwareAgent>
|
||||
<stEvt:changed>/</stEvt:changed>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>saved</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:ab082d0a-05e1-4c03-ab16-30e4866938c3</stEvt:instanceID>
|
||||
<stEvt:when>2014-11-10T13:17:36-05:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Illustrator CC 2014 (Macintosh)</stEvt:softwareAgent>
|
||||
<stEvt:changed>/</stEvt:changed>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpMM:History>
|
||||
<illustrator:StartupProfile>Print</illustrator:StartupProfile>
|
||||
<xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
|
||||
<xmpTPg:HasVisibleTransparency>False</xmpTPg:HasVisibleTransparency>
|
||||
<xmpTPg:NPages>1</xmpTPg:NPages>
|
||||
<xmpTPg:MaxPageSize rdf:parseType="Resource">
|
||||
<stDim:w>17.000000</stDim:w>
|
||||
<stDim:h>17.000000</stDim:h>
|
||||
<stDim:unit>Pixels</stDim:unit>
|
||||
</xmpTPg:MaxPageSize>
|
||||
<xmpTPg:PlateNames>
|
||||
<rdf:Seq>
|
||||
<rdf:li>Cyan</rdf:li>
|
||||
<rdf:li>Magenta</rdf:li>
|
||||
<rdf:li>Yellow</rdf:li>
|
||||
<rdf:li>Black</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpTPg:PlateNames>
|
||||
<xmpTPg:SwatchGroups>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:groupName>Default Swatch Group</xmpG:groupName>
|
||||
<xmpG:groupType>0</xmpG:groupType>
|
||||
<xmpG:Colorants>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>White</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>255</xmpG:red>
|
||||
<xmpG:green>255</xmpG:green>
|
||||
<xmpG:blue>255</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>Black</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>35</xmpG:red>
|
||||
<xmpG:green>31</xmpG:green>
|
||||
<xmpG:blue>32</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>CMYK Red</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>236</xmpG:red>
|
||||
<xmpG:green>28</xmpG:green>
|
||||
<xmpG:blue>36</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>CMYK Yellow</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>255</xmpG:red>
|
||||
<xmpG:green>241</xmpG:green>
|
||||
<xmpG:blue>0</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>CMYK Green</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>0</xmpG:red>
|
||||
<xmpG:green>165</xmpG:green>
|
||||
<xmpG:blue>81</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>CMYK Cyan</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>0</xmpG:red>
|
||||
<xmpG:green>173</xmpG:green>
|
||||
<xmpG:blue>238</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>CMYK Blue</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>46</xmpG:red>
|
||||
<xmpG:green>49</xmpG:green>
|
||||
<xmpG:blue>145</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>CMYK Magenta</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>235</xmpG:red>
|
||||
<xmpG:green>0</xmpG:green>
|
||||
<xmpG:blue>139</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=15 M=100 Y=90 K=10</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>190</xmpG:red>
|
||||
<xmpG:green>30</xmpG:green>
|
||||
<xmpG:blue>45</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=90 Y=85 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>238</xmpG:red>
|
||||
<xmpG:green>64</xmpG:green>
|
||||
<xmpG:blue>54</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=80 Y=95 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>240</xmpG:red>
|
||||
<xmpG:green>90</xmpG:green>
|
||||
<xmpG:blue>40</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=50 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>246</xmpG:red>
|
||||
<xmpG:green>146</xmpG:green>
|
||||
<xmpG:blue>30</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=35 Y=85 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>250</xmpG:red>
|
||||
<xmpG:green>175</xmpG:green>
|
||||
<xmpG:blue>64</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=5 M=0 Y=90 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>249</xmpG:red>
|
||||
<xmpG:green>236</xmpG:green>
|
||||
<xmpG:blue>49</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=20 M=0 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>214</xmpG:red>
|
||||
<xmpG:green>222</xmpG:green>
|
||||
<xmpG:blue>35</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=50 M=0 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>139</xmpG:red>
|
||||
<xmpG:green>197</xmpG:green>
|
||||
<xmpG:blue>63</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=75 M=0 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>55</xmpG:red>
|
||||
<xmpG:green>179</xmpG:green>
|
||||
<xmpG:blue>74</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=85 M=10 Y=100 K=10</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>0</xmpG:red>
|
||||
<xmpG:green>147</xmpG:green>
|
||||
<xmpG:blue>69</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=90 M=30 Y=95 K=30</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>0</xmpG:red>
|
||||
<xmpG:green>104</xmpG:green>
|
||||
<xmpG:blue>56</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=75 M=0 Y=75 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>41</xmpG:red>
|
||||
<xmpG:green>180</xmpG:green>
|
||||
<xmpG:blue>115</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=80 M=10 Y=45 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>0</xmpG:red>
|
||||
<xmpG:green>166</xmpG:green>
|
||||
<xmpG:blue>156</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=70 M=15 Y=0 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>38</xmpG:red>
|
||||
<xmpG:green>169</xmpG:green>
|
||||
<xmpG:blue>224</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=85 M=50 Y=0 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>27</xmpG:red>
|
||||
<xmpG:green>117</xmpG:green>
|
||||
<xmpG:blue>187</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=100 M=95 Y=5 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>43</xmpG:red>
|
||||
<xmpG:green>56</xmpG:green>
|
||||
<xmpG:blue>143</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=100 M=100 Y=25 K=25</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>38</xmpG:red>
|
||||
<xmpG:green>34</xmpG:green>
|
||||
<xmpG:blue>97</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=75 M=100 Y=0 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>101</xmpG:red>
|
||||
<xmpG:green>45</xmpG:green>
|
||||
<xmpG:blue>144</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=50 M=100 Y=0 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>144</xmpG:red>
|
||||
<xmpG:green>39</xmpG:green>
|
||||
<xmpG:blue>142</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=35 M=100 Y=35 K=10</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>158</xmpG:red>
|
||||
<xmpG:green>31</xmpG:green>
|
||||
<xmpG:blue>99</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=10 M=100 Y=50 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>217</xmpG:red>
|
||||
<xmpG:green>28</xmpG:green>
|
||||
<xmpG:blue>92</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=95 Y=20 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>236</xmpG:red>
|
||||
<xmpG:green>41</xmpG:green>
|
||||
<xmpG:blue>123</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=25 M=25 Y=40 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>193</xmpG:red>
|
||||
<xmpG:green>180</xmpG:green>
|
||||
<xmpG:blue>154</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=40 M=45 Y=50 K=5</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>154</xmpG:red>
|
||||
<xmpG:green>132</xmpG:green>
|
||||
<xmpG:blue>121</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=50 M=50 Y=60 K=25</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>113</xmpG:red>
|
||||
<xmpG:green>101</xmpG:green>
|
||||
<xmpG:blue>88</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=55 M=60 Y=65 K=40</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>90</xmpG:red>
|
||||
<xmpG:green>74</xmpG:green>
|
||||
<xmpG:blue>66</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=25 M=40 Y=65 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>195</xmpG:red>
|
||||
<xmpG:green>153</xmpG:green>
|
||||
<xmpG:blue>107</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=30 M=50 Y=75 K=10</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>168</xmpG:red>
|
||||
<xmpG:green>124</xmpG:green>
|
||||
<xmpG:blue>79</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=35 M=60 Y=80 K=25</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>138</xmpG:red>
|
||||
<xmpG:green>93</xmpG:green>
|
||||
<xmpG:blue>59</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=40 M=65 Y=90 K=35</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>117</xmpG:red>
|
||||
<xmpG:green>76</xmpG:green>
|
||||
<xmpG:blue>40</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=40 M=70 Y=100 K=50</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>96</xmpG:red>
|
||||
<xmpG:green>56</xmpG:green>
|
||||
<xmpG:blue>19</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=50 M=70 Y=80 K=70</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>59</xmpG:red>
|
||||
<xmpG:green>35</xmpG:green>
|
||||
<xmpG:blue>20</xmpG:blue>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpG:Colorants>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:groupName>Grays</xmpG:groupName>
|
||||
<xmpG:groupType>1</xmpG:groupType>
|
||||
<xmpG:Colorants>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=100</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>35</xmpG:red>
|
||||
<xmpG:green>31</xmpG:green>
|
||||
<xmpG:blue>32</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=90</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>64</xmpG:red>
|
||||
<xmpG:green>64</xmpG:green>
|
||||
<xmpG:blue>65</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=80</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>88</xmpG:red>
|
||||
<xmpG:green>89</xmpG:green>
|
||||
<xmpG:blue>91</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=70</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>109</xmpG:red>
|
||||
<xmpG:green>110</xmpG:green>
|
||||
<xmpG:blue>112</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=60</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>128</xmpG:red>
|
||||
<xmpG:green>129</xmpG:green>
|
||||
<xmpG:blue>132</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=50</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>146</xmpG:red>
|
||||
<xmpG:green>148</xmpG:green>
|
||||
<xmpG:blue>151</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=40</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>166</xmpG:red>
|
||||
<xmpG:green>168</xmpG:green>
|
||||
<xmpG:blue>171</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=30</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>187</xmpG:red>
|
||||
<xmpG:green>189</xmpG:green>
|
||||
<xmpG:blue>191</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=20</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>208</xmpG:red>
|
||||
<xmpG:green>210</xmpG:green>
|
||||
<xmpG:blue>211</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=10</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>230</xmpG:red>
|
||||
<xmpG:green>231</xmpG:green>
|
||||
<xmpG:blue>232</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=0 Y=0 K=5</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>241</xmpG:red>
|
||||
<xmpG:green>241</xmpG:green>
|
||||
<xmpG:blue>242</xmpG:blue>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpG:Colorants>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:groupName>Brights</xmpG:groupName>
|
||||
<xmpG:groupType>1</xmpG:groupType>
|
||||
<xmpG:Colorants>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=100 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>236</xmpG:red>
|
||||
<xmpG:green>28</xmpG:green>
|
||||
<xmpG:blue>36</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=75 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>241</xmpG:red>
|
||||
<xmpG:green>101</xmpG:green>
|
||||
<xmpG:blue>34</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=0 M=10 Y=95 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>255</xmpG:red>
|
||||
<xmpG:green>221</xmpG:green>
|
||||
<xmpG:blue>21</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=85 M=10 Y=100 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>0</xmpG:red>
|
||||
<xmpG:green>161</xmpG:green>
|
||||
<xmpG:blue>75</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=100 M=90 Y=0 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>34</xmpG:red>
|
||||
<xmpG:green>64</xmpG:green>
|
||||
<xmpG:blue>153</xmpG:blue>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<xmpG:swatchName>C=60 M=90 Y=0 K=0</xmpG:swatchName>
|
||||
<xmpG:mode>RGB</xmpG:mode>
|
||||
<xmpG:type>PROCESS</xmpG:type>
|
||||
<xmpG:red>127</xmpG:red>
|
||||
<xmpG:green>63</xmpG:green>
|
||||
<xmpG:blue>151</xmpG:blue>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpG:Colorants>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpTPg:SwatchGroups>
|
||||
<pdf:Producer>Adobe PDF library 11.00</pdf:Producer>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
</x:xmpmeta>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?xpacket end="w"?>
|
||||
endstream
|
||||
endobj
|
||||
3 0 obj
|
||||
<</Count 1/Kids[5 0 R]/Type/Pages>>
|
||||
endobj
|
||||
5 0 obj
|
||||
<</ArtBox[0.0 0.0 17.0 17.0]/BleedBox[0.0 0.0 17.0 17.0]/Contents 6 0 R/MediaBox[0.0 0.0 17.0 17.0]/Parent 3 0 R/Resources<</ExtGState<</GS0 7 0 R>>/Properties<</MC0 8 0 R/MC1 9 0 R/MC2 10 0 R>>>>/Thumb 11 0 R/TrimBox[0.0 0.0 17.0 17.0]/Type/Page>>
|
||||
endobj
|
||||
6 0 obj
|
||||
<</Filter/FlateDecode/Length 230>>stream
|
||||
H‰äR;nÃ0Ýy
|
||||
^À)ײ5:Nh†$CæÀÈgpØÉÒÛ—’ µw$Q|�"Ÿ@Ð|Ÿ~ΚíÀ¸Z30Jv¥g9ÃÀÔvøß.W0›ãõ 3
|
||||
².AKŽ�EqÔÔìq¼Càï ¢9�ºˆ%ï‚+5yÛ`Åä[)È’8M„Œõî|ò2Ñ{}ŸÊT*“@†£êf‚JHþbA¢nK¡“ЙH?™
|
||||
NÿLµ8®.°ÓÖ„°Zk£mp¿yã–Üà MùÜê$™2Z’FËôÓ«ÿêcßE³ƒ_ | ||||