From fc188682155d94ff300c0e521fb028eb458db344 Mon Sep 17 00:00:00 2001 From: shipinev Date: Thu, 21 Apr 2016 13:23:46 +0300 Subject: [PATCH] Add Tiger SVG example --- Example/Example.xcodeproj/project.pbxproj | 32 + Example/Example/Assets/SVG/tiger.svg | 729 ++++ Example/Example/Base.lproj/Main.storyboard | 18 + Example/Example/BasePageViewController.swift | 3 +- .../SVG/SVGExampleViewController.swift | 20 + Macaw.xcodeproj/project.pbxproj | 3110 ++++------------- 6 files changed, 1545 insertions(+), 2367 deletions(-) create mode 100644 Example/Example/Assets/SVG/tiger.svg create mode 100644 Example/Example/Examples/SVG/SVGExampleViewController.swift diff --git a/Example/Example.xcodeproj/project.pbxproj b/Example/Example.xcodeproj/project.pbxproj index 5f9d42c2..7d489ed2 100644 --- a/Example/Example.xcodeproj/project.pbxproj +++ b/Example/Example.xcodeproj/project.pbxproj @@ -21,6 +21,8 @@ 574EC4441CBB60AF0063F317 /* AnimationsExampleController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574EC4431CBB60AF0063F317 /* AnimationsExampleController.swift */; }; 575129B61CBD14AF00BD3C2E /* AnimationsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 575129B51CBD14AF00BD3C2E /* AnimationsView.swift */; }; 575129B81CBD18B800BD3C2E /* PieChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 575129B71CBD18B800BD3C2E /* PieChart.swift */; }; + 66AE19D71CC8C7EA00B78B5E /* SVGExampleViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66AE19D61CC8C7EA00B78B5E /* SVGExampleViewController.swift */; }; + 66AE19DB1CC8CB3C00B78B5E /* tiger.svg in Resources */ = {isa = PBXBuildFile; fileRef = 66AE19DA1CC8CB3C00B78B5E /* tiger.svg */; }; B02E75F11C16104900D1971D /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B02E75F01C16104900D1971D /* AppDelegate.swift */; }; B02E75F61C16104900D1971D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B02E75F41C16104900D1971D /* Main.storyboard */; }; B02E75F81C16104900D1971D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B02E75F71C16104900D1971D /* Assets.xcassets */; }; @@ -75,6 +77,8 @@ 574EC4431CBB60AF0063F317 /* AnimationsExampleController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationsExampleController.swift; sourceTree = ""; }; 575129B51CBD14AF00BD3C2E /* AnimationsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationsView.swift; sourceTree = ""; }; 575129B71CBD18B800BD3C2E /* PieChart.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PieChart.swift; sourceTree = ""; }; + 66AE19D61CC8C7EA00B78B5E /* SVGExampleViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SVGExampleViewController.swift; path = SVG/SVGExampleViewController.swift; sourceTree = ""; }; + 66AE19DA1CC8CB3C00B78B5E /* tiger.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = tiger.svg; path = Example/Assets/SVG/tiger.svg; sourceTree = ""; }; B02E75ED1C16104900D1971D /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; B02E75F01C16104900D1971D /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; B02E75F51C16104900D1971D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; @@ -106,6 +110,7 @@ 574EC4271CB7DE7F0063F317 /* Examples */ = { isa = PBXGroup; children = ( + 66AE19D31CC8C7A100B78B5E /* SVG */, 574EC4421CBB607E0063F317 /* Animations */, 574EC4281CB7DE7F0063F317 /* Cleaner */, 574EC42C1CB7DE7F0063F317 /* Diagram */, @@ -179,9 +184,34 @@ path = Animations; sourceTree = ""; }; + 66AE19D31CC8C7A100B78B5E /* SVG */ = { + isa = PBXGroup; + children = ( + 66AE19D61CC8C7EA00B78B5E /* SVGExampleViewController.swift */, + ); + name = SVG; + sourceTree = ""; + }; + 66AE19D81CC8CAB000B78B5E /* Assets */ = { + isa = PBXGroup; + children = ( + 66AE19D91CC8CAB600B78B5E /* SVG */, + ); + name = Assets; + sourceTree = ""; + }; + 66AE19D91CC8CAB600B78B5E /* SVG */ = { + isa = PBXGroup; + children = ( + 66AE19DA1CC8CB3C00B78B5E /* tiger.svg */, + ); + name = SVG; + sourceTree = ""; + }; B02E75E41C16104900D1971D = { isa = PBXGroup; children = ( + 66AE19D81CC8CAB000B78B5E /* Assets */, 24BE06FF1C6B91C800B5882F /* img */, B02E75EF1C16104900D1971D /* Example */, B02E75EE1C16104900D1971D /* Products */, @@ -297,6 +327,7 @@ files = ( B02E75FB1C16104900D1971D /* LaunchScreen.storyboard in Resources */, B02E75F81C16104900D1971D /* Assets.xcassets in Resources */, + 66AE19DB1CC8CB3C00B78B5E /* tiger.svg in Resources */, B02E75F61C16104900D1971D /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -312,6 +343,7 @@ 574EC43C1CB7DE7F0063F317 /* RectShapeView.swift in Sources */, 574EC4441CBB60AF0063F317 /* AnimationsExampleController.swift in Sources */, 575129B61CBD14AF00BD3C2E /* AnimationsView.swift in Sources */, + 66AE19D71CC8C7EA00B78B5E /* SVGExampleViewController.swift in Sources */, 24BE07041C6DF1F000B5882F /* BasePageViewController.swift in Sources */, 574EC43A1CB7DE7F0063F317 /* DiagramExampleView.swift in Sources */, B02E75F11C16104900D1971D /* AppDelegate.swift in Sources */, diff --git a/Example/Example/Assets/SVG/tiger.svg b/Example/Example/Assets/SVG/tiger.svg new file mode 100644 index 00000000..c7cdeb8e --- /dev/null +++ b/Example/Example/Assets/SVG/tiger.svg @@ -0,0 +1,729 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Example/Base.lproj/Main.storyboard b/Example/Example/Base.lproj/Main.storyboard index 1f61f994..7113440c 100644 --- a/Example/Example/Base.lproj/Main.storyboard +++ b/Example/Example/Base.lproj/Main.storyboard @@ -90,6 +90,24 @@ + + + + + + + + + + + + + + + + + + diff --git a/Example/Example/BasePageViewController.swift b/Example/Example/BasePageViewController.swift index ff7824a0..03473c05 100644 --- a/Example/Example/BasePageViewController.swift +++ b/Example/Example/BasePageViewController.swift @@ -12,7 +12,8 @@ class BasePageViewController: UIPageViewController { self.newMacawViewController("FourthPageViewController"), self.newMacawViewController("AnimationsExampleController"), self.newMacawViewController("ModelListenersExampleController"), - self.newMacawViewController("CleanerExampleController") + self.newMacawViewController("CleanerExampleController"), + self.newMacawViewController("SVGExampleViewController") ] }() diff --git a/Example/Example/Examples/SVG/SVGExampleViewController.swift b/Example/Example/Examples/SVG/SVGExampleViewController.swift new file mode 100644 index 00000000..e691759c --- /dev/null +++ b/Example/Example/Examples/SVG/SVGExampleViewController.swift @@ -0,0 +1,20 @@ +import UIKit +import Macaw + +class SVGExampleView: MacawView { + + required init?(coder aDecoder: NSCoder) { + let path = NSBundle.mainBundle().pathForResource("tiger", ofType: "svg") + let text = try! String(contentsOfFile: path!, encoding: NSUTF8StringEncoding) + + let transform = Transform().move(150, my: 150).scale(0.8, sy: 0.8) + let parser = SVGParser(text, pos: transform) + let tigerNode = parser.parse() + + super.init(node: tigerNode, coder: aDecoder) + } + + required init?(node: Node, coder aDecoder: NSCoder) { + super.init(node: node, coder: aDecoder) + } +} diff --git a/Macaw.xcodeproj/project.pbxproj b/Macaw.xcodeproj/project.pbxproj index 5480bb63..e9c57fed 100644 --- a/Macaw.xcodeproj/project.pbxproj +++ b/Macaw.xcodeproj/project.pbxproj @@ -1,2366 +1,744 @@ - - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 0D10CB2117557903E2D9F24D - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-Macaw.debug.xcconfig - path - Pods/Target Support Files/Pods-Macaw/Pods-Macaw.debug.xcconfig - sourceTree - <group> - - 549363F57810A86F4226A525 - - children - - 0D10CB2117557903E2D9F24D - 8A680FA7BCDE96402C10D8D2 - - isa - PBXGroup - name - Pods - sourceTree - <group> - - 573AA69E1CAE346900F30607 - - children - - 573AA69F1CAE346900F30607 - 573AA6A11CAE34BA00F30607 - 573AA6A31CAE402C00F30607 - 573AA6A51CAE41D400F30607 - 5754E63E1CB3B70D00657DA3 - - isa - PBXGroup - path - types - sourceTree - <group> - - 573AA69F1CAE346900F30607 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - AnimationSequence.swift - sourceTree - <group> - - 573AA6A01CAE346900F30607 - - fileRef - 573AA69F1CAE346900F30607 - isa - PBXBuildFile - - 573AA6A11CAE34BA00F30607 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - RepetitiveAnimation.swift - sourceTree - <group> - - 573AA6A21CAE34BA00F30607 - - fileRef - 573AA6A11CAE34BA00F30607 - isa - PBXBuildFile - - 573AA6A31CAE402C00F30607 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - RevertedAnimation.swift - sourceTree - <group> - - 573AA6A41CAE402C00F30607 - - fileRef - 573AA6A31CAE402C00F30607 - isa - PBXBuildFile - - 573AA6A51CAE41D400F30607 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - LoopedAnimation.swift - sourceTree - <group> - - 573AA6A61CAE41D400F30607 - - fileRef - 573AA6A51CAE41D400F30607 - isa - PBXBuildFile - - 5742238C1CA540F8001EE463 - - children - - 573AA69E1CAE346900F30607 - 574BDD901CAA7F490031D313 - 5742238D1CA5414E001EE463 - 5742238F1CA5448C001EE463 - 57982D521CB508E600111DAA - 574223911CA55360001EE463 - 574BDD931CAA80070031D313 - - isa - PBXGroup - path - animation - sourceTree - <group> - - 5742238D1CA5414E001EE463 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - AnimationLoop.swift - sourceTree - <group> - - 5742238E1CA5414E001EE463 - - fileRef - 5742238D1CA5414E001EE463 - isa - PBXBuildFile - - 5742238F1CA5448C001EE463 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Animation.swift - sourceTree - <group> - - 574223901CA5448C001EE463 - - fileRef - 5742238F1CA5448C001EE463 - isa - PBXBuildFile - - 574223911CA55360001EE463 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - AnimationSubscription.swift - sourceTree - <group> - - 574223921CA55360001EE463 - - fileRef - 574223911CA55360001EE463 - isa - PBXBuildFile - - 574BDD901CAA7F490031D313 - - children - - 574BDD911CAA7FC50031D313 - 574BDD951CAA861B0031D313 - 574BDD971CAA86CC0031D313 - 574BDD991CAAA5540031D313 - 574BDD9B1CAAA5D60031D313 - - isa - PBXGroup - path - extensions - sourceTree - <group> - - 574BDD911CAA7FC50031D313 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - IntInterpolation.swift - sourceTree - <group> - - 574BDD921CAA7FC50031D313 - - fileRef - 574BDD911CAA7FC50031D313 - isa - PBXBuildFile - - 574BDD931CAA80070031D313 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Interpolable.swift - sourceTree - <group> - - 574BDD941CAA80070031D313 - - fileRef - 574BDD931CAA80070031D313 - isa - PBXBuildFile - - 574BDD951CAA861B0031D313 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - CGFloatInterpolation.swift - sourceTree - <group> - - 574BDD961CAA861B0031D313 - - fileRef - 574BDD951CAA861B0031D313 - isa - PBXBuildFile - - 574BDD971CAA86CC0031D313 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - CGPointInterpolation.swift - sourceTree - <group> - - 574BDD981CAA86CC0031D313 - - fileRef - 574BDD971CAA86CC0031D313 - isa - PBXBuildFile - - 574BDD991CAAA5540031D313 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - DoubleInterpolation.swift - sourceTree - <group> - - 574BDD9A1CAAA5540031D313 - - fileRef - 574BDD991CAAA5540031D313 - isa - PBXBuildFile - - 574BDD9B1CAAA5D60031D313 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - TransformInterpolation.swift - sourceTree - <group> - - 574BDD9C1CAAA5D60031D313 - - fileRef - 574BDD9B1CAAA5D60031D313 - isa - PBXBuildFile - - 5754E63E1CB3B70D00657DA3 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - EasingAnimations.swift - sourceTree - <group> - - 5754E63F1CB3B70D00657DA3 - - fileRef - 5754E63E1CB3B70D00657DA3 - isa - PBXBuildFile - - 57982D521CB508E600111DAA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - PathAnimation.swift - sourceTree - <group> - - 57982D531CB508E600111DAA - - fileRef - 57982D521CB508E600111DAA - isa - PBXBuildFile - - 585C04461C27CFB100335FF2 - - children - - 585C04471C27CFB100335FF2 - - isa - PBXGroup - path - views - sourceTree - <group> - - 585C04471C27CFB100335FF2 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - MacawView.swift - sourceTree - <group> - - 585C04481C27CFB100335FF2 - - fileRef - 585C04471C27CFB100335FF2 - isa - PBXBuildFile - - 7E48ADF2DD7D3357B810323E - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Check Pods Manifest.lock - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null -if [[ $? != 0 ]] ; then - cat << EOM -error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. -EOM - exit 1 -fi - - showEnvVarsInLog - 0 - - 8A680FA7BCDE96402C10D8D2 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-Macaw.release.xcconfig - path - Pods/Target Support Files/Pods-Macaw/Pods-Macaw.release.xcconfig - sourceTree - <group> - - A5E8CEC730B5E642B7F50D35 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Copy Pods Resources - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-Macaw/Pods-Macaw-resources.sh" - - showEnvVarsInLog - 0 - - AD9EDEE3709C1668BED1B1BF - - fileRef - BA114AD1025D7DA0B0DC35A8 - isa - PBXBuildFile - - B0086C551C789758008A4F69 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - GroupRenderer.swift - sourceTree - <group> - - B0086C561C789758008A4F69 - - fileRef - B0086C551C789758008A4F69 - isa - PBXBuildFile - - B0097E061C706CA500350E43 - - children - - B0097E071C706CAB00350E43 - B07B544A1CA3F92B0056CA74 - - isa - PBXGroup - path - bindings - sourceTree - <group> - - B0097E071C706CAB00350E43 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - ObservableValue.swift - sourceTree - <group> - - B0097E081C706CAB00350E43 - - fileRef - B0097E071C706CAB00350E43 - isa - PBXBuildFile - - B02E75CC1C160F8D00D1971D - - children - - B02E75E11C160FF200D1971D - B02E75D71C160F8D00D1971D - 549363F57810A86F4226A525 - DB1EC634C50C9231DFC4041E - - isa - PBXGroup - sourceTree - <group> - - B02E75CD1C160F8D00D1971D - - attributes - - LastUpgradeCheck - 0710 - ORGANIZATIONNAME - Exyte - TargetAttributes - - B02E75D51C160F8D00D1971D - - CreatedOnToolsVersion - 7.1.1 - - - - buildConfigurationList - B02E75D01C160F8D00D1971D - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - - mainGroup - B02E75CC1C160F8D00D1971D - productRefGroup - B02E75D71C160F8D00D1971D - projectDirPath - - projectReferences - - projectRoot - - targets - - B02E75D51C160F8D00D1971D - - - B02E75D01C160F8D00D1971D - - buildConfigurations - - B02E75DC1C160F8D00D1971D - B02E75DD1C160F8D00D1971D - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - B02E75D11C160F8D00D1971D - - buildActionMask - 2147483647 - files - - B03275FD1C78772F000BDD33 - 574223921CA55360001EE463 - B03F88BE1C1C6A9E00F24FFC - B032760E1C78772F000BDD33 - B03276061C78772F000BDD33 - B03275EC1C78772F000BDD33 - B03276191C7884C7000BDD33 - B03275F31C78772F000BDD33 - B03276121C78772F000BDD33 - B03276211C788687000BDD33 - B03276231C78882A000BDD33 - B03275E51C78772F000BDD33 - B03276021C78772F000BDD33 - B032760D1C78772F000BDD33 - B03275FE1C78772F000BDD33 - B03275EB1C78772F000BDD33 - B03275E81C78772F000BDD33 - B03275E91C78772F000BDD33 - B03275FB1C78772F000BDD33 - B032760A1C78772F000BDD33 - B032760C1C78772F000BDD33 - 574BDD941CAA80070031D313 - B03275EF1C78772F000BDD33 - 573AA6A41CAE402C00F30607 - 573AA6A61CAE41D400F30607 - B03275F71C78772F000BDD33 - B0097E081C706CAB00350E43 - B032760F1C78772F000BDD33 - B03275E61C78772F000BDD33 - B03276071C78772F000BDD33 - B03276031C78772F000BDD33 - 574BDD961CAA861B0031D313 - B03275FC1C78772F000BDD33 - 5754E63F1CB3B70D00657DA3 - B03275F41C78772F000BDD33 - B03276011C78772F000BDD33 - B03276141C78772F000BDD33 - B03276051C78772F000BDD33 - 574BDD9A1CAAA5540031D313 - B03275FF1C78772F000BDD33 - B03276041C78772F000BDD33 - B03275F21C78772F000BDD33 - B03276271C789217000BDD33 - B032760B1C78772F000BDD33 - B03276081C78772F000BDD33 - B03275F81C78772F000BDD33 - B032761F1C7885B2000BDD33 - B03276131C78772F000BDD33 - 573AA6A21CAE34BA00F30607 - B0086C561C789758008A4F69 - 574BDD981CAA86CC0031D313 - B03276001C78772F000BDD33 - B03275F91C78772F000BDD33 - B03275FA1C78772F000BDD33 - B07B544B1CA3F92B0056CA74 - B03276101C78772F000BDD33 - B03275EE1C78772F000BDD33 - B03275E71C78772F000BDD33 - B03275F11C78772F000BDD33 - 573AA6A01CAE346900F30607 - B03276171C788162000BDD33 - 57982D531CB508E600111DAA - B03275EA1C78772F000BDD33 - B03275F51C78772F000BDD33 - B03275F01C78772F000BDD33 - B03276091C78772F000BDD33 - 574BDD921CAA7FC50031D313 - 574BDD9C1CAAA5D60031D313 - 5742238E1CA5414E001EE463 - B03275ED1C78772F000BDD33 - B03275F61C78772F000BDD33 - 574223901CA5448C001EE463 - 585C04481C27CFB100335FF2 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - B02E75D21C160F8D00D1971D - - buildActionMask - 2147483647 - files - - AD9EDEE3709C1668BED1B1BF - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - B02E75D31C160F8D00D1971D - - buildActionMask - 2147483647 - files - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - B02E75D41C160F8D00D1971D - - buildActionMask - 2147483647 - files - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - B02E75D51C160F8D00D1971D - - buildConfigurationList - B02E75DE1C160F8D00D1971D - buildPhases - - 7E48ADF2DD7D3357B810323E - B02E75D11C160F8D00D1971D - B02E75D21C160F8D00D1971D - B02E75D31C160F8D00D1971D - B02E75D41C160F8D00D1971D - A5E8CEC730B5E642B7F50D35 - - buildRules - - dependencies - - isa - PBXNativeTarget - name - Macaw - productName - Macaw - productReference - B02E75D61C160F8D00D1971D - productType - com.apple.product-type.framework - - B02E75D61C160F8D00D1971D - - explicitFileType - wrapper.framework - includeInIndex - 0 - isa - PBXFileReference - path - Macaw.framework - sourceTree - BUILT_PRODUCTS_DIR - - B02E75D71C160F8D00D1971D - - children - - B02E75D61C160F8D00D1971D - - isa - PBXGroup - name - Products - sourceTree - <group> - - B02E75DC1C160F8D00D1971D - - 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 - CURRENT_PROJECT_VERSION - 1 - DEBUG_INFORMATION_FORMAT - dwarf - 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_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.0 - MTL_ENABLE_DEBUG_INFO - YES - ONLY_ACTIVE_ARCH - YES - SDKROOT - iphoneos - SWIFT_OPTIMIZATION_LEVEL - -Onone - TARGETED_DEVICE_FAMILY - 1,2 - VERSIONING_SYSTEM - apple-generic - VERSION_INFO_PREFIX - - - isa - XCBuildConfiguration - name - Debug - - B02E75DD1C160F8D00D1971D - - 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 - CURRENT_PROJECT_VERSION - 1 - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - ENABLE_NS_ASSERTIONS - NO - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_NO_COMMON_BLOCKS - YES - 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.0 - MTL_ENABLE_DEBUG_INFO - NO - SDKROOT - iphoneos - TARGETED_DEVICE_FAMILY - 1,2 - VALIDATE_PRODUCT - YES - VERSIONING_SYSTEM - apple-generic - VERSION_INFO_PREFIX - - - isa - XCBuildConfiguration - name - Release - - B02E75DE1C160F8D00D1971D - - buildConfigurations - - B02E75DF1C160F8D00D1971D - B02E75E01C160F8D00D1971D - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - B02E75DF1C160F8D00D1971D - - baseConfigurationReference - 0D10CB2117557903E2D9F24D - buildSettings - - CLANG_ENABLE_MODULES - YES - DEFINES_MODULE - YES - DYLIB_COMPATIBILITY_VERSION - 1 - DYLIB_CURRENT_VERSION - 1 - DYLIB_INSTALL_NAME_BASE - @rpath - INFOPLIST_FILE - Source/Info.plist - INSTALL_PATH - $(LOCAL_LIBRARY_DIR)/Frameworks - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - PRODUCT_BUNDLE_IDENTIFIER - com.exyte.Macaw.Macaw - PRODUCT_NAME - $(TARGET_NAME) - SKIP_INSTALL - YES - SWIFT_OPTIMIZATION_LEVEL - -Onone - - isa - XCBuildConfiguration - name - Debug - - B02E75E01C160F8D00D1971D - - baseConfigurationReference - 8A680FA7BCDE96402C10D8D2 - buildSettings - - CLANG_ENABLE_MODULES - YES - DEFINES_MODULE - YES - DYLIB_COMPATIBILITY_VERSION - 1 - DYLIB_CURRENT_VERSION - 1 - DYLIB_INSTALL_NAME_BASE - @rpath - INFOPLIST_FILE - Source/Info.plist - INSTALL_PATH - $(LOCAL_LIBRARY_DIR)/Frameworks - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - PRODUCT_BUNDLE_IDENTIFIER - com.exyte.Macaw.Macaw - PRODUCT_NAME - $(TARGET_NAME) - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Release - - B02E75E11C160FF200D1971D - - children - - 5742238C1CA540F8001EE463 - B03275B01C78772F000BDD33 - 585C04461C27CFB100335FF2 - B03F88BC1C1C6A9300F24FFC - B0097E061C706CA500350E43 - B03276151C787996000BDD33 - B02E76131C1612A900D1971D - - isa - PBXGroup - path - Source - sourceTree - <group> - - B02E76131C1612A900D1971D - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Info.plist - sourceTree - <group> - - B03275B01C78772F000BDD33 - - children - - B03275B11C78772F000BDD33 - B03275C01C78772F000BDD33 - B03275DA1C78772F000BDD33 - B03275DE1C78772F000BDD33 - - isa - PBXGroup - path - model - sourceTree - <group> - - B03275B11C78772F000BDD33 - - children - - B03275B21C78772F000BDD33 - B03275B31C78772F000BDD33 - B03275B41C78772F000BDD33 - B03275B51C78772F000BDD33 - B03275B61C78772F000BDD33 - B03275B71C78772F000BDD33 - B03275B81C78772F000BDD33 - B03275B91C78772F000BDD33 - B03275BA1C78772F000BDD33 - B03275BB1C78772F000BDD33 - B03275BC1C78772F000BDD33 - B03275BD1C78772F000BDD33 - B03275BE1C78772F000BDD33 - B03275BF1C78772F000BDD33 - - isa - PBXGroup - path - draw - sourceTree - <group> - - B03275B21C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Align.swift - sourceTree - <group> - - B03275B31C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - AspectRatio.swift - sourceTree - <group> - - B03275B41C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Baseline.swift - sourceTree - <group> - - B03275B51C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Color.swift - sourceTree - <group> - - B03275B61C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Drawable.swift - sourceTree - <group> - - B03275B71C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Fill.swift - sourceTree - <group> - - B03275B81C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Font.swift - sourceTree - <group> - - B03275B91C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - FontStyle.swift - sourceTree - <group> - - B03275BA1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - FontWeight.swift - sourceTree - <group> - - B03275BB1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - LinearGradient.swift - sourceTree - <group> - - B03275BC1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - LineCap.swift - sourceTree - <group> - - B03275BD1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - LineJoin.swift - sourceTree - <group> - - B03275BE1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Stop.swift - sourceTree - <group> - - B03275BF1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Stroke.swift - sourceTree - <group> - - B03275C01C78772F000BDD33 - - children - - B03275C11C78772F000BDD33 - B03275C21C78772F000BDD33 - B03275C31C78772F000BDD33 - B03275C41C78772F000BDD33 - B03275C51C78772F000BDD33 - B03275C61C78772F000BDD33 - B03275C71C78772F000BDD33 - B03275C81C78772F000BDD33 - B03275C91C78772F000BDD33 - B03275CA1C78772F000BDD33 - B03275CB1C78772F000BDD33 - B03275CC1C78772F000BDD33 - B03275CD1C78772F000BDD33 - B03275CE1C78772F000BDD33 - B03275CF1C78772F000BDD33 - B03275D01C78772F000BDD33 - B03275D11C78772F000BDD33 - B03275D21C78772F000BDD33 - B03275D31C78772F000BDD33 - B03275D41C78772F000BDD33 - B03275D51C78772F000BDD33 - B03275D61C78772F000BDD33 - B03275D71C78772F000BDD33 - B03275D81C78772F000BDD33 - B03275D91C78772F000BDD33 - - isa - PBXGroup - path - geom2d - sourceTree - <group> - - B03275C11C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Arc.swift - sourceTree - <group> - - B03275C21C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Circle.swift - sourceTree - <group> - - B03275C31C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Close.swift - sourceTree - <group> - - B03275C41C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Cubic.swift - sourceTree - <group> - - B03275C51C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Ellipse.swift - sourceTree - <group> - - B03275C61C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Elliptical.swift - sourceTree - <group> - - B03275C71C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - HLine.swift - sourceTree - <group> - - B03275C81C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Insets.swift - sourceTree - <group> - - B03275C91C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Line.swift - sourceTree - <group> - - B03275CA1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Locus.swift - sourceTree - <group> - - B03275CB1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Move.swift - sourceTree - <group> - - B03275CC1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Path.swift - sourceTree - <group> - - B03275CD1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - PathSegment.swift - sourceTree - <group> - - B03275CE1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - PLine.swift - sourceTree - <group> - - B03275CF1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Point.swift - sourceTree - <group> - - B03275D01C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Polygon.swift - sourceTree - <group> - - B03275D11C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Polyline.swift - sourceTree - <group> - - B03275D21C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Quadratic.swift - sourceTree - <group> - - B03275D31C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Rect.swift - sourceTree - <group> - - B03275D41C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - RoundRect.swift - sourceTree - <group> - - B03275D51C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - SCubic.swift - sourceTree - <group> - - B03275D61C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Size.swift - sourceTree - <group> - - B03275D71C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - SQuadratic.swift - sourceTree - <group> - - B03275D81C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Transform.swift - sourceTree - <group> - - B03275D91C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - VLine.swift - sourceTree - <group> - - B03275DA1C78772F000BDD33 - - children - - B03275DB1C78772F000BDD33 - B03275DC1C78772F000BDD33 - B03275DD1C78772F000BDD33 - - isa - PBXGroup - path - input - sourceTree - <group> - - B03275DB1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Cursor.swift - sourceTree - <group> - - B03275DC1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Mouse.swift - sourceTree - <group> - - B03275DD1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - MouseButton.swift - sourceTree - <group> - - B03275DE1C78772F000BDD33 - - children - - B03275DF1C78772F000BDD33 - B03275E01C78772F000BDD33 - B03275E21C78772F000BDD33 - B03275E31C78772F000BDD33 - B03275E41C78772F000BDD33 - - isa - PBXGroup - path - scene - sourceTree - <group> - - B03275DF1C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Group.swift - sourceTree - <group> - - B03275E01C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Image.swift - sourceTree - <group> - - B03275E21C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Node.swift - sourceTree - <group> - - B03275E31C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Shape.swift - sourceTree - <group> - - B03275E41C78772F000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Text.swift - sourceTree - <group> - - B03275E51C78772F000BDD33 - - fileRef - B03275B21C78772F000BDD33 - isa - PBXBuildFile - - B03275E61C78772F000BDD33 - - fileRef - B03275B31C78772F000BDD33 - isa - PBXBuildFile - - B03275E71C78772F000BDD33 - - fileRef - B03275B41C78772F000BDD33 - isa - PBXBuildFile - - B03275E81C78772F000BDD33 - - fileRef - B03275B51C78772F000BDD33 - isa - PBXBuildFile - - B03275E91C78772F000BDD33 - - fileRef - B03275B61C78772F000BDD33 - isa - PBXBuildFile - - B03275EA1C78772F000BDD33 - - fileRef - B03275B71C78772F000BDD33 - isa - PBXBuildFile - - B03275EB1C78772F000BDD33 - - fileRef - B03275B81C78772F000BDD33 - isa - PBXBuildFile - - B03275EC1C78772F000BDD33 - - fileRef - B03275B91C78772F000BDD33 - isa - PBXBuildFile - - B03275ED1C78772F000BDD33 - - fileRef - B03275BA1C78772F000BDD33 - isa - PBXBuildFile - - B03275EE1C78772F000BDD33 - - fileRef - B03275BB1C78772F000BDD33 - isa - PBXBuildFile - - B03275EF1C78772F000BDD33 - - fileRef - B03275BC1C78772F000BDD33 - isa - PBXBuildFile - - B03275F01C78772F000BDD33 - - fileRef - B03275BD1C78772F000BDD33 - isa - PBXBuildFile - - B03275F11C78772F000BDD33 - - fileRef - B03275BE1C78772F000BDD33 - isa - PBXBuildFile - - B03275F21C78772F000BDD33 - - fileRef - B03275BF1C78772F000BDD33 - isa - PBXBuildFile - - B03275F31C78772F000BDD33 - - fileRef - B03275C11C78772F000BDD33 - isa - PBXBuildFile - - B03275F41C78772F000BDD33 - - fileRef - B03275C21C78772F000BDD33 - isa - PBXBuildFile - - B03275F51C78772F000BDD33 - - fileRef - B03275C31C78772F000BDD33 - isa - PBXBuildFile - - B03275F61C78772F000BDD33 - - fileRef - B03275C41C78772F000BDD33 - isa - PBXBuildFile - - B03275F71C78772F000BDD33 - - fileRef - B03275C51C78772F000BDD33 - isa - PBXBuildFile - - B03275F81C78772F000BDD33 - - fileRef - B03275C61C78772F000BDD33 - isa - PBXBuildFile - - B03275F91C78772F000BDD33 - - fileRef - B03275C71C78772F000BDD33 - isa - PBXBuildFile - - B03275FA1C78772F000BDD33 - - fileRef - B03275C81C78772F000BDD33 - isa - PBXBuildFile - - B03275FB1C78772F000BDD33 - - fileRef - B03275C91C78772F000BDD33 - isa - PBXBuildFile - - B03275FC1C78772F000BDD33 - - fileRef - B03275CA1C78772F000BDD33 - isa - PBXBuildFile - - B03275FD1C78772F000BDD33 - - fileRef - B03275CB1C78772F000BDD33 - isa - PBXBuildFile - - B03275FE1C78772F000BDD33 - - fileRef - B03275CC1C78772F000BDD33 - isa - PBXBuildFile - - B03275FF1C78772F000BDD33 - - fileRef - B03275CD1C78772F000BDD33 - isa - PBXBuildFile - - B03276001C78772F000BDD33 - - fileRef - B03275CE1C78772F000BDD33 - isa - PBXBuildFile - - B03276011C78772F000BDD33 - - fileRef - B03275CF1C78772F000BDD33 - isa - PBXBuildFile - - B03276021C78772F000BDD33 - - fileRef - B03275D01C78772F000BDD33 - isa - PBXBuildFile - - B03276031C78772F000BDD33 - - fileRef - B03275D11C78772F000BDD33 - isa - PBXBuildFile - - B03276041C78772F000BDD33 - - fileRef - B03275D21C78772F000BDD33 - isa - PBXBuildFile - - B03276051C78772F000BDD33 - - fileRef - B03275D31C78772F000BDD33 - isa - PBXBuildFile - - B03276061C78772F000BDD33 - - fileRef - B03275D41C78772F000BDD33 - isa - PBXBuildFile - - B03276071C78772F000BDD33 - - fileRef - B03275D51C78772F000BDD33 - isa - PBXBuildFile - - B03276081C78772F000BDD33 - - fileRef - B03275D61C78772F000BDD33 - isa - PBXBuildFile - - B03276091C78772F000BDD33 - - fileRef - B03275D71C78772F000BDD33 - isa - PBXBuildFile - - B032760A1C78772F000BDD33 - - fileRef - B03275D81C78772F000BDD33 - isa - PBXBuildFile - - B032760B1C78772F000BDD33 - - fileRef - B03275D91C78772F000BDD33 - isa - PBXBuildFile - - B032760C1C78772F000BDD33 - - fileRef - B03275DB1C78772F000BDD33 - isa - PBXBuildFile - - B032760D1C78772F000BDD33 - - fileRef - B03275DC1C78772F000BDD33 - isa - PBXBuildFile - - B032760E1C78772F000BDD33 - - fileRef - B03275DD1C78772F000BDD33 - isa - PBXBuildFile - - B032760F1C78772F000BDD33 - - fileRef - B03275DF1C78772F000BDD33 - isa - PBXBuildFile - - B03276101C78772F000BDD33 - - fileRef - B03275E01C78772F000BDD33 - isa - PBXBuildFile - - B03276121C78772F000BDD33 - - fileRef - B03275E21C78772F000BDD33 - isa - PBXBuildFile - - B03276131C78772F000BDD33 - - fileRef - B03275E31C78772F000BDD33 - isa - PBXBuildFile - - B03276141C78772F000BDD33 - - fileRef - B03275E41C78772F000BDD33 - isa - PBXBuildFile - - B03276151C787996000BDD33 - - children - - B03276201C788687000BDD33 - B032761E1C7885B2000BDD33 - B03276161C788162000BDD33 - B0086C551C789758008A4F69 - B03276221C78882A000BDD33 - B03276261C789217000BDD33 - B03276181C7884C7000BDD33 - - isa - PBXGroup - path - render - sourceTree - <group> - - B03276161C788162000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - ShapeRenderer.swift - sourceTree - <group> - - B03276171C788162000BDD33 - - fileRef - B03276161C788162000BDD33 - isa - PBXBuildFile - - B03276181C7884C7000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - RenderUtils.swift - sourceTree - <group> - - B03276191C7884C7000BDD33 - - fileRef - B03276181C7884C7000BDD33 - isa - PBXBuildFile - - B032761E1C7885B2000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - TextRenderer.swift - sourceTree - <group> - - B032761F1C7885B2000BDD33 - - fileRef - B032761E1C7885B2000BDD33 - isa - PBXBuildFile - - B03276201C788687000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - NodeRenderer.swift - sourceTree - <group> - - B03276211C788687000BDD33 - - fileRef - B03276201C788687000BDD33 - isa - PBXBuildFile - - B03276221C78882A000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - ImageRenderer.swift - sourceTree - <group> - - B03276231C78882A000BDD33 - - fileRef - B03276221C78882A000BDD33 - isa - PBXBuildFile - - B03276261C789217000BDD33 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - RenderContext.swift - sourceTree - <group> - - B03276271C789217000BDD33 - - fileRef - B03276261C789217000BDD33 - isa - PBXBuildFile - - B03F88BC1C1C6A9300F24FFC - - children - - B03F88BD1C1C6A9E00F24FFC - - isa - PBXGroup - path - events - sourceTree - <group> - - B03F88BD1C1C6A9E00F24FFC - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Signal.swift - sourceTree - <group> - - B03F88BE1C1C6A9E00F24FFC - - fileRef - B03F88BD1C1C6A9E00F24FFC - isa - PBXBuildFile - - B07B544A1CA3F92B0056CA74 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Disposable.swift - sourceTree - <group> - - B07B544B1CA3F92B0056CA74 - - fileRef - B07B544A1CA3F92B0056CA74 - isa - PBXBuildFile - - BA114AD1025D7DA0B0DC35A8 - - explicitFileType - wrapper.framework - includeInIndex - 0 - isa - PBXFileReference - path - Pods_Macaw.framework - sourceTree - BUILT_PRODUCTS_DIR - - DB1EC634C50C9231DFC4041E - - children - - BA114AD1025D7DA0B0DC35A8 - - isa - PBXGroup - name - Frameworks - sourceTree - <group> - - - rootObject - B02E75CD1C160F8D00D1971D - - +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 573AA6A01CAE346900F30607 /* AnimationSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 573AA69F1CAE346900F30607 /* AnimationSequence.swift */; }; + 573AA6A21CAE34BA00F30607 /* RepetitiveAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 573AA6A11CAE34BA00F30607 /* RepetitiveAnimation.swift */; }; + 573AA6A41CAE402C00F30607 /* RevertedAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 573AA6A31CAE402C00F30607 /* RevertedAnimation.swift */; }; + 573AA6A61CAE41D400F30607 /* LoopedAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 573AA6A51CAE41D400F30607 /* LoopedAnimation.swift */; }; + 5742238E1CA5414E001EE463 /* AnimationLoop.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5742238D1CA5414E001EE463 /* AnimationLoop.swift */; }; + 574223901CA5448C001EE463 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5742238F1CA5448C001EE463 /* Animation.swift */; }; + 574223921CA55360001EE463 /* AnimationSubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574223911CA55360001EE463 /* AnimationSubscription.swift */; }; + 574BDD921CAA7FC50031D313 /* IntInterpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574BDD911CAA7FC50031D313 /* IntInterpolation.swift */; }; + 574BDD941CAA80070031D313 /* Interpolable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574BDD931CAA80070031D313 /* Interpolable.swift */; }; + 574BDD961CAA861B0031D313 /* CGFloatInterpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574BDD951CAA861B0031D313 /* CGFloatInterpolation.swift */; }; + 574BDD981CAA86CC0031D313 /* CGPointInterpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574BDD971CAA86CC0031D313 /* CGPointInterpolation.swift */; }; + 574BDD9A1CAAA5540031D313 /* DoubleInterpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574BDD991CAAA5540031D313 /* DoubleInterpolation.swift */; }; + 574BDD9C1CAAA5D60031D313 /* TransformInterpolation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 574BDD9B1CAAA5D60031D313 /* TransformInterpolation.swift */; }; + 5754E63F1CB3B70D00657DA3 /* EasingAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5754E63E1CB3B70D00657DA3 /* EasingAnimations.swift */; }; + 57982D531CB508E600111DAA /* PathAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57982D521CB508E600111DAA /* PathAnimation.swift */; }; + 585C04481C27CFB100335FF2 /* MacawView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 585C04471C27CFB100335FF2 /* MacawView.swift */; }; + 66AE19D21CC8C6B300B78B5E /* SVGParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66AE19D11CC8C6B300B78B5E /* SVGParser.swift */; }; + AD9EDEE3709C1668BED1B1BF /* Pods_Macaw.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA114AD1025D7DA0B0DC35A8 /* Pods_Macaw.framework */; }; + B0086C561C789758008A4F69 /* GroupRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0086C551C789758008A4F69 /* GroupRenderer.swift */; }; + B0097E081C706CAB00350E43 /* ObservableValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0097E071C706CAB00350E43 /* ObservableValue.swift */; }; + B03275E51C78772F000BDD33 /* Align.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B21C78772F000BDD33 /* Align.swift */; }; + B03275E61C78772F000BDD33 /* AspectRatio.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B31C78772F000BDD33 /* AspectRatio.swift */; }; + B03275E71C78772F000BDD33 /* Baseline.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B41C78772F000BDD33 /* Baseline.swift */; }; + B03275E81C78772F000BDD33 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B51C78772F000BDD33 /* Color.swift */; }; + B03275E91C78772F000BDD33 /* Drawable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B61C78772F000BDD33 /* Drawable.swift */; }; + B03275EA1C78772F000BDD33 /* Fill.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B71C78772F000BDD33 /* Fill.swift */; }; + B03275EB1C78772F000BDD33 /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B81C78772F000BDD33 /* Font.swift */; }; + B03275EC1C78772F000BDD33 /* FontStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275B91C78772F000BDD33 /* FontStyle.swift */; }; + B03275ED1C78772F000BDD33 /* FontWeight.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275BA1C78772F000BDD33 /* FontWeight.swift */; }; + B03275EE1C78772F000BDD33 /* LinearGradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275BB1C78772F000BDD33 /* LinearGradient.swift */; }; + B03275EF1C78772F000BDD33 /* LineCap.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275BC1C78772F000BDD33 /* LineCap.swift */; }; + B03275F01C78772F000BDD33 /* LineJoin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275BD1C78772F000BDD33 /* LineJoin.swift */; }; + B03275F11C78772F000BDD33 /* Stop.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275BE1C78772F000BDD33 /* Stop.swift */; }; + B03275F21C78772F000BDD33 /* Stroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275BF1C78772F000BDD33 /* Stroke.swift */; }; + B03275F31C78772F000BDD33 /* Arc.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C11C78772F000BDD33 /* Arc.swift */; }; + B03275F41C78772F000BDD33 /* Circle.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C21C78772F000BDD33 /* Circle.swift */; }; + B03275F51C78772F000BDD33 /* Close.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C31C78772F000BDD33 /* Close.swift */; }; + B03275F61C78772F000BDD33 /* Cubic.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C41C78772F000BDD33 /* Cubic.swift */; }; + B03275F71C78772F000BDD33 /* Ellipse.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C51C78772F000BDD33 /* Ellipse.swift */; }; + B03275F81C78772F000BDD33 /* Elliptical.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C61C78772F000BDD33 /* Elliptical.swift */; }; + B03275F91C78772F000BDD33 /* HLine.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C71C78772F000BDD33 /* HLine.swift */; }; + B03275FA1C78772F000BDD33 /* Insets.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C81C78772F000BDD33 /* Insets.swift */; }; + B03275FB1C78772F000BDD33 /* Line.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275C91C78772F000BDD33 /* Line.swift */; }; + B03275FC1C78772F000BDD33 /* Locus.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275CA1C78772F000BDD33 /* Locus.swift */; }; + B03275FD1C78772F000BDD33 /* Move.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275CB1C78772F000BDD33 /* Move.swift */; }; + B03275FE1C78772F000BDD33 /* Path.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275CC1C78772F000BDD33 /* Path.swift */; }; + B03275FF1C78772F000BDD33 /* PathSegment.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275CD1C78772F000BDD33 /* PathSegment.swift */; }; + B03276001C78772F000BDD33 /* PLine.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275CE1C78772F000BDD33 /* PLine.swift */; }; + B03276011C78772F000BDD33 /* Point.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275CF1C78772F000BDD33 /* Point.swift */; }; + B03276021C78772F000BDD33 /* Polygon.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D01C78772F000BDD33 /* Polygon.swift */; }; + B03276031C78772F000BDD33 /* Polyline.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D11C78772F000BDD33 /* Polyline.swift */; }; + B03276041C78772F000BDD33 /* Quadratic.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D21C78772F000BDD33 /* Quadratic.swift */; }; + B03276051C78772F000BDD33 /* Rect.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D31C78772F000BDD33 /* Rect.swift */; }; + B03276061C78772F000BDD33 /* RoundRect.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D41C78772F000BDD33 /* RoundRect.swift */; }; + B03276071C78772F000BDD33 /* SCubic.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D51C78772F000BDD33 /* SCubic.swift */; }; + B03276081C78772F000BDD33 /* Size.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D61C78772F000BDD33 /* Size.swift */; }; + B03276091C78772F000BDD33 /* SQuadratic.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D71C78772F000BDD33 /* SQuadratic.swift */; }; + B032760A1C78772F000BDD33 /* Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D81C78772F000BDD33 /* Transform.swift */; }; + B032760B1C78772F000BDD33 /* VLine.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275D91C78772F000BDD33 /* VLine.swift */; }; + B032760C1C78772F000BDD33 /* Cursor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275DB1C78772F000BDD33 /* Cursor.swift */; }; + B032760D1C78772F000BDD33 /* Mouse.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275DC1C78772F000BDD33 /* Mouse.swift */; }; + B032760E1C78772F000BDD33 /* MouseButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275DD1C78772F000BDD33 /* MouseButton.swift */; }; + B032760F1C78772F000BDD33 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275DF1C78772F000BDD33 /* Group.swift */; }; + B03276101C78772F000BDD33 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275E01C78772F000BDD33 /* Image.swift */; }; + B03276121C78772F000BDD33 /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275E21C78772F000BDD33 /* Node.swift */; }; + B03276131C78772F000BDD33 /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275E31C78772F000BDD33 /* Shape.swift */; }; + B03276141C78772F000BDD33 /* Text.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03275E41C78772F000BDD33 /* Text.swift */; }; + B03276171C788162000BDD33 /* ShapeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03276161C788162000BDD33 /* ShapeRenderer.swift */; }; + B03276191C7884C7000BDD33 /* RenderUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03276181C7884C7000BDD33 /* RenderUtils.swift */; }; + B032761F1C7885B2000BDD33 /* TextRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B032761E1C7885B2000BDD33 /* TextRenderer.swift */; }; + B03276211C788687000BDD33 /* NodeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03276201C788687000BDD33 /* NodeRenderer.swift */; }; + B03276231C78882A000BDD33 /* ImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03276221C78882A000BDD33 /* ImageRenderer.swift */; }; + B03276271C789217000BDD33 /* RenderContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03276261C789217000BDD33 /* RenderContext.swift */; }; + B03F88BE1C1C6A9E00F24FFC /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = B03F88BD1C1C6A9E00F24FFC /* Signal.swift */; }; + B07B544B1CA3F92B0056CA74 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07B544A1CA3F92B0056CA74 /* Disposable.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 0D10CB2117557903E2D9F24D /* Pods-Macaw.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Macaw.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Macaw/Pods-Macaw.debug.xcconfig"; sourceTree = ""; }; + 573AA69F1CAE346900F30607 /* AnimationSequence.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationSequence.swift; sourceTree = ""; }; + 573AA6A11CAE34BA00F30607 /* RepetitiveAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RepetitiveAnimation.swift; sourceTree = ""; }; + 573AA6A31CAE402C00F30607 /* RevertedAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RevertedAnimation.swift; sourceTree = ""; }; + 573AA6A51CAE41D400F30607 /* LoopedAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LoopedAnimation.swift; sourceTree = ""; }; + 5742238D1CA5414E001EE463 /* AnimationLoop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationLoop.swift; sourceTree = ""; }; + 5742238F1CA5448C001EE463 /* Animation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Animation.swift; sourceTree = ""; }; + 574223911CA55360001EE463 /* AnimationSubscription.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationSubscription.swift; sourceTree = ""; }; + 574BDD911CAA7FC50031D313 /* IntInterpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IntInterpolation.swift; sourceTree = ""; }; + 574BDD931CAA80070031D313 /* Interpolable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolable.swift; sourceTree = ""; }; + 574BDD951CAA861B0031D313 /* CGFloatInterpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGFloatInterpolation.swift; sourceTree = ""; }; + 574BDD971CAA86CC0031D313 /* CGPointInterpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGPointInterpolation.swift; sourceTree = ""; }; + 574BDD991CAAA5540031D313 /* DoubleInterpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DoubleInterpolation.swift; sourceTree = ""; }; + 574BDD9B1CAAA5D60031D313 /* TransformInterpolation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TransformInterpolation.swift; sourceTree = ""; }; + 5754E63E1CB3B70D00657DA3 /* EasingAnimations.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EasingAnimations.swift; sourceTree = ""; }; + 57982D521CB508E600111DAA /* PathAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PathAnimation.swift; sourceTree = ""; }; + 585C04471C27CFB100335FF2 /* MacawView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MacawView.swift; sourceTree = ""; }; + 66AE19D11CC8C6B300B78B5E /* SVGParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SVGParser.swift; path = svg/SVGParser.swift; sourceTree = ""; }; + 8A680FA7BCDE96402C10D8D2 /* Pods-Macaw.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Macaw.release.xcconfig"; path = "Pods/Target Support Files/Pods-Macaw/Pods-Macaw.release.xcconfig"; sourceTree = ""; }; + B0086C551C789758008A4F69 /* GroupRenderer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupRenderer.swift; sourceTree = ""; }; + B0097E071C706CAB00350E43 /* ObservableValue.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ObservableValue.swift; sourceTree = ""; }; + B02E75D61C160F8D00D1971D /* Macaw.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Macaw.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B02E76131C1612A900D1971D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B03275B21C78772F000BDD33 /* Align.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Align.swift; sourceTree = ""; }; + B03275B31C78772F000BDD33 /* AspectRatio.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AspectRatio.swift; sourceTree = ""; }; + B03275B41C78772F000BDD33 /* Baseline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Baseline.swift; sourceTree = ""; }; + B03275B51C78772F000BDD33 /* Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Color.swift; sourceTree = ""; }; + B03275B61C78772F000BDD33 /* Drawable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Drawable.swift; sourceTree = ""; }; + B03275B71C78772F000BDD33 /* Fill.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Fill.swift; sourceTree = ""; }; + B03275B81C78772F000BDD33 /* Font.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Font.swift; sourceTree = ""; }; + B03275B91C78772F000BDD33 /* FontStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontStyle.swift; sourceTree = ""; }; + B03275BA1C78772F000BDD33 /* FontWeight.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontWeight.swift; sourceTree = ""; }; + B03275BB1C78772F000BDD33 /* LinearGradient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LinearGradient.swift; sourceTree = ""; }; + B03275BC1C78772F000BDD33 /* LineCap.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LineCap.swift; sourceTree = ""; }; + B03275BD1C78772F000BDD33 /* LineJoin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LineJoin.swift; sourceTree = ""; }; + B03275BE1C78772F000BDD33 /* Stop.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stop.swift; sourceTree = ""; }; + B03275BF1C78772F000BDD33 /* Stroke.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stroke.swift; sourceTree = ""; }; + B03275C11C78772F000BDD33 /* Arc.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Arc.swift; sourceTree = ""; }; + B03275C21C78772F000BDD33 /* Circle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Circle.swift; sourceTree = ""; }; + B03275C31C78772F000BDD33 /* Close.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Close.swift; sourceTree = ""; }; + B03275C41C78772F000BDD33 /* Cubic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cubic.swift; sourceTree = ""; }; + B03275C51C78772F000BDD33 /* Ellipse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Ellipse.swift; sourceTree = ""; }; + B03275C61C78772F000BDD33 /* Elliptical.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Elliptical.swift; sourceTree = ""; }; + B03275C71C78772F000BDD33 /* HLine.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HLine.swift; sourceTree = ""; }; + B03275C81C78772F000BDD33 /* Insets.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Insets.swift; sourceTree = ""; }; + B03275C91C78772F000BDD33 /* Line.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Line.swift; sourceTree = ""; }; + B03275CA1C78772F000BDD33 /* Locus.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Locus.swift; sourceTree = ""; }; + B03275CB1C78772F000BDD33 /* Move.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Move.swift; sourceTree = ""; }; + B03275CC1C78772F000BDD33 /* Path.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Path.swift; sourceTree = ""; }; + B03275CD1C78772F000BDD33 /* PathSegment.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PathSegment.swift; sourceTree = ""; }; + B03275CE1C78772F000BDD33 /* PLine.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PLine.swift; sourceTree = ""; }; + B03275CF1C78772F000BDD33 /* Point.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Point.swift; sourceTree = ""; }; + B03275D01C78772F000BDD33 /* Polygon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Polygon.swift; sourceTree = ""; }; + B03275D11C78772F000BDD33 /* Polyline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Polyline.swift; sourceTree = ""; }; + B03275D21C78772F000BDD33 /* Quadratic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Quadratic.swift; sourceTree = ""; }; + B03275D31C78772F000BDD33 /* Rect.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Rect.swift; sourceTree = ""; }; + B03275D41C78772F000BDD33 /* RoundRect.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RoundRect.swift; sourceTree = ""; }; + B03275D51C78772F000BDD33 /* SCubic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SCubic.swift; sourceTree = ""; }; + B03275D61C78772F000BDD33 /* Size.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Size.swift; sourceTree = ""; }; + B03275D71C78772F000BDD33 /* SQuadratic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SQuadratic.swift; sourceTree = ""; }; + B03275D81C78772F000BDD33 /* Transform.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Transform.swift; sourceTree = ""; }; + B03275D91C78772F000BDD33 /* VLine.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VLine.swift; sourceTree = ""; }; + B03275DB1C78772F000BDD33 /* Cursor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Cursor.swift; sourceTree = ""; }; + B03275DC1C78772F000BDD33 /* Mouse.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Mouse.swift; sourceTree = ""; }; + B03275DD1C78772F000BDD33 /* MouseButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MouseButton.swift; sourceTree = ""; }; + B03275DF1C78772F000BDD33 /* Group.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Group.swift; sourceTree = ""; }; + B03275E01C78772F000BDD33 /* Image.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Image.swift; sourceTree = ""; }; + B03275E21C78772F000BDD33 /* Node.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Node.swift; sourceTree = ""; }; + B03275E31C78772F000BDD33 /* Shape.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Shape.swift; sourceTree = ""; }; + B03275E41C78772F000BDD33 /* Text.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Text.swift; sourceTree = ""; }; + B03276161C788162000BDD33 /* ShapeRenderer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShapeRenderer.swift; sourceTree = ""; }; + B03276181C7884C7000BDD33 /* RenderUtils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RenderUtils.swift; sourceTree = ""; }; + B032761E1C7885B2000BDD33 /* TextRenderer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextRenderer.swift; sourceTree = ""; }; + B03276201C788687000BDD33 /* NodeRenderer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NodeRenderer.swift; sourceTree = ""; }; + B03276221C78882A000BDD33 /* ImageRenderer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageRenderer.swift; sourceTree = ""; }; + B03276261C789217000BDD33 /* RenderContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RenderContext.swift; sourceTree = ""; }; + B03F88BD1C1C6A9E00F24FFC /* Signal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Signal.swift; sourceTree = ""; }; + B07B544A1CA3F92B0056CA74 /* Disposable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Disposable.swift; sourceTree = ""; }; + BA114AD1025D7DA0B0DC35A8 /* Pods_Macaw.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Macaw.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + B02E75D21C160F8D00D1971D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AD9EDEE3709C1668BED1B1BF /* Pods_Macaw.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 549363F57810A86F4226A525 /* Pods */ = { + isa = PBXGroup; + children = ( + 0D10CB2117557903E2D9F24D /* Pods-Macaw.debug.xcconfig */, + 8A680FA7BCDE96402C10D8D2 /* Pods-Macaw.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + 573AA69E1CAE346900F30607 /* types */ = { + isa = PBXGroup; + children = ( + 573AA69F1CAE346900F30607 /* AnimationSequence.swift */, + 573AA6A11CAE34BA00F30607 /* RepetitiveAnimation.swift */, + 573AA6A31CAE402C00F30607 /* RevertedAnimation.swift */, + 573AA6A51CAE41D400F30607 /* LoopedAnimation.swift */, + 5754E63E1CB3B70D00657DA3 /* EasingAnimations.swift */, + ); + path = types; + sourceTree = ""; + }; + 5742238C1CA540F8001EE463 /* animation */ = { + isa = PBXGroup; + children = ( + 573AA69E1CAE346900F30607 /* types */, + 574BDD901CAA7F490031D313 /* extensions */, + 5742238D1CA5414E001EE463 /* AnimationLoop.swift */, + 5742238F1CA5448C001EE463 /* Animation.swift */, + 57982D521CB508E600111DAA /* PathAnimation.swift */, + 574223911CA55360001EE463 /* AnimationSubscription.swift */, + 574BDD931CAA80070031D313 /* Interpolable.swift */, + ); + path = animation; + sourceTree = ""; + }; + 574BDD901CAA7F490031D313 /* extensions */ = { + isa = PBXGroup; + children = ( + 574BDD911CAA7FC50031D313 /* IntInterpolation.swift */, + 574BDD951CAA861B0031D313 /* CGFloatInterpolation.swift */, + 574BDD971CAA86CC0031D313 /* CGPointInterpolation.swift */, + 574BDD991CAAA5540031D313 /* DoubleInterpolation.swift */, + 574BDD9B1CAAA5D60031D313 /* TransformInterpolation.swift */, + ); + path = extensions; + sourceTree = ""; + }; + 585C04461C27CFB100335FF2 /* views */ = { + isa = PBXGroup; + children = ( + 585C04471C27CFB100335FF2 /* MacawView.swift */, + ); + path = views; + sourceTree = ""; + }; + 66AE19D01CC8C66E00B78B5E /* svg */ = { + isa = PBXGroup; + children = ( + 66AE19D11CC8C6B300B78B5E /* SVGParser.swift */, + ); + name = svg; + sourceTree = ""; + }; + B0097E061C706CA500350E43 /* bindings */ = { + isa = PBXGroup; + children = ( + B0097E071C706CAB00350E43 /* ObservableValue.swift */, + B07B544A1CA3F92B0056CA74 /* Disposable.swift */, + ); + path = bindings; + sourceTree = ""; + }; + B02E75CC1C160F8D00D1971D = { + isa = PBXGroup; + children = ( + B02E75E11C160FF200D1971D /* Source */, + B02E75D71C160F8D00D1971D /* Products */, + 549363F57810A86F4226A525 /* Pods */, + DB1EC634C50C9231DFC4041E /* Frameworks */, + ); + sourceTree = ""; + }; + B02E75D71C160F8D00D1971D /* Products */ = { + isa = PBXGroup; + children = ( + B02E75D61C160F8D00D1971D /* Macaw.framework */, + ); + name = Products; + sourceTree = ""; + }; + B02E75E11C160FF200D1971D /* Source */ = { + isa = PBXGroup; + children = ( + 66AE19D01CC8C66E00B78B5E /* svg */, + 5742238C1CA540F8001EE463 /* animation */, + B03275B01C78772F000BDD33 /* model */, + 585C04461C27CFB100335FF2 /* views */, + B03F88BC1C1C6A9300F24FFC /* events */, + B0097E061C706CA500350E43 /* bindings */, + B03276151C787996000BDD33 /* render */, + B02E76131C1612A900D1971D /* Info.plist */, + ); + path = Source; + sourceTree = ""; + }; + B03275B01C78772F000BDD33 /* model */ = { + isa = PBXGroup; + children = ( + B03275B11C78772F000BDD33 /* draw */, + B03275C01C78772F000BDD33 /* geom2d */, + B03275DA1C78772F000BDD33 /* input */, + B03275DE1C78772F000BDD33 /* scene */, + ); + path = model; + sourceTree = ""; + }; + B03275B11C78772F000BDD33 /* draw */ = { + isa = PBXGroup; + children = ( + B03275B21C78772F000BDD33 /* Align.swift */, + B03275B31C78772F000BDD33 /* AspectRatio.swift */, + B03275B41C78772F000BDD33 /* Baseline.swift */, + B03275B51C78772F000BDD33 /* Color.swift */, + B03275B61C78772F000BDD33 /* Drawable.swift */, + B03275B71C78772F000BDD33 /* Fill.swift */, + B03275B81C78772F000BDD33 /* Font.swift */, + B03275B91C78772F000BDD33 /* FontStyle.swift */, + B03275BA1C78772F000BDD33 /* FontWeight.swift */, + B03275BB1C78772F000BDD33 /* LinearGradient.swift */, + B03275BC1C78772F000BDD33 /* LineCap.swift */, + B03275BD1C78772F000BDD33 /* LineJoin.swift */, + B03275BE1C78772F000BDD33 /* Stop.swift */, + B03275BF1C78772F000BDD33 /* Stroke.swift */, + ); + path = draw; + sourceTree = ""; + }; + B03275C01C78772F000BDD33 /* geom2d */ = { + isa = PBXGroup; + children = ( + B03275C11C78772F000BDD33 /* Arc.swift */, + B03275C21C78772F000BDD33 /* Circle.swift */, + B03275C31C78772F000BDD33 /* Close.swift */, + B03275C41C78772F000BDD33 /* Cubic.swift */, + B03275C51C78772F000BDD33 /* Ellipse.swift */, + B03275C61C78772F000BDD33 /* Elliptical.swift */, + B03275C71C78772F000BDD33 /* HLine.swift */, + B03275C81C78772F000BDD33 /* Insets.swift */, + B03275C91C78772F000BDD33 /* Line.swift */, + B03275CA1C78772F000BDD33 /* Locus.swift */, + B03275CB1C78772F000BDD33 /* Move.swift */, + B03275CC1C78772F000BDD33 /* Path.swift */, + B03275CD1C78772F000BDD33 /* PathSegment.swift */, + B03275CE1C78772F000BDD33 /* PLine.swift */, + B03275CF1C78772F000BDD33 /* Point.swift */, + B03275D01C78772F000BDD33 /* Polygon.swift */, + B03275D11C78772F000BDD33 /* Polyline.swift */, + B03275D21C78772F000BDD33 /* Quadratic.swift */, + B03275D31C78772F000BDD33 /* Rect.swift */, + B03275D41C78772F000BDD33 /* RoundRect.swift */, + B03275D51C78772F000BDD33 /* SCubic.swift */, + B03275D61C78772F000BDD33 /* Size.swift */, + B03275D71C78772F000BDD33 /* SQuadratic.swift */, + B03275D81C78772F000BDD33 /* Transform.swift */, + B03275D91C78772F000BDD33 /* VLine.swift */, + ); + path = geom2d; + sourceTree = ""; + }; + B03275DA1C78772F000BDD33 /* input */ = { + isa = PBXGroup; + children = ( + B03275DB1C78772F000BDD33 /* Cursor.swift */, + B03275DC1C78772F000BDD33 /* Mouse.swift */, + B03275DD1C78772F000BDD33 /* MouseButton.swift */, + ); + path = input; + sourceTree = ""; + }; + B03275DE1C78772F000BDD33 /* scene */ = { + isa = PBXGroup; + children = ( + B03275DF1C78772F000BDD33 /* Group.swift */, + B03275E01C78772F000BDD33 /* Image.swift */, + B03275E21C78772F000BDD33 /* Node.swift */, + B03275E31C78772F000BDD33 /* Shape.swift */, + B03275E41C78772F000BDD33 /* Text.swift */, + ); + path = scene; + sourceTree = ""; + }; + B03276151C787996000BDD33 /* render */ = { + isa = PBXGroup; + children = ( + B03276201C788687000BDD33 /* NodeRenderer.swift */, + B032761E1C7885B2000BDD33 /* TextRenderer.swift */, + B03276161C788162000BDD33 /* ShapeRenderer.swift */, + B0086C551C789758008A4F69 /* GroupRenderer.swift */, + B03276221C78882A000BDD33 /* ImageRenderer.swift */, + B03276261C789217000BDD33 /* RenderContext.swift */, + B03276181C7884C7000BDD33 /* RenderUtils.swift */, + ); + path = render; + sourceTree = ""; + }; + B03F88BC1C1C6A9300F24FFC /* events */ = { + isa = PBXGroup; + children = ( + B03F88BD1C1C6A9E00F24FFC /* Signal.swift */, + ); + path = events; + sourceTree = ""; + }; + DB1EC634C50C9231DFC4041E /* Frameworks */ = { + isa = PBXGroup; + children = ( + BA114AD1025D7DA0B0DC35A8 /* Pods_Macaw.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + B02E75D31C160F8D00D1971D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + B02E75D51C160F8D00D1971D /* Macaw */ = { + isa = PBXNativeTarget; + buildConfigurationList = B02E75DE1C160F8D00D1971D /* Build configuration list for PBXNativeTarget "Macaw" */; + buildPhases = ( + 7E48ADF2DD7D3357B810323E /* Check Pods Manifest.lock */, + B02E75D11C160F8D00D1971D /* Sources */, + B02E75D21C160F8D00D1971D /* Frameworks */, + B02E75D31C160F8D00D1971D /* Headers */, + B02E75D41C160F8D00D1971D /* Resources */, + A5E8CEC730B5E642B7F50D35 /* Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Macaw; + productName = Macaw; + productReference = B02E75D61C160F8D00D1971D /* Macaw.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + B02E75CD1C160F8D00D1971D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0710; + ORGANIZATIONNAME = Exyte; + TargetAttributes = { + B02E75D51C160F8D00D1971D = { + CreatedOnToolsVersion = 7.1.1; + }; + }; + }; + buildConfigurationList = B02E75D01C160F8D00D1971D /* Build configuration list for PBXProject "Macaw" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = B02E75CC1C160F8D00D1971D; + productRefGroup = B02E75D71C160F8D00D1971D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + B02E75D51C160F8D00D1971D /* Macaw */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + B02E75D41C160F8D00D1971D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 7E48ADF2DD7D3357B810323E /* Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + A5E8CEC730B5E642B7F50D35 /* Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Macaw/Pods-Macaw-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + B02E75D11C160F8D00D1971D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B03275FD1C78772F000BDD33 /* Move.swift in Sources */, + 574223921CA55360001EE463 /* AnimationSubscription.swift in Sources */, + B03F88BE1C1C6A9E00F24FFC /* Signal.swift in Sources */, + B032760E1C78772F000BDD33 /* MouseButton.swift in Sources */, + B03276061C78772F000BDD33 /* RoundRect.swift in Sources */, + B03275EC1C78772F000BDD33 /* FontStyle.swift in Sources */, + B03276191C7884C7000BDD33 /* RenderUtils.swift in Sources */, + B03275F31C78772F000BDD33 /* Arc.swift in Sources */, + B03276121C78772F000BDD33 /* Node.swift in Sources */, + B03276211C788687000BDD33 /* NodeRenderer.swift in Sources */, + B03276231C78882A000BDD33 /* ImageRenderer.swift in Sources */, + B03275E51C78772F000BDD33 /* Align.swift in Sources */, + B03276021C78772F000BDD33 /* Polygon.swift in Sources */, + B032760D1C78772F000BDD33 /* Mouse.swift in Sources */, + B03275FE1C78772F000BDD33 /* Path.swift in Sources */, + B03275EB1C78772F000BDD33 /* Font.swift in Sources */, + B03275E81C78772F000BDD33 /* Color.swift in Sources */, + B03275E91C78772F000BDD33 /* Drawable.swift in Sources */, + B03275FB1C78772F000BDD33 /* Line.swift in Sources */, + B032760A1C78772F000BDD33 /* Transform.swift in Sources */, + B032760C1C78772F000BDD33 /* Cursor.swift in Sources */, + 574BDD941CAA80070031D313 /* Interpolable.swift in Sources */, + B03275EF1C78772F000BDD33 /* LineCap.swift in Sources */, + 573AA6A41CAE402C00F30607 /* RevertedAnimation.swift in Sources */, + 573AA6A61CAE41D400F30607 /* LoopedAnimation.swift in Sources */, + B03275F71C78772F000BDD33 /* Ellipse.swift in Sources */, + B0097E081C706CAB00350E43 /* ObservableValue.swift in Sources */, + B032760F1C78772F000BDD33 /* Group.swift in Sources */, + B03275E61C78772F000BDD33 /* AspectRatio.swift in Sources */, + B03276071C78772F000BDD33 /* SCubic.swift in Sources */, + B03276031C78772F000BDD33 /* Polyline.swift in Sources */, + 574BDD961CAA861B0031D313 /* CGFloatInterpolation.swift in Sources */, + B03275FC1C78772F000BDD33 /* Locus.swift in Sources */, + 5754E63F1CB3B70D00657DA3 /* EasingAnimations.swift in Sources */, + B03275F41C78772F000BDD33 /* Circle.swift in Sources */, + B03276011C78772F000BDD33 /* Point.swift in Sources */, + B03276141C78772F000BDD33 /* Text.swift in Sources */, + B03276051C78772F000BDD33 /* Rect.swift in Sources */, + 574BDD9A1CAAA5540031D313 /* DoubleInterpolation.swift in Sources */, + B03275FF1C78772F000BDD33 /* PathSegment.swift in Sources */, + B03276041C78772F000BDD33 /* Quadratic.swift in Sources */, + B03275F21C78772F000BDD33 /* Stroke.swift in Sources */, + B03276271C789217000BDD33 /* RenderContext.swift in Sources */, + B032760B1C78772F000BDD33 /* VLine.swift in Sources */, + B03276081C78772F000BDD33 /* Size.swift in Sources */, + B03275F81C78772F000BDD33 /* Elliptical.swift in Sources */, + B032761F1C7885B2000BDD33 /* TextRenderer.swift in Sources */, + B03276131C78772F000BDD33 /* Shape.swift in Sources */, + 573AA6A21CAE34BA00F30607 /* RepetitiveAnimation.swift in Sources */, + B0086C561C789758008A4F69 /* GroupRenderer.swift in Sources */, + 574BDD981CAA86CC0031D313 /* CGPointInterpolation.swift in Sources */, + B03276001C78772F000BDD33 /* PLine.swift in Sources */, + B03275F91C78772F000BDD33 /* HLine.swift in Sources */, + B03275FA1C78772F000BDD33 /* Insets.swift in Sources */, + B07B544B1CA3F92B0056CA74 /* Disposable.swift in Sources */, + B03276101C78772F000BDD33 /* Image.swift in Sources */, + B03275EE1C78772F000BDD33 /* LinearGradient.swift in Sources */, + B03275E71C78772F000BDD33 /* Baseline.swift in Sources */, + B03275F11C78772F000BDD33 /* Stop.swift in Sources */, + 573AA6A01CAE346900F30607 /* AnimationSequence.swift in Sources */, + B03276171C788162000BDD33 /* ShapeRenderer.swift in Sources */, + 57982D531CB508E600111DAA /* PathAnimation.swift in Sources */, + B03275EA1C78772F000BDD33 /* Fill.swift in Sources */, + B03275F51C78772F000BDD33 /* Close.swift in Sources */, + B03275F01C78772F000BDD33 /* LineJoin.swift in Sources */, + B03276091C78772F000BDD33 /* SQuadratic.swift in Sources */, + 574BDD921CAA7FC50031D313 /* IntInterpolation.swift in Sources */, + 574BDD9C1CAAA5D60031D313 /* TransformInterpolation.swift in Sources */, + 5742238E1CA5414E001EE463 /* AnimationLoop.swift in Sources */, + B03275ED1C78772F000BDD33 /* FontWeight.swift in Sources */, + B03275F61C78772F000BDD33 /* Cubic.swift in Sources */, + 66AE19D21CC8C6B300B78B5E /* SVGParser.swift in Sources */, + 574223901CA5448C001EE463 /* Animation.swift in Sources */, + 585C04481C27CFB100335FF2 /* MacawView.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + B02E75DC1C160F8D00D1971D /* 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; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + 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_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.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B02E75DD1C160F8D00D1971D /* 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; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + 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.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + B02E75DF1C160F8D00D1971D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0D10CB2117557903E2D9F24D /* Pods-Macaw.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Source/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.exyte.Macaw.Macaw; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + B02E75E01C160F8D00D1971D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A680FA7BCDE96402C10D8D2 /* Pods-Macaw.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Source/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.exyte.Macaw.Macaw; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + B02E75D01C160F8D00D1971D /* Build configuration list for PBXProject "Macaw" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B02E75DC1C160F8D00D1971D /* Debug */, + B02E75DD1C160F8D00D1971D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B02E75DE1C160F8D00D1971D /* Build configuration list for PBXNativeTarget "Macaw" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B02E75DF1C160F8D00D1971D /* Debug */, + B02E75E01C160F8D00D1971D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = B02E75CD1C160F8D00D1971D /* Project object */; +}