master 346f9ec1d22b cached
62 files
178.6 KB
59.0k tokens
1 requests
Download .txt
Repository: matibot/MBCircularProgressBar
Branch: master
Commit: 346f9ec1d22b
Files: 62
Total size: 178.6 KB

Directory structure:
gitextract_36t2c59r/

├── .gitignore
├── .travis.yml
├── Example/
│   ├── MBCircularProgressBar/
│   │   ├── Images.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── LaunchImage.launchimage/
│   │   │       └── Contents.json
│   │   ├── Launch Screen.storyboard
│   │   ├── MBAppDelegate.h
│   │   ├── MBAppDelegate.m
│   │   ├── MBCircularProgressBar-Info.plist
│   │   ├── MBCircularProgressBar-Prefix.pch
│   │   ├── MBViewController.h
│   │   ├── MBViewController.m
│   │   ├── Main.storyboard
│   │   ├── en.lproj/
│   │   │   └── InfoPlist.strings
│   │   └── main.m
│   ├── MBCircularProgressBar.xcodeproj/
│   │   ├── project.pbxproj
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── MBCircularProgressBar-Example.xcscheme
│   ├── MBCircularProgressBar.xcworkspace/
│   │   ├── contents.xcworkspacedata
│   │   └── xcshareddata/
│   │       └── MBCircularProgressBar.xcscmblueprint
│   ├── Podfile
│   ├── Pods/
│   │   ├── Local Podspecs/
│   │   │   └── MBCircularProgressBar.podspec.json
│   │   ├── Pods.xcodeproj/
│   │   │   ├── project.pbxproj
│   │   │   └── xcshareddata/
│   │   │       └── xcschemes/
│   │   │           └── MBCircularProgressBar.xcscheme
│   │   └── Target Support Files/
│   │       ├── MBCircularProgressBar/
│   │       │   ├── Info.plist
│   │       │   ├── MBCircularProgressBar-dummy.m
│   │       │   ├── MBCircularProgressBar-prefix.pch
│   │       │   ├── MBCircularProgressBar-umbrella.h
│   │       │   ├── MBCircularProgressBar.modulemap
│   │       │   ├── MBCircularProgressBar.xcconfig
│   │       │   └── ResourceBundle-MBCircularProgressBar-Info.plist
│   │       ├── Pods-MBCircularProgressBar_Example/
│   │       │   ├── Info.plist
│   │       │   ├── Pods-MBCircularProgressBar_Example-acknowledgements.markdown
│   │       │   ├── Pods-MBCircularProgressBar_Example-acknowledgements.plist
│   │       │   ├── Pods-MBCircularProgressBar_Example-dummy.m
│   │       │   ├── Pods-MBCircularProgressBar_Example-frameworks.sh
│   │       │   ├── Pods-MBCircularProgressBar_Example-resources.sh
│   │       │   ├── Pods-MBCircularProgressBar_Example-umbrella.h
│   │       │   ├── Pods-MBCircularProgressBar_Example.debug.xcconfig
│   │       │   ├── Pods-MBCircularProgressBar_Example.modulemap
│   │       │   └── Pods-MBCircularProgressBar_Example.release.xcconfig
│   │       └── Pods-MBCircularProgressBar_Tests/
│   │           ├── Info.plist
│   │           ├── Pods-MBCircularProgressBar_Tests-acknowledgements.markdown
│   │           ├── Pods-MBCircularProgressBar_Tests-acknowledgements.plist
│   │           ├── Pods-MBCircularProgressBar_Tests-dummy.m
│   │           ├── Pods-MBCircularProgressBar_Tests-frameworks.sh
│   │           ├── Pods-MBCircularProgressBar_Tests-resources.sh
│   │           ├── Pods-MBCircularProgressBar_Tests-umbrella.h
│   │           ├── Pods-MBCircularProgressBar_Tests.debug.xcconfig
│   │           ├── Pods-MBCircularProgressBar_Tests.modulemap
│   │           └── Pods-MBCircularProgressBar_Tests.release.xcconfig
│   └── Tests/
│       ├── Tests-Info.plist
│       ├── Tests-Prefix.pch
│       ├── Tests.m
│       └── en.lproj/
│           └── InfoPlist.strings
├── LICENSE
├── MBCircularProgressBar.podspec
├── Pod/
│   ├── Assets/
│   │   └── .gitkeep
│   └── Classes/
│       ├── .gitkeep
│       ├── MBCircularProgressBarLayer.h
│       ├── MBCircularProgressBarLayer.m
│       ├── MBCircularProgressBarView.h
│       └── MBCircularProgressBarView.m
└── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
#
#Pods/


================================================
FILE: .travis.yml
================================================
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

language: objective-c
cache: cocoapods
osx_image: xcode8.3
# podfile: Example/Podfile

rvm:
- 2.2.2
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod install --project-directory=Example
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild clean test -workspace Example/MBCircularProgressBar.xcworkspace -scheme MBCircularProgressBar-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6s' | xcpretty -c
- pod lib lint --quick


================================================
FILE: Example/MBCircularProgressBar/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
  "images" : [
    {
      "idiom" : "iphone",
      "size" : "29x29",
      "scale" : "2x"
    },
    {
      "idiom" : "iphone",
      "size" : "40x40",
      "scale" : "2x"
    },
    {
      "idiom" : "iphone",
      "size" : "60x60",
      "scale" : "2x"
    },
    {
      "idiom" : "ipad",
      "size" : "29x29",
      "scale" : "1x"
    },
    {
      "idiom" : "ipad",
      "size" : "29x29",
      "scale" : "2x"
    },
    {
      "idiom" : "ipad",
      "size" : "40x40",
      "scale" : "1x"
    },
    {
      "idiom" : "ipad",
      "size" : "40x40",
      "scale" : "2x"
    },
    {
      "idiom" : "ipad",
      "size" : "76x76",
      "scale" : "1x"
    },
    {
      "idiom" : "ipad",
      "size" : "76x76",
      "scale" : "2x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}


================================================
FILE: Example/MBCircularProgressBar/Images.xcassets/LaunchImage.launchimage/Contents.json
================================================
{
  "images" : [
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "subtype" : "retina4",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "1x"
    },
    {
      "orientation" : "landscape",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "1x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "landscape",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}


================================================
FILE: Example/MBCircularProgressBar/Launch Screen.storyboard
================================================
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11134" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
    <dependencies>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11106"/>
        <capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
    </dependencies>
    <scenes>
        <!--View Controller-->
        <scene sceneID="EHf-IW-A2E">
            <objects>
                <viewController id="01J-lp-oVM" sceneMemberID="viewController">
                    <layoutGuides>
                        <viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/>
                        <viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/>
                    </layoutGuides>
                    <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
                        <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <subviews>
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="  Copyright © 2016 Mati Bot. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="obG-Y5-kRd">
                                <fontDescription key="fontDescription" type="system" pointSize="17"/>
                                <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                <nil key="highlightedColor"/>
                            </label>
                            <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="MBCircularProgressBar" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
                                <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
                                <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                <nil key="highlightedColor"/>
                            </label>
                        </subviews>
                        <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                        <constraints>
                            <constraint firstAttribute="centerX" secondItem="obG-Y5-kRd" secondAttribute="centerX" id="5cz-MP-9tL"/>
                            <constraint firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/>
                            <constraint firstItem="obG-Y5-kRd" firstAttribute="leading" secondItem="Ze5-6b-2t3" secondAttribute="leading" constant="20" symbolic="YES" id="SfN-ll-jLj"/>
                            <constraint firstAttribute="bottom" secondItem="obG-Y5-kRd" secondAttribute="bottom" constant="20" id="Y44-ml-fuU"/>
                            <constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/>
                            <constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Ze5-6b-2t3" secondAttribute="leading" constant="20" symbolic="YES" id="x7j-FC-K8j"/>
                        </constraints>
                    </view>
                </viewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="53" y="375"/>
        </scene>
    </scenes>
</document>


================================================
FILE: Example/MBCircularProgressBar/MBAppDelegate.h
================================================
//
//  MBAppDelegate.h
//  MBCircularProgressBar
//
//  Created by Mati Bot on 07/19/2015.
//  Copyright (c) 2015 Mati Bot. All rights reserved.
//

@import UIKit;

@interface MBAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end


================================================
FILE: Example/MBCircularProgressBar/MBAppDelegate.m
================================================
//
//  MBAppDelegate.m
//  MBCircularProgressBar
//
//  Created by Mati Bot on 07/19/2015.
//  Copyright (c) 2015 Mati Bot. All rights reserved.
//

#import "MBAppDelegate.h"

@implementation MBAppDelegate

- (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


================================================
FILE: Example/MBCircularProgressBar/MBCircularProgressBar-Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleDisplayName</key>
	<string>${PRODUCT_NAME}</string>
	<key>CFBundleExecutable</key>
	<string>${EXECUTABLE_NAME}</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>${PRODUCT_NAME}</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1.0</string>
	<key>LSRequiresIPhoneOS</key>
	<true/>
	<key>UILaunchStoryboardName</key>
	<string>Launch Screen</string>
	<key>UIMainStoryboardFile</key>
	<string>Main</string>
	<key>UIRequiredDeviceCapabilities</key>
	<array>
		<string>armv7</string>
	</array>
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>UISupportedInterfaceOrientations~ipad</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationPortraitUpsideDown</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
</dict>
</plist>


================================================
FILE: Example/MBCircularProgressBar/MBCircularProgressBar-Prefix.pch
================================================
//
//  Prefix header
//
//  The contents of this file are implicitly included at the beginning of every source file.
//

#import <Availability.h>

#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif

#ifdef __OBJC__
    @import UIKit;
    @import Foundation;
#endif


================================================
FILE: Example/MBCircularProgressBar/MBViewController.h
================================================
//
//  MBViewController.h
//  MBCircularProgressBar
//
//  Created by Mati Bot on 07/19/2015.
//  Copyright (c) 2015 Mati Bot. All rights reserved.
//

@import UIKit;

@interface MBViewController : UIViewController

@end


================================================
FILE: Example/MBCircularProgressBar/MBViewController.m
================================================
//
//  MBViewController.m
//  MBCircularProgressBar
//
//  Created by Mati Bot on 07/19/2015.
//  Copyright (c) 2015 Mati Bot. All rights reserved.
//

#import "MBViewController.h"
#import <MBCircularProgressBar/MBCircularProgressBarView.h>

@interface MBViewController ()

@property (weak, nonatomic) IBOutlet MBCircularProgressBarView *progressBar;
@property (weak, nonatomic) IBOutlet UISwitch *animatedSwitch;

@end

@implementation MBViewController

- (void)viewDidLoad {
    [super viewDidLoad];
}

- (IBAction)animate:(UIButton *)sender {
    [UIView animateWithDuration:self.animatedSwitch.on * 1.f animations:^{
        self.progressBar.value = 100.f - self.progressBar.value;
    }];
}


@end


================================================
FILE: Example/MBCircularProgressBar/Main.storyboard
================================================
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11542" systemVersion="16A323" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="0Y6-NN-x5f">
    <device id="retina4_7" orientation="portrait">
        <adaptation id="fullscreen"/>
    </device>
    <dependencies>
        <deployment identifier="iOS"/>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11524"/>
        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
    </dependencies>
    <scenes>
        <!--View Controller-->
        <scene sceneID="0Oe-Zf-BEY">
            <objects>
                <viewController id="0Y6-NN-x5f" customClass="MBViewController" sceneMemberID="viewController">
                    <layoutGuides>
                        <viewControllerLayoutGuide type="top" id="W14-1S-65i"/>
                        <viewControllerLayoutGuide type="bottom" id="Nym-Pj-yyg"/>
                    </layoutGuides>
                    <view key="view" contentMode="scaleToFill" id="f3k-s0-vqc">
                        <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <subviews>
                            <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ubh-gd-bZD" customClass="MBCircularProgressBarView">
                                <rect key="frame" x="88" y="233.5" width="200" height="200"/>
                                <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
                                <constraints>
                                    <constraint firstAttribute="height" constant="200" id="BDy-UV-7Ph"/>
                                    <constraint firstAttribute="width" constant="200" id="Tgw-oq-C05"/>
                                </constraints>
                                <userDefinedRuntimeAttributes>
                                    <userDefinedRuntimeAttribute type="number" keyPath="value">
                                        <real key="value" value="7"/>
                                    </userDefinedRuntimeAttribute>
                                </userDefinedRuntimeAttributes>
                            </view>
                            <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XRH-kQ-Cv7">
                                <rect key="frame" x="105.5" y="591" width="165" height="69"/>
                                <subviews>
                                    <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="R0W-8X-9Su">
                                        <rect key="frame" x="0.0" y="0.0" width="165" height="36"/>
                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
                                        <state key="normal" title="Change">
                                            <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                        </state>
                                        <connections>
                                            <action selector="animate:" destination="0Y6-NN-x5f" eventType="touchUpInside" id="VD3-su-hWZ"/>
                                        </connections>
                                    </button>
                                    <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Animated" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Tef-Vz-kAo">
                                        <rect key="frame" x="0.0" y="38" width="90" height="31"/>
                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
                                        <fontDescription key="fontDescription" type="system" pointSize="17"/>
                                        <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                        <nil key="highlightedColor"/>
                                    </label>
                                    <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="K83-We-8cZ">
                                        <rect key="frame" x="116" y="38" width="51" height="31"/>
                                        <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
                                    </switch>
                                </subviews>
                                <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                <constraints>
                                    <constraint firstAttribute="width" constant="165" id="Pel-SM-PBx"/>
                                    <constraint firstAttribute="height" constant="69" id="plT-Vg-ehB"/>
                                </constraints>
                            </view>
                        </subviews>
                        <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                        <constraints>
                            <constraint firstAttribute="centerX" secondItem="ubh-gd-bZD" secondAttribute="centerX" constant="-0.5" id="0Y5-FT-xn3"/>
                            <constraint firstItem="Nym-Pj-yyg" firstAttribute="top" secondItem="XRH-kQ-Cv7" secondAttribute="bottom" constant="7" id="dfE-fH-sPI"/>
                            <constraint firstAttribute="centerX" secondItem="XRH-kQ-Cv7" secondAttribute="centerX" constant="-0.5" id="lSb-Hg-Ul8"/>
                            <constraint firstAttribute="centerY" secondItem="ubh-gd-bZD" secondAttribute="centerY" id="lYK-k8-qTy"/>
                        </constraints>
                    </view>
                    <connections>
                        <outlet property="animatedSwitch" destination="K83-We-8cZ" id="v92-4f-eqQ"/>
                        <outlet property="progressBar" destination="ubh-gd-bZD" id="R0Q-Zc-adJ"/>
                    </connections>
                </viewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="qbe-j5-CDb" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="475" y="372"/>
        </scene>
    </scenes>
</document>


================================================
FILE: Example/MBCircularProgressBar/en.lproj/InfoPlist.strings
================================================
/* Localized versions of Info.plist keys */



================================================
FILE: Example/MBCircularProgressBar/main.m
================================================
//
//  main.m
//  MBCircularProgressBar
//
//  Created by Mati Bot on 07/19/2015.
//  Copyright (c) 2015 Mati Bot. All rights reserved.
//

@import UIKit;
#import "MBAppDelegate.h"

int main(int argc, char * argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([MBAppDelegate class]));
    }
}


================================================
FILE: Example/MBCircularProgressBar.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		4D98F22508E82029142444C0 /* Pods_MBCircularProgressBar_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BDF3D14AB73966C8CCEFBDAD /* Pods_MBCircularProgressBar_Tests.framework */; };
		6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
		6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
		6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
		6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
		6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
		6003F59E195388D20070C39A /* MBAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* MBAppDelegate.m */; };
		6003F5A7195388D20070C39A /* MBViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* MBViewController.m */; };
		6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
		6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
		6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
		6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
		6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
		6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
		B0FFFE3642D7182FD413FFE0 /* Pods_MBCircularProgressBar_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EF4A026019B43FD5E45FA97A /* Pods_MBCircularProgressBar_Example.framework */; };
		C393E5ED1DCE39F3007AC1AB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C393E5EC1DCE39F3007AC1AB /* Main.storyboard */; };
		C393E5EF1DCE3A9E007AC1AB /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C393E5EE1DCE3A9E007AC1AB /* Launch Screen.storyboard */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 6003F582195388D10070C39A /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 6003F589195388D20070C39A;
			remoteInfo = MBCircularProgressBar;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		185057E72C435A691D2185C3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
		5B357D8FDBED88E1D0AFBCAC /* Pods-MBCircularProgressBar_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MBCircularProgressBar_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.debug.xcconfig"; sourceTree = "<group>"; };
		6003F58A195388D20070C39A /* MBCircularProgressBar_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MBCircularProgressBar_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
		6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		6003F595195388D20070C39A /* MBCircularProgressBar-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "MBCircularProgressBar-Info.plist"; sourceTree = "<group>"; };
		6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		6003F59B195388D20070C39A /* MBCircularProgressBar-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MBCircularProgressBar-Prefix.pch"; sourceTree = "<group>"; };
		6003F59C195388D20070C39A /* MBAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBAppDelegate.h; sourceTree = "<group>"; };
		6003F59D195388D20070C39A /* MBAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MBAppDelegate.m; sourceTree = "<group>"; };
		6003F5A5195388D20070C39A /* MBViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MBViewController.h; sourceTree = "<group>"; };
		6003F5A6195388D20070C39A /* MBViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MBViewController.m; sourceTree = "<group>"; };
		6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
		6003F5AE195388D20070C39A /* MBCircularProgressBar_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MBCircularProgressBar_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
		6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
		6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
		606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
		773FBE8CDF86BB09D1561840 /* Pods-MBCircularProgressBar_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MBCircularProgressBar_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.release.xcconfig"; sourceTree = "<group>"; };
		869A4736C2410799365DBFAF /* Pods-MBCircularProgressBar_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MBCircularProgressBar_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.debug.xcconfig"; sourceTree = "<group>"; };
		89A9DEA9BC8FD1B811DE6A7C /* MBCircularProgressBar.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = MBCircularProgressBar.podspec; path = ../MBCircularProgressBar.podspec; sourceTree = "<group>"; };
		9DC0273B757AE83F675C7071 /* Pods-MBCircularProgressBar_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MBCircularProgressBar_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.release.xcconfig"; sourceTree = "<group>"; };
		B3288CF679A41029B33BA16A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
		BDF3D14AB73966C8CCEFBDAD /* Pods_MBCircularProgressBar_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MBCircularProgressBar_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		C393E5EC1DCE39F3007AC1AB /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
		C393E5EE1DCE3A9E007AC1AB /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
		EF4A026019B43FD5E45FA97A /* Pods_MBCircularProgressBar_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MBCircularProgressBar_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		6003F587195388D20070C39A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
				6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
				6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
				B0FFFE3642D7182FD413FFE0 /* Pods_MBCircularProgressBar_Example.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6003F5AB195388D20070C39A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
				6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
				6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
				4D98F22508E82029142444C0 /* Pods_MBCircularProgressBar_Tests.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		0EF27ADB49D3DFF43C3CECAB /* Pods */ = {
			isa = PBXGroup;
			children = (
				869A4736C2410799365DBFAF /* Pods-MBCircularProgressBar_Example.debug.xcconfig */,
				773FBE8CDF86BB09D1561840 /* Pods-MBCircularProgressBar_Example.release.xcconfig */,
				5B357D8FDBED88E1D0AFBCAC /* Pods-MBCircularProgressBar_Tests.debug.xcconfig */,
				9DC0273B757AE83F675C7071 /* Pods-MBCircularProgressBar_Tests.release.xcconfig */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		6003F581195388D10070C39A = {
			isa = PBXGroup;
			children = (
				60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
				6003F593195388D20070C39A /* Example for MBCircularProgressBar */,
				6003F5B5195388D20070C39A /* Tests */,
				6003F58C195388D20070C39A /* Frameworks */,
				6003F58B195388D20070C39A /* Products */,
				0EF27ADB49D3DFF43C3CECAB /* Pods */,
			);
			sourceTree = "<group>";
		};
		6003F58B195388D20070C39A /* Products */ = {
			isa = PBXGroup;
			children = (
				6003F58A195388D20070C39A /* MBCircularProgressBar_Example.app */,
				6003F5AE195388D20070C39A /* MBCircularProgressBar_Tests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		6003F58C195388D20070C39A /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				6003F58D195388D20070C39A /* Foundation.framework */,
				6003F58F195388D20070C39A /* CoreGraphics.framework */,
				6003F591195388D20070C39A /* UIKit.framework */,
				6003F5AF195388D20070C39A /* XCTest.framework */,
				EF4A026019B43FD5E45FA97A /* Pods_MBCircularProgressBar_Example.framework */,
				BDF3D14AB73966C8CCEFBDAD /* Pods_MBCircularProgressBar_Tests.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		6003F593195388D20070C39A /* Example for MBCircularProgressBar */ = {
			isa = PBXGroup;
			children = (
				6003F59C195388D20070C39A /* MBAppDelegate.h */,
				6003F59D195388D20070C39A /* MBAppDelegate.m */,
				C393E5EC1DCE39F3007AC1AB /* Main.storyboard */,
				C393E5EE1DCE3A9E007AC1AB /* Launch Screen.storyboard */,
				6003F5A5195388D20070C39A /* MBViewController.h */,
				6003F5A6195388D20070C39A /* MBViewController.m */,
				6003F5A8195388D20070C39A /* Images.xcassets */,
				6003F594195388D20070C39A /* Supporting Files */,
			);
			name = "Example for MBCircularProgressBar";
			path = MBCircularProgressBar;
			sourceTree = "<group>";
		};
		6003F594195388D20070C39A /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				6003F595195388D20070C39A /* MBCircularProgressBar-Info.plist */,
				6003F596195388D20070C39A /* InfoPlist.strings */,
				6003F599195388D20070C39A /* main.m */,
				6003F59B195388D20070C39A /* MBCircularProgressBar-Prefix.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		6003F5B5195388D20070C39A /* Tests */ = {
			isa = PBXGroup;
			children = (
				6003F5BB195388D20070C39A /* Tests.m */,
				6003F5B6195388D20070C39A /* Supporting Files */,
			);
			path = Tests;
			sourceTree = "<group>";
		};
		6003F5B6195388D20070C39A /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				6003F5B7195388D20070C39A /* Tests-Info.plist */,
				6003F5B8195388D20070C39A /* InfoPlist.strings */,
				606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
			isa = PBXGroup;
			children = (
				89A9DEA9BC8FD1B811DE6A7C /* MBCircularProgressBar.podspec */,
				185057E72C435A691D2185C3 /* README.md */,
				B3288CF679A41029B33BA16A /* LICENSE */,
			);
			name = "Podspec Metadata";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		6003F589195388D20070C39A /* MBCircularProgressBar_Example */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "MBCircularProgressBar_Example" */;
			buildPhases = (
				F7E7C201947584393F79DE8E /* [CP] Check Pods Manifest.lock */,
				6003F586195388D20070C39A /* Sources */,
				6003F587195388D20070C39A /* Frameworks */,
				6003F588195388D20070C39A /* Resources */,
				478739DCD021670A243FEE83 /* [CP] Embed Pods Frameworks */,
				93C42750E3DEB634D6A8DADE /* [CP] Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = MBCircularProgressBar_Example;
			productName = MBCircularProgressBar;
			productReference = 6003F58A195388D20070C39A /* MBCircularProgressBar_Example.app */;
			productType = "com.apple.product-type.application";
		};
		6003F5AD195388D20070C39A /* MBCircularProgressBar_Tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "MBCircularProgressBar_Tests" */;
			buildPhases = (
				FB190399CD8B8B5FDE960A0F /* [CP] Check Pods Manifest.lock */,
				6003F5AA195388D20070C39A /* Sources */,
				6003F5AB195388D20070C39A /* Frameworks */,
				6003F5AC195388D20070C39A /* Resources */,
				C8D51B5BD542CB5B3BDEC3D1 /* [CP] Embed Pods Frameworks */,
				FE76C3E5FB109045CC5D7771 /* [CP] Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
				6003F5B4195388D20070C39A /* PBXTargetDependency */,
			);
			name = MBCircularProgressBar_Tests;
			productName = MBCircularProgressBarTests;
			productReference = 6003F5AE195388D20070C39A /* MBCircularProgressBar_Tests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		6003F582195388D10070C39A /* Project object */ = {
			isa = PBXProject;
			attributes = {
				CLASSPREFIX = MB;
				LastUpgradeCheck = 0510;
				ORGANIZATIONNAME = "Mati Bot";
				TargetAttributes = {
					6003F5AD195388D20070C39A = {
						TestTargetID = 6003F589195388D20070C39A;
					};
				};
			};
			buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "MBCircularProgressBar" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 6003F581195388D10070C39A;
			productRefGroup = 6003F58B195388D20070C39A /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				6003F589195388D20070C39A /* MBCircularProgressBar_Example */,
				6003F5AD195388D20070C39A /* MBCircularProgressBar_Tests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		6003F588195388D20070C39A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
				6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
				C393E5EF1DCE3A9E007AC1AB /* Launch Screen.storyboard in Resources */,
				C393E5ED1DCE39F3007AC1AB /* Main.storyboard in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6003F5AC195388D20070C39A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		478739DCD021670A243FEE83 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Embed Pods Frameworks";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		93C42750E3DEB634D6A8DADE /* [CP] Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Copy Pods Resources";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
		C8D51B5BD542CB5B3BDEC3D1 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Embed Pods Frameworks";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		F7E7C201947584393F79DE8E /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] 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;
		};
		FB190399CD8B8B5FDE960A0F /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] 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;
		};
		FE76C3E5FB109045CC5D7771 /* [CP] Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Copy Pods Resources";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		6003F586195388D20070C39A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F59E195388D20070C39A /* MBAppDelegate.m in Sources */,
				6003F5A7195388D20070C39A /* MBViewController.m in Sources */,
				6003F59A195388D20070C39A /* main.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6003F5AA195388D20070C39A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5BC195388D20070C39A /* Tests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 6003F589195388D20070C39A /* MBCircularProgressBar_Example */;
			targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		6003F596195388D20070C39A /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				6003F597195388D20070C39A /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				6003F5B9195388D20070C39A /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		6003F5BD195388D20070C39A /* 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__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				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.0;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		6003F5BE195388D20070C39A /* 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__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				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.0;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		6003F5C0195388D20070C39A /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 869A4736C2410799365DBFAF /* Pods-MBCircularProgressBar_Example.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				DEVELOPMENT_TEAM = "";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "MBCircularProgressBar/MBCircularProgressBar-Prefix.pch";
				INFOPLIST_FILE = "MBCircularProgressBar/MBCircularProgressBar-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MODULE_NAME = ExampleApp;
				PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.demo.MBCircularProgressBar;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		6003F5C1195388D20070C39A /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 773FBE8CDF86BB09D1561840 /* Pods-MBCircularProgressBar_Example.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				DEVELOPMENT_TEAM = "";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "MBCircularProgressBar/MBCircularProgressBar-Prefix.pch";
				INFOPLIST_FILE = "MBCircularProgressBar/MBCircularProgressBar-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MODULE_NAME = ExampleApp;
				PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.demo.MBCircularProgressBar;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
		6003F5C3195388D20070C39A /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 5B357D8FDBED88E1D0AFBCAC /* Pods-MBCircularProgressBar_Tests.debug.xcconfig */;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				FRAMEWORK_SEARCH_PATHS = (
					"$(SDKROOT)/Developer/Library/Frameworks",
					"$(inherited)",
					"$(DEVELOPER_FRAMEWORKS_DIR)",
				);
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				INFOPLIST_FILE = "Tests/Tests-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MBCircularProgressBar_Example.app/MBCircularProgressBar_Example";
				WRAPPER_EXTENSION = xctest;
			};
			name = Debug;
		};
		6003F5C4195388D20070C39A /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 9DC0273B757AE83F675C7071 /* Pods-MBCircularProgressBar_Tests.release.xcconfig */;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				FRAMEWORK_SEARCH_PATHS = (
					"$(SDKROOT)/Developer/Library/Frameworks",
					"$(inherited)",
					"$(DEVELOPER_FRAMEWORKS_DIR)",
				);
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
				INFOPLIST_FILE = "Tests/Tests-Info.plist";
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MBCircularProgressBar_Example.app/MBCircularProgressBar_Example";
				WRAPPER_EXTENSION = xctest;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		6003F585195388D10070C39A /* Build configuration list for PBXProject "MBCircularProgressBar" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6003F5BD195388D20070C39A /* Debug */,
				6003F5BE195388D20070C39A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "MBCircularProgressBar_Example" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6003F5C0195388D20070C39A /* Debug */,
				6003F5C1195388D20070C39A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "MBCircularProgressBar_Tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6003F5C3195388D20070C39A /* Debug */,
				6003F5C4195388D20070C39A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 6003F582195388D10070C39A /* Project object */;
}


================================================
FILE: Example/MBCircularProgressBar.xcodeproj/xcshareddata/xcschemes/MBCircularProgressBar-Example.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "0600"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
      buildImplicitDependencies = "YES">
      <BuildActionEntries>
         <BuildActionEntry
            buildForTesting = "YES"
            buildForRunning = "YES"
            buildForProfiling = "YES"
            buildForArchiving = "YES"
            buildForAnalyzing = "YES">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "6003F589195388D20070C39A"
               BuildableName = "MBCircularProgressBar_Example.app"
               BlueprintName = "MBCircularProgressBar_Example"
               ReferencedContainer = "container:MBCircularProgressBar.xcodeproj">
            </BuildableReference>
         </BuildActionEntry>
      </BuildActionEntries>
   </BuildAction>
   <TestAction
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      shouldUseLaunchSchemeArgsEnv = "YES"
      buildConfiguration = "Debug">
      <Testables>
         <TestableReference
            skipped = "NO">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "6003F5AD195388D20070C39A"
               BuildableName = "MBCircularProgressBar_Tests.xctest"
               BlueprintName = "MBCircularProgressBar_Tests"
               ReferencedContainer = "container:MBCircularProgressBar.xcodeproj">
            </BuildableReference>
         </TestableReference>
      </Testables>
      <MacroExpansion>
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "6003F589195388D20070C39A"
            BuildableName = "MBCircularProgressBar_Example.app"
            BlueprintName = "MBCircularProgressBar_Example"
            ReferencedContainer = "container:MBCircularProgressBar.xcodeproj">
         </BuildableReference>
      </MacroExpansion>
   </TestAction>
   <LaunchAction
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      launchStyle = "0"
      useCustomWorkingDirectory = "NO"
      buildConfiguration = "Debug"
      ignoresPersistentStateOnLaunch = "NO"
      debugDocumentVersioning = "YES"
      allowLocationSimulation = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "6003F589195388D20070C39A"
            BuildableName = "MBCircularProgressBar_Example.app"
            BlueprintName = "MBCircularProgressBar_Example"
            ReferencedContainer = "container:MBCircularProgressBar.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
      <AdditionalOptions>
      </AdditionalOptions>
   </LaunchAction>
   <ProfileAction
      shouldUseLaunchSchemeArgsEnv = "YES"
      savedToolIdentifier = ""
      useCustomWorkingDirectory = "NO"
      buildConfiguration = "Release"
      debugDocumentVersioning = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "6003F589195388D20070C39A"
            BuildableName = "MBCircularProgressBar_Example.app"
            BlueprintName = "MBCircularProgressBar_Example"
            ReferencedContainer = "container:MBCircularProgressBar.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
   </ProfileAction>
   <AnalyzeAction
      buildConfiguration = "Debug">
   </AnalyzeAction>
   <ArchiveAction
      buildConfiguration = "Release"
      revealArchiveInOrganizer = "YES">
   </ArchiveAction>
</Scheme>


================================================
FILE: Example/MBCircularProgressBar.xcworkspace/contents.xcworkspacedata
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
   version = "1.0">
   <FileRef
      location = "group:MBCircularProgressBar.xcodeproj">
   </FileRef>
   <FileRef
      location = "group:Pods/Pods.xcodeproj">
   </FileRef>
</Workspace>


================================================
FILE: Example/MBCircularProgressBar.xcworkspace/xcshareddata/MBCircularProgressBar.xcscmblueprint
================================================
{
  "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "13A67F02CED68E0740A1F3D357DF5EAA09C1623E",
  "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : {

  },
  "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : {
    "13A67F02CED68E0740A1F3D357DF5EAA09C1623E" : 9223372036854775807,
    "666EBCD23F5DB1B0099E8ACF4F7D9A2EFEA39B51" : 9223372036854775807
  },
  "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "E01D5ACB-757F-46CF-BF07-10D4E8521EC3",
  "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : {
    "13A67F02CED68E0740A1F3D357DF5EAA09C1623E" : "MBCircularProgressBar\/",
    "666EBCD23F5DB1B0099E8ACF4F7D9A2EFEA39B51" : ""
  },
  "DVTSourceControlWorkspaceBlueprintNameKey" : "MBCircularProgressBar",
  "DVTSourceControlWorkspaceBlueprintVersion" : 204,
  "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "Example\/MBCircularProgressBar.xcworkspace",
  "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [
    {
      "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/MatiBot\/MBCircularProgressBar.git",
      "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
      "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "13A67F02CED68E0740A1F3D357DF5EAA09C1623E"
    },
    {
      "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/MatiBot\/MBRateApp.git",
      "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
      "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "666EBCD23F5DB1B0099E8ACF4F7D9A2EFEA39B51"
    }
  ]
}

================================================
FILE: Example/Podfile
================================================
source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '9.0'
inhibit_all_warnings!

xcodeproj 'MBCircularProgressBar'
use_frameworks!

target 'MBCircularProgressBar_Example' do
    pod 'MBCircularProgressBar', :path => '../'
end

target 'MBCircularProgressBar_Tests' do
    pod 'MBCircularProgressBar', :path => '../'
end


================================================
FILE: Example/Pods/Local Podspecs/MBCircularProgressBar.podspec.json
================================================
{
  "name": "MBCircularProgressBar",
  "version": "0.3.4",
  "summary": "a circular animatable & IB highly customizable progress bar",
  "description": "a circular animatable & Interface Builder highly customizable progress bar",
  "homepage": "https://github.com/matibot/MBCircularProgressBar",
  "screenshots": [
    "https://raw.github.com/matibot/MBCircularProgressBar/master/Readme/example.png",
    "https://raw.github.com/matibot/MBCircularProgressBar/master/Readme/MBCircularProgressBar.gif"
  ],
  "license": "MIT",
  "authors": {
    "Mati Bot": "matibot@gmail.com"
  },
  "source": {
    "git": "https://github.com/matibot/MBCircularProgressBar.git",
    "tag": "0.3.4"
  },
  "social_media_url": "https://twitter.com/@b0tnik",
  "platforms": {
    "ios": "8.0"
  },
  "requires_arc": true,
  "source_files": "Pod/Classes/**/*",
  "resource_bundles": {
    "MBCircularProgressBar": [
      "Pod/Assets/*.png"
    ]
  }
}


================================================
FILE: Example/Pods/Pods.xcodeproj/project.pbxproj
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>archiveVersion</key>
	<string>1</string>
	<key>classes</key>
	<dict/>
	<key>objectVersion</key>
	<string>46</string>
	<key>objects</key>
	<dict>
		<key>034014829C1E4434983CF3A690C12017</key>
		<dict>
			<key>buildSettings</key>
			<dict>
				<key>ALWAYS_SEARCH_USER_PATHS</key>
				<string>NO</string>
				<key>CLANG_ANALYZER_NONNULL</key>
				<string>YES</string>
				<key>CLANG_CXX_LANGUAGE_STANDARD</key>
				<string>gnu++0x</string>
				<key>CLANG_CXX_LIBRARY</key>
				<string>libc++</string>
				<key>CLANG_ENABLE_MODULES</key>
				<string>YES</string>
				<key>CLANG_ENABLE_OBJC_ARC</key>
				<string>YES</string>
				<key>CLANG_WARN_BOOL_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_CONSTANT_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
				<string>YES</string>
				<key>CLANG_WARN_EMPTY_BODY</key>
				<string>YES</string>
				<key>CLANG_WARN_ENUM_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_INT_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
				<string>YES</string>
				<key>CLANG_WARN_UNREACHABLE_CODE</key>
				<string>YES</string>
				<key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
				<string>YES</string>
				<key>COPY_PHASE_STRIP</key>
				<string>NO</string>
				<key>ENABLE_TESTABILITY</key>
				<string>YES</string>
				<key>GCC_C_LANGUAGE_STANDARD</key>
				<string>gnu99</string>
				<key>GCC_DYNAMIC_NO_PIC</key>
				<string>NO</string>
				<key>GCC_OPTIMIZATION_LEVEL</key>
				<string>0</string>
				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
				<array>
					<string>POD_CONFIGURATION_DEBUG=1</string>
					<string>DEBUG=1</string>
					<string>$(inherited)</string>
				</array>
				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
				<string>NO</string>
				<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
				<string>YES</string>
				<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
				<string>YES</string>
				<key>GCC_WARN_UNDECLARED_SELECTOR</key>
				<string>YES</string>
				<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
				<string>YES</string>
				<key>GCC_WARN_UNUSED_FUNCTION</key>
				<string>YES</string>
				<key>GCC_WARN_UNUSED_VARIABLE</key>
				<string>YES</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>9.0</string>
				<key>ONLY_ACTIVE_ARCH</key>
				<string>YES</string>
				<key>STRIP_INSTALLED_PRODUCT</key>
				<string>NO</string>
				<key>SYMROOT</key>
				<string>${SRCROOT}/../build</string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Debug</string>
		</dict>
		<key>03BBF2B1A808C5EAA5DBB98F7E1ABB28</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.h</string>
			<key>path</key>
			<string>MBCircularProgressBarLayer.h</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>079FF8671062AD063CBB7BF99FC0BC34</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>4A3B1764C78133AA8FDDB2132952EE70</string>
			</array>
			<key>isa</key>
			<string>PBXHeadersBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>16D9CC0036FC0CEDFA438D4F97B13F98</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.script.sh</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example-frameworks.sh</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>1980489F364D45B436C5027245BD6083</key>
		<dict>
			<key>children</key>
			<array>
				<string>76A23C47D08AC503AE85650135E64FAB</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Development Pods</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>1C94F3F69431EF953D8B56B07D2D06EF</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.objc</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests-dummy.m</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>1CA37B4F495C00D737266278AC754421</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.objc</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example-dummy.m</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>1D2A2D145464C416CD2B30BD78A4864D</key>
		<dict>
			<key>children</key>
			<array>
				<string>03BBF2B1A808C5EAA5DBB98F7E1ABB28</string>
				<string>73B433E0626A051EC9C46BCBE0EA40B3</string>
				<string>8EB19B9C4EE94481A90D461948BADF02</string>
				<string>F124749837AF75ECD76E7618A08F4260</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Classes</string>
			<key>path</key>
			<string>Classes</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>1D395092AEEF10FDD1EDBD5BF861601F</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>746A476B6A99B0FD8C467ADA30EB2661</string>
				<string>E2E82218C58EDF92ECF7A7BCFA469C1E</string>
				<string>54B86F110430FA01CD2C15A33A2DCC81</string>
			</array>
			<key>isa</key>
			<string>PBXSourcesBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>235A1247CB96E0AFA949410A867D2C55</key>
		<dict>
			<key>buildConfigurations</key>
			<array>
				<string>68B107810C35634EB923CE4F5BB66A57</string>
				<string>2D92D9787C7DA9686D7903E10846093E</string>
			</array>
			<key>defaultConfigurationIsVisible</key>
			<string>0</string>
			<key>defaultConfigurationName</key>
			<string>Release</string>
			<key>isa</key>
			<string>XCConfigurationList</string>
		</dict>
		<key>24A18E0DDB0DA98D0C10C6E28E478640</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.h</string>
			<key>path</key>
			<string>MBCircularProgressBar-umbrella.h</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>2B7D2385B2C1134DAE96BF471D65A124</key>
		<dict>
			<key>fileRef</key>
			<string>1C94F3F69431EF953D8B56B07D2D06EF</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>2CD60C0891CB766C2247969908D104FB</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>82FE57282A0A8E70273633E0E9D7FEDF</string>
			<key>buildSettings</key>
			<dict>
				<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
				<string>iPhone Developer</string>
				<key>CURRENT_PROJECT_VERSION</key>
				<string>1</string>
				<key>DEBUG_INFORMATION_FORMAT</key>
				<string>dwarf-with-dsym</string>
				<key>DEFINES_MODULE</key>
				<string>YES</string>
				<key>DYLIB_COMPATIBILITY_VERSION</key>
				<string>1</string>
				<key>DYLIB_CURRENT_VERSION</key>
				<string>1</string>
				<key>DYLIB_INSTALL_NAME_BASE</key>
				<string>@rpath</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>GCC_PREFIX_HEADER</key>
				<string>Target Support Files/MBCircularProgressBar/MBCircularProgressBar-prefix.pch</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/MBCircularProgressBar/Info.plist</string>
				<key>INSTALL_PATH</key>
				<string>$(LOCAL_LIBRARY_DIR)/Frameworks</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>8.0</string>
				<key>LD_RUNPATH_SEARCH_PATHS</key>
				<array>
					<string>$(inherited)</string>
					<string>@executable_path/Frameworks</string>
					<string>@loader_path/Frameworks</string>
				</array>
				<key>MODULEMAP_FILE</key>
				<string>Target Support Files/MBCircularProgressBar/MBCircularProgressBar.modulemap</string>
				<key>MTL_ENABLE_DEBUG_INFO</key>
				<string>NO</string>
				<key>PRODUCT_NAME</key>
				<string>MBCircularProgressBar</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>VERSIONING_SYSTEM</key>
				<string>apple-generic</string>
				<key>VERSION_INFO_PREFIX</key>
				<string></string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Release</string>
		</dict>
		<key>2CE299BAE66093565EC51C81AD328A96</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.h</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example-umbrella.h</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>2D8E8EC45A3A1A1D94AE762CB5028504</key>
		<dict>
			<key>buildConfigurations</key>
			<array>
				<string>034014829C1E4434983CF3A690C12017</string>
				<string>C7E474A03CAE21F1CB6046E7344C59BD</string>
			</array>
			<key>defaultConfigurationIsVisible</key>
			<string>0</string>
			<key>defaultConfigurationName</key>
			<string>Release</string>
			<key>isa</key>
			<string>XCConfigurationList</string>
		</dict>
		<key>2D92D9787C7DA9686D7903E10846093E</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>FF916F29D21679B6CDCE868597F7C46E</string>
			<key>buildSettings</key>
			<dict>
				<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
				<string>iPhone Developer</string>
				<key>CURRENT_PROJECT_VERSION</key>
				<string>1</string>
				<key>DEBUG_INFORMATION_FORMAT</key>
				<string>dwarf-with-dsym</string>
				<key>DEFINES_MODULE</key>
				<string>YES</string>
				<key>DYLIB_COMPATIBILITY_VERSION</key>
				<string>1</string>
				<key>DYLIB_CURRENT_VERSION</key>
				<string>1</string>
				<key>DYLIB_INSTALL_NAME_BASE</key>
				<string>@rpath</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Example/Info.plist</string>
				<key>INSTALL_PATH</key>
				<string>$(LOCAL_LIBRARY_DIR)/Frameworks</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>9.0</string>
				<key>LD_RUNPATH_SEARCH_PATHS</key>
				<array>
					<string>$(inherited)</string>
					<string>@executable_path/Frameworks</string>
					<string>@loader_path/Frameworks</string>
				</array>
				<key>MACH_O_TYPE</key>
				<string>staticlib</string>
				<key>MODULEMAP_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.modulemap</string>
				<key>MTL_ENABLE_DEBUG_INFO</key>
				<string>NO</string>
				<key>OTHER_LDFLAGS</key>
				<string></string>
				<key>OTHER_LIBTOOLFLAGS</key>
				<string></string>
				<key>PODS_ROOT</key>
				<string>$(SRCROOT)</string>
				<key>PRODUCT_BUNDLE_IDENTIFIER</key>
				<string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
				<key>PRODUCT_NAME</key>
				<string>Pods_MBCircularProgressBar_Example</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>VERSIONING_SYSTEM</key>
				<string>apple-generic</string>
				<key>VERSION_INFO_PREFIX</key>
				<string></string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Release</string>
		</dict>
		<key>3459BBFFA53925B3E9677FC308523934</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>B44012D5391A277428DC681F1DD497DA</string>
				<string>82AC952C6A991568DE9120246815BD38</string>
				<string>B8E3CD215016960E63932050CB520CE1</string>
			</array>
			<key>isa</key>
			<string>PBXHeadersBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>3706D90A67252517988512C65EB5C4AD</key>
		<dict>
			<key>explicitFileType</key>
			<string>wrapper.framework</string>
			<key>includeInIndex</key>
			<string>0</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>name</key>
			<string>MBCircularProgressBar.framework</string>
			<key>path</key>
			<string>MBCircularProgressBar.framework</string>
			<key>sourceTree</key>
			<string>BUILT_PRODUCTS_DIR</string>
		</dict>
		<key>3DCAB2B7CDE207B3958B6CB957FCC758</key>
		<dict>
			<key>children</key>
			<array>
				<string>CEC22C73C1608DFA5D5D78BDCB218219</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>iOS</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>3F5ECAA6978605724E62B3243EC06737</key>
		<dict>
			<key>isa</key>
			<string>PBXTargetDependency</string>
			<key>name</key>
			<string>MBCircularProgressBar</string>
			<key>target</key>
			<string>860A9179BCFD9F1C616D8653DB2B4F91</string>
			<key>targetProxy</key>
			<string>B08E82FEC6D6D6C1845510CDF459C942</string>
		</dict>
		<key>406BAAC93E70242CEAD0958106E1CCBB</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.script.sh</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests-frameworks.sh</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>40D41A2B1EF2EC1AF9070AD61D39170F</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.plist.xml</string>
			<key>path</key>
			<string>Info.plist</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>479C1B74FA4C4674AC58A0CBDC217DC8</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>F88D157974522F8674E5DFA82F8B0A2A</string>
			</array>
			<key>isa</key>
			<string>PBXResourcesBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>4877B2439FDB4334EE80D29151B64922</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>C2F4B97F932442F82305A61F83A752F9</string>
			</array>
			<key>isa</key>
			<string>PBXFrameworksBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>4A3B1764C78133AA8FDDB2132952EE70</key>
		<dict>
			<key>fileRef</key>
			<string>2CE299BAE66093565EC51C81AD328A96</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>ATTRIBUTES</key>
				<array>
					<string>Public</string>
				</array>
			</dict>
		</dict>
		<key>4B19DFCFDD46DE8EF50646B62FB7181C</key>
		<dict>
			<key>explicitFileType</key>
			<string>wrapper.framework</string>
			<key>includeInIndex</key>
			<string>0</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>name</key>
			<string>Pods_MBCircularProgressBar_Tests.framework</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests.framework</string>
			<key>sourceTree</key>
			<string>BUILT_PRODUCTS_DIR</string>
		</dict>
		<key>4EC5E60311C496DEDF3BF8BECF6FC403</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.objc</string>
			<key>path</key>
			<string>MBCircularProgressBar-dummy.m</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>54B86F110430FA01CD2C15A33A2DCC81</key>
		<dict>
			<key>fileRef</key>
			<string>F124749837AF75ECD76E7618A08F4260</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>COMPILER_FLAGS</key>
				<string>-w -Xanalyzer -analyzer-disable-all-checks</string>
			</dict>
		</dict>
		<key>5AB06378B99F827A6D22A9E64430C8D0</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>EAD592E10AA158C07B28F203F0E76727</string>
			<key>buildSettings</key>
			<dict>
				<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
				<string>iPhone Developer</string>
				<key>CURRENT_PROJECT_VERSION</key>
				<string>1</string>
				<key>DEBUG_INFORMATION_FORMAT</key>
				<string>dwarf-with-dsym</string>
				<key>DEFINES_MODULE</key>
				<string>YES</string>
				<key>DYLIB_COMPATIBILITY_VERSION</key>
				<string>1</string>
				<key>DYLIB_CURRENT_VERSION</key>
				<string>1</string>
				<key>DYLIB_INSTALL_NAME_BASE</key>
				<string>@rpath</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Tests/Info.plist</string>
				<key>INSTALL_PATH</key>
				<string>$(LOCAL_LIBRARY_DIR)/Frameworks</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>9.0</string>
				<key>LD_RUNPATH_SEARCH_PATHS</key>
				<array>
					<string>$(inherited)</string>
					<string>@executable_path/Frameworks</string>
					<string>@loader_path/Frameworks</string>
				</array>
				<key>MACH_O_TYPE</key>
				<string>staticlib</string>
				<key>MODULEMAP_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.modulemap</string>
				<key>MTL_ENABLE_DEBUG_INFO</key>
				<string>NO</string>
				<key>OTHER_LDFLAGS</key>
				<string></string>
				<key>OTHER_LIBTOOLFLAGS</key>
				<string></string>
				<key>PODS_ROOT</key>
				<string>$(SRCROOT)</string>
				<key>PRODUCT_BUNDLE_IDENTIFIER</key>
				<string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
				<key>PRODUCT_NAME</key>
				<string>Pods_MBCircularProgressBar_Tests</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>VERSIONING_SYSTEM</key>
				<string>apple-generic</string>
				<key>VERSION_INFO_PREFIX</key>
				<string></string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Release</string>
		</dict>
		<key>61056D819EA6A2B18A0BCDC9C017E0AB</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example-acknowledgements.markdown</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>63A1A8487E9CE9346DA53C2E91A7F15D</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.plist.xml</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example-acknowledgements.plist</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>656CC1135D22E746AD3E938A6FF16FCB</key>
		<dict>
			<key>children</key>
			<array>
				<string>A39ED21030B371920D3734260136B08C</string>
				<string>7F98C953087FD11C54004E5599A6F41F</string>
				<string>6A5519FFBB38385DF998957C1B294954</string>
				<string>C7516562BA0FFADA12470ADBA426F9BC</string>
				<string>1C94F3F69431EF953D8B56B07D2D06EF</string>
				<string>406BAAC93E70242CEAD0958106E1CCBB</string>
				<string>CAA54389442269DDEB4726560C7D0F2F</string>
				<string>B9D246F31026EC7C463654D8A008AAC5</string>
				<string>E743AF2AB728BBB412D5DBD567EC9451</string>
				<string>EAD592E10AA158C07B28F203F0E76727</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Pods-MBCircularProgressBar_Tests</string>
			<key>path</key>
			<string>Target Support Files/Pods-MBCircularProgressBar_Tests</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>65843429993E316C12E7B050CA8301F3</key>
		<dict>
			<key>fileRef</key>
			<string>B9D246F31026EC7C463654D8A008AAC5</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>ATTRIBUTES</key>
				<array>
					<string>Public</string>
				</array>
			</dict>
		</dict>
		<key>68B107810C35634EB923CE4F5BB66A57</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>7D09405F2F07F8D06A170A08D363BCC0</string>
			<key>buildSettings</key>
			<dict>
				<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
				<string>iPhone Developer</string>
				<key>CURRENT_PROJECT_VERSION</key>
				<string>1</string>
				<key>DEBUG_INFORMATION_FORMAT</key>
				<string>dwarf</string>
				<key>DEFINES_MODULE</key>
				<string>YES</string>
				<key>DYLIB_COMPATIBILITY_VERSION</key>
				<string>1</string>
				<key>DYLIB_CURRENT_VERSION</key>
				<string>1</string>
				<key>DYLIB_INSTALL_NAME_BASE</key>
				<string>@rpath</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Example/Info.plist</string>
				<key>INSTALL_PATH</key>
				<string>$(LOCAL_LIBRARY_DIR)/Frameworks</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>9.0</string>
				<key>LD_RUNPATH_SEARCH_PATHS</key>
				<array>
					<string>$(inherited)</string>
					<string>@executable_path/Frameworks</string>
					<string>@loader_path/Frameworks</string>
				</array>
				<key>MACH_O_TYPE</key>
				<string>staticlib</string>
				<key>MODULEMAP_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.modulemap</string>
				<key>MTL_ENABLE_DEBUG_INFO</key>
				<string>YES</string>
				<key>OTHER_LDFLAGS</key>
				<string></string>
				<key>OTHER_LIBTOOLFLAGS</key>
				<string></string>
				<key>PODS_ROOT</key>
				<string>$(SRCROOT)</string>
				<key>PRODUCT_BUNDLE_IDENTIFIER</key>
				<string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
				<key>PRODUCT_NAME</key>
				<string>Pods_MBCircularProgressBar_Example</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>VERSIONING_SYSTEM</key>
				<string>apple-generic</string>
				<key>VERSION_INFO_PREFIX</key>
				<string></string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Debug</string>
		</dict>
		<key>6A5519FFBB38385DF998957C1B294954</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests-acknowledgements.markdown</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>6EC0ADB8F524A29F97A91EAA01C284C1</key>
		<dict>
			<key>explicitFileType</key>
			<string>wrapper.cfbundle</string>
			<key>includeInIndex</key>
			<string>0</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>name</key>
			<string>MBCircularProgressBar.bundle</string>
			<key>path</key>
			<string>MBCircularProgressBar.bundle</string>
			<key>sourceTree</key>
			<string>BUILT_PRODUCTS_DIR</string>
		</dict>
		<key>73B433E0626A051EC9C46BCBE0EA40B3</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.objc</string>
			<key>path</key>
			<string>MBCircularProgressBarLayer.m</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>746A476B6A99B0FD8C467ADA30EB2661</key>
		<dict>
			<key>fileRef</key>
			<string>4EC5E60311C496DEDF3BF8BECF6FC403</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>746E18875508413706369780FAF79AA8</key>
		<dict>
			<key>children</key>
			<array>
				<string>40D41A2B1EF2EC1AF9070AD61D39170F</string>
				<string>EB18FC47C92E08E7370F8CB2FB8AD99C</string>
				<string>82FE57282A0A8E70273633E0E9D7FEDF</string>
				<string>4EC5E60311C496DEDF3BF8BECF6FC403</string>
				<string>83DAABCDF6FE2CB898196A6A9DFC2CBC</string>
				<string>24A18E0DDB0DA98D0C10C6E28E478640</string>
				<string>75E4C1A8BC14A865A5A68765BEEEA91B</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Support Files</string>
			<key>path</key>
			<string>Example/Pods/Target Support Files/MBCircularProgressBar</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>75E4C1A8BC14A865A5A68765BEEEA91B</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.plist.xml</string>
			<key>path</key>
			<string>ResourceBundle-MBCircularProgressBar-Info.plist</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>76A23C47D08AC503AE85650135E64FAB</key>
		<dict>
			<key>children</key>
			<array>
				<string>896A6B9095E21F8FE5994EE70AEC29D9</string>
				<string>746E18875508413706369780FAF79AA8</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>MBCircularProgressBar</string>
			<key>path</key>
			<string>../..</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>798F7E94B533F5890A2415C598CD14E8</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>82FE57282A0A8E70273633E0E9D7FEDF</string>
			<key>buildSettings</key>
			<dict>
				<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
				<string>iPhone Developer</string>
				<key>CURRENT_PROJECT_VERSION</key>
				<string>1</string>
				<key>DEBUG_INFORMATION_FORMAT</key>
				<string>dwarf</string>
				<key>DEFINES_MODULE</key>
				<string>YES</string>
				<key>DYLIB_COMPATIBILITY_VERSION</key>
				<string>1</string>
				<key>DYLIB_CURRENT_VERSION</key>
				<string>1</string>
				<key>DYLIB_INSTALL_NAME_BASE</key>
				<string>@rpath</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>GCC_PREFIX_HEADER</key>
				<string>Target Support Files/MBCircularProgressBar/MBCircularProgressBar-prefix.pch</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/MBCircularProgressBar/Info.plist</string>
				<key>INSTALL_PATH</key>
				<string>$(LOCAL_LIBRARY_DIR)/Frameworks</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>8.0</string>
				<key>LD_RUNPATH_SEARCH_PATHS</key>
				<array>
					<string>$(inherited)</string>
					<string>@executable_path/Frameworks</string>
					<string>@loader_path/Frameworks</string>
				</array>
				<key>MODULEMAP_FILE</key>
				<string>Target Support Files/MBCircularProgressBar/MBCircularProgressBar.modulemap</string>
				<key>MTL_ENABLE_DEBUG_INFO</key>
				<string>YES</string>
				<key>PRODUCT_NAME</key>
				<string>MBCircularProgressBar</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>VERSIONING_SYSTEM</key>
				<string>apple-generic</string>
				<key>VERSION_INFO_PREFIX</key>
				<string></string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Debug</string>
		</dict>
		<key>7D09405F2F07F8D06A170A08D363BCC0</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.xcconfig</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example.debug.xcconfig</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>7D66F40DAF75800EEEDE482FC346D807</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.script.sh</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example-resources.sh</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>7DB346D0F39D3F0E887471402A8071AB</key>
		<dict>
			<key>children</key>
			<array>
				<string>93A4A3777CF96A4AAC1D13BA6DCCEA73</string>
				<string>1980489F364D45B436C5027245BD6083</string>
				<string>BC3CA7F9E30CC8F7E2DD044DD34432FC</string>
				<string>EEC9A146D772C65C260274139F200322</string>
				<string>87AF74ADC6F2C6FB790B57D413F3346C</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>7F38E7E8427EB97D15E0870D471F6DCE</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array/>
			<key>isa</key>
			<string>PBXFrameworksBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>7F98C953087FD11C54004E5599A6F41F</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests.modulemap</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>82AC952C6A991568DE9120246815BD38</key>
		<dict>
			<key>fileRef</key>
			<string>03BBF2B1A808C5EAA5DBB98F7E1ABB28</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>ATTRIBUTES</key>
				<array>
					<string>Public</string>
				</array>
			</dict>
		</dict>
		<key>82FE57282A0A8E70273633E0E9D7FEDF</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.xcconfig</string>
			<key>path</key>
			<string>MBCircularProgressBar.xcconfig</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>83DAABCDF6FE2CB898196A6A9DFC2CBC</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.h</string>
			<key>path</key>
			<string>MBCircularProgressBar-prefix.pch</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>860A9179BCFD9F1C616D8653DB2B4F91</key>
		<dict>
			<key>buildConfigurationList</key>
			<string>9292B5CEC4480FF9860A000BCCC4EA9D</string>
			<key>buildPhases</key>
			<array>
				<string>1D395092AEEF10FDD1EDBD5BF861601F</string>
				<string>CF8AE384E5A1035841194ED221BBB836</string>
				<string>479C1B74FA4C4674AC58A0CBDC217DC8</string>
				<string>3459BBFFA53925B3E9677FC308523934</string>
			</array>
			<key>buildRules</key>
			<array/>
			<key>dependencies</key>
			<array>
				<string>91C55659061E9F3551A2E1576571AA74</string>
			</array>
			<key>isa</key>
			<string>PBXNativeTarget</string>
			<key>name</key>
			<string>MBCircularProgressBar</string>
			<key>productName</key>
			<string>MBCircularProgressBar</string>
			<key>productReference</key>
			<string>3706D90A67252517988512C65EB5C4AD</string>
			<key>productType</key>
			<string>com.apple.product-type.framework</string>
		</dict>
		<key>867CC80B9D23C9B6A5AE652D1F8EDD49</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example.modulemap</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>87AF74ADC6F2C6FB790B57D413F3346C</key>
		<dict>
			<key>children</key>
			<array>
				<string>DEEF4BE5CFD444D93AA9B74CBEE05D97</string>
				<string>656CC1135D22E746AD3E938A6FF16FCB</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Targets Support Files</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>896A6B9095E21F8FE5994EE70AEC29D9</key>
		<dict>
			<key>children</key>
			<array>
				<string>1D2A2D145464C416CD2B30BD78A4864D</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Pod</string>
			<key>path</key>
			<string>Pod</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>8EB19B9C4EE94481A90D461948BADF02</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.h</string>
			<key>path</key>
			<string>MBCircularProgressBarView.h</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>8FC4B2785BB68892651401B8A26A15AD</key>
		<dict>
			<key>buildConfigurationList</key>
			<string>CDC2C33DCA9AB372723E14560E873705</string>
			<key>buildPhases</key>
			<array>
				<string>A733E3C23F3D8D660A96DF919F3EB865</string>
				<string>7F38E7E8427EB97D15E0870D471F6DCE</string>
				<string>A934CFE4750C4A4A5F3932B2AC474326</string>
			</array>
			<key>buildRules</key>
			<array/>
			<key>dependencies</key>
			<array/>
			<key>isa</key>
			<string>PBXNativeTarget</string>
			<key>name</key>
			<string>MBCircularProgressBar-MBCircularProgressBar</string>
			<key>productName</key>
			<string>MBCircularProgressBar-MBCircularProgressBar</string>
			<key>productReference</key>
			<string>6EC0ADB8F524A29F97A91EAA01C284C1</string>
			<key>productType</key>
			<string>com.apple.product-type.bundle</string>
		</dict>
		<key>91C55659061E9F3551A2E1576571AA74</key>
		<dict>
			<key>isa</key>
			<string>PBXTargetDependency</string>
			<key>name</key>
			<string>MBCircularProgressBar-MBCircularProgressBar</string>
			<key>target</key>
			<string>8FC4B2785BB68892651401B8A26A15AD</string>
			<key>targetProxy</key>
			<string>EBC59F00882F35808CD4B15930E9008E</string>
		</dict>
		<key>9292B5CEC4480FF9860A000BCCC4EA9D</key>
		<dict>
			<key>buildConfigurations</key>
			<array>
				<string>798F7E94B533F5890A2415C598CD14E8</string>
				<string>2CD60C0891CB766C2247969908D104FB</string>
			</array>
			<key>defaultConfigurationIsVisible</key>
			<string>0</string>
			<key>defaultConfigurationName</key>
			<string>Release</string>
			<key>isa</key>
			<string>XCConfigurationList</string>
		</dict>
		<key>93A4A3777CF96A4AAC1D13BA6DCCEA73</key>
		<dict>
			<key>explicitFileType</key>
			<string>text.script.ruby</string>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text</string>
			<key>name</key>
			<string>Podfile</string>
			<key>path</key>
			<string>../Podfile</string>
			<key>sourceTree</key>
			<string>SOURCE_ROOT</string>
			<key>xcLanguageSpecificationIdentifier</key>
			<string>xcode.lang.ruby</string>
		</dict>
		<key>9515F059515BF4EA904BC7195F443164</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>B503F38791E6623B5E45CB5C31D3A88F</string>
			</array>
			<key>isa</key>
			<string>PBXFrameworksBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>A0B95EFBC271DD00E8B1BC9A368F133E</key>
		<dict>
			<key>buildConfigurationList</key>
			<string>EB843796AE8E010D269DCAC984EC9C73</string>
			<key>buildPhases</key>
			<array>
				<string>B1C1840831869A0CFC690BBCBBDD51A0</string>
				<string>4877B2439FDB4334EE80D29151B64922</string>
				<string>EF08EC8A4B6445F441362C7F64837ACD</string>
			</array>
			<key>buildRules</key>
			<array/>
			<key>dependencies</key>
			<array>
				<string>FE26CC29053AB4CB34E1AECAB13CA86C</string>
			</array>
			<key>isa</key>
			<string>PBXNativeTarget</string>
			<key>name</key>
			<string>Pods-MBCircularProgressBar_Tests</string>
			<key>productName</key>
			<string>Pods-MBCircularProgressBar_Tests</string>
			<key>productReference</key>
			<string>4B19DFCFDD46DE8EF50646B62FB7181C</string>
			<key>productType</key>
			<string>com.apple.product-type.framework</string>
		</dict>
		<key>A39ED21030B371920D3734260136B08C</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.plist.xml</string>
			<key>path</key>
			<string>Info.plist</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>A5CFFE569B6181D46ABCA783C48CD124</key>
		<dict>
			<key>buildConfigurationList</key>
			<string>235A1247CB96E0AFA949410A867D2C55</string>
			<key>buildPhases</key>
			<array>
				<string>CE717AC3C9E1C6BE9F8881837C25126A</string>
				<string>9515F059515BF4EA904BC7195F443164</string>
				<string>079FF8671062AD063CBB7BF99FC0BC34</string>
			</array>
			<key>buildRules</key>
			<array/>
			<key>dependencies</key>
			<array>
				<string>3F5ECAA6978605724E62B3243EC06737</string>
			</array>
			<key>isa</key>
			<string>PBXNativeTarget</string>
			<key>name</key>
			<string>Pods-MBCircularProgressBar_Example</string>
			<key>productName</key>
			<string>Pods-MBCircularProgressBar_Example</string>
			<key>productReference</key>
			<string>D2EF416E449686347479308B169EC256</string>
			<key>productType</key>
			<string>com.apple.product-type.framework</string>
		</dict>
		<key>A733E3C23F3D8D660A96DF919F3EB865</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array/>
			<key>isa</key>
			<string>PBXSourcesBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>A87CA1F21CBCC46A5A7D4E4A6944DC30</key>
		<dict>
			<key>fileRef</key>
			<string>1CA37B4F495C00D737266278AC754421</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>A934CFE4750C4A4A5F3932B2AC474326</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array/>
			<key>isa</key>
			<string>PBXResourcesBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>B08E82FEC6D6D6C1845510CDF459C942</key>
		<dict>
			<key>containerPortal</key>
			<string>D41D8CD98F00B204E9800998ECF8427E</string>
			<key>isa</key>
			<string>PBXContainerItemProxy</string>
			<key>proxyType</key>
			<string>1</string>
			<key>remoteGlobalIDString</key>
			<string>860A9179BCFD9F1C616D8653DB2B4F91</string>
			<key>remoteInfo</key>
			<string>MBCircularProgressBar</string>
		</dict>
		<key>B1C1840831869A0CFC690BBCBBDD51A0</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>2B7D2385B2C1134DAE96BF471D65A124</string>
			</array>
			<key>isa</key>
			<string>PBXSourcesBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>B44012D5391A277428DC681F1DD497DA</key>
		<dict>
			<key>fileRef</key>
			<string>24A18E0DDB0DA98D0C10C6E28E478640</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>ATTRIBUTES</key>
				<array>
					<string>Public</string>
				</array>
			</dict>
		</dict>
		<key>B491F07944209D577C06071FD66C9DBC</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>82FE57282A0A8E70273633E0E9D7FEDF</string>
			<key>buildSettings</key>
			<dict>
				<key>CONFIGURATION_BUILD_DIR</key>
				<string>$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MBCircularProgressBar</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/MBCircularProgressBar/ResourceBundle-MBCircularProgressBar-Info.plist</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>8.0</string>
				<key>PRODUCT_NAME</key>
				<string>MBCircularProgressBar</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>WRAPPER_EXTENSION</key>
				<string>bundle</string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Debug</string>
		</dict>
		<key>B503F38791E6623B5E45CB5C31D3A88F</key>
		<dict>
			<key>fileRef</key>
			<string>CEC22C73C1608DFA5D5D78BDCB218219</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>B8E3CD215016960E63932050CB520CE1</key>
		<dict>
			<key>fileRef</key>
			<string>8EB19B9C4EE94481A90D461948BADF02</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>ATTRIBUTES</key>
				<array>
					<string>Public</string>
				</array>
			</dict>
		</dict>
		<key>B9D246F31026EC7C463654D8A008AAC5</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.h</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests-umbrella.h</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>BC3CA7F9E30CC8F7E2DD044DD34432FC</key>
		<dict>
			<key>children</key>
			<array>
				<string>3DCAB2B7CDE207B3958B6CB957FCC758</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Frameworks</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>C2F4B97F932442F82305A61F83A752F9</key>
		<dict>
			<key>fileRef</key>
			<string>CEC22C73C1608DFA5D5D78BDCB218219</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>C48D0169301F7CD0D9CD6C2946BD20D2</key>
		<dict>
			<key>containerPortal</key>
			<string>D41D8CD98F00B204E9800998ECF8427E</string>
			<key>isa</key>
			<string>PBXContainerItemProxy</string>
			<key>proxyType</key>
			<string>1</string>
			<key>remoteGlobalIDString</key>
			<string>860A9179BCFD9F1C616D8653DB2B4F91</string>
			<key>remoteInfo</key>
			<string>MBCircularProgressBar</string>
		</dict>
		<key>C7516562BA0FFADA12470ADBA426F9BC</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.plist.xml</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests-acknowledgements.plist</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>C7E474A03CAE21F1CB6046E7344C59BD</key>
		<dict>
			<key>buildSettings</key>
			<dict>
				<key>ALWAYS_SEARCH_USER_PATHS</key>
				<string>NO</string>
				<key>CLANG_ANALYZER_NONNULL</key>
				<string>YES</string>
				<key>CLANG_CXX_LANGUAGE_STANDARD</key>
				<string>gnu++0x</string>
				<key>CLANG_CXX_LIBRARY</key>
				<string>libc++</string>
				<key>CLANG_ENABLE_MODULES</key>
				<string>YES</string>
				<key>CLANG_ENABLE_OBJC_ARC</key>
				<string>YES</string>
				<key>CLANG_WARN_BOOL_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_CONSTANT_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
				<string>YES</string>
				<key>CLANG_WARN_EMPTY_BODY</key>
				<string>YES</string>
				<key>CLANG_WARN_ENUM_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_INT_CONVERSION</key>
				<string>YES</string>
				<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
				<string>YES</string>
				<key>CLANG_WARN_UNREACHABLE_CODE</key>
				<string>YES</string>
				<key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
				<string>YES</string>
				<key>COPY_PHASE_STRIP</key>
				<string>YES</string>
				<key>ENABLE_NS_ASSERTIONS</key>
				<string>NO</string>
				<key>GCC_C_LANGUAGE_STANDARD</key>
				<string>gnu99</string>
				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
				<array>
					<string>POD_CONFIGURATION_RELEASE=1</string>
					<string>$(inherited)</string>
				</array>
				<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
				<string>YES</string>
				<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
				<string>YES</string>
				<key>GCC_WARN_UNDECLARED_SELECTOR</key>
				<string>YES</string>
				<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
				<string>YES</string>
				<key>GCC_WARN_UNUSED_FUNCTION</key>
				<string>YES</string>
				<key>GCC_WARN_UNUSED_VARIABLE</key>
				<string>YES</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>9.0</string>
				<key>STRIP_INSTALLED_PRODUCT</key>
				<string>NO</string>
				<key>SYMROOT</key>
				<string>${SRCROOT}/../build</string>
				<key>VALIDATE_PRODUCT</key>
				<string>YES</string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Release</string>
		</dict>
		<key>CAA54389442269DDEB4726560C7D0F2F</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.script.sh</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests-resources.sh</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>CDC2C33DCA9AB372723E14560E873705</key>
		<dict>
			<key>buildConfigurations</key>
			<array>
				<string>B491F07944209D577C06071FD66C9DBC</string>
				<string>EA4A63AEFAB344B487789D66AD4F9B91</string>
			</array>
			<key>defaultConfigurationIsVisible</key>
			<string>0</string>
			<key>defaultConfigurationName</key>
			<string>Release</string>
			<key>isa</key>
			<string>XCConfigurationList</string>
		</dict>
		<key>CE717AC3C9E1C6BE9F8881837C25126A</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>A87CA1F21CBCC46A5A7D4E4A6944DC30</string>
			</array>
			<key>isa</key>
			<string>PBXSourcesBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>CEC22C73C1608DFA5D5D78BDCB218219</key>
		<dict>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>wrapper.framework</string>
			<key>name</key>
			<string>Foundation.framework</string>
			<key>path</key>
			<string>Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework</string>
			<key>sourceTree</key>
			<string>DEVELOPER_DIR</string>
		</dict>
		<key>CF8AE384E5A1035841194ED221BBB836</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>EDA0138BE60021F13000558525F0A77E</string>
			</array>
			<key>isa</key>
			<string>PBXFrameworksBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>D2EF416E449686347479308B169EC256</key>
		<dict>
			<key>explicitFileType</key>
			<string>wrapper.framework</string>
			<key>includeInIndex</key>
			<string>0</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>name</key>
			<string>Pods_MBCircularProgressBar_Example.framework</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example.framework</string>
			<key>sourceTree</key>
			<string>BUILT_PRODUCTS_DIR</string>
		</dict>
		<key>D3F6ED0D3D5846D8B11F1CEF2FC88F80</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.plist.xml</string>
			<key>path</key>
			<string>Info.plist</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>D41D8CD98F00B204E9800998ECF8427E</key>
		<dict>
			<key>attributes</key>
			<dict>
				<key>LastSwiftUpdateCheck</key>
				<string>0730</string>
				<key>LastUpgradeCheck</key>
				<string>0700</string>
			</dict>
			<key>buildConfigurationList</key>
			<string>2D8E8EC45A3A1A1D94AE762CB5028504</string>
			<key>compatibilityVersion</key>
			<string>Xcode 3.2</string>
			<key>developmentRegion</key>
			<string>English</string>
			<key>hasScannedForEncodings</key>
			<string>0</string>
			<key>isa</key>
			<string>PBXProject</string>
			<key>knownRegions</key>
			<array>
				<string>en</string>
			</array>
			<key>mainGroup</key>
			<string>7DB346D0F39D3F0E887471402A8071AB</string>
			<key>productRefGroup</key>
			<string>EEC9A146D772C65C260274139F200322</string>
			<key>projectDirPath</key>
			<string></string>
			<key>projectReferences</key>
			<array/>
			<key>projectRoot</key>
			<string></string>
			<key>targets</key>
			<array>
				<string>860A9179BCFD9F1C616D8653DB2B4F91</string>
				<string>8FC4B2785BB68892651401B8A26A15AD</string>
				<string>A5CFFE569B6181D46ABCA783C48CD124</string>
				<string>A0B95EFBC271DD00E8B1BC9A368F133E</string>
			</array>
		</dict>
		<key>DEEF4BE5CFD444D93AA9B74CBEE05D97</key>
		<dict>
			<key>children</key>
			<array>
				<string>D3F6ED0D3D5846D8B11F1CEF2FC88F80</string>
				<string>867CC80B9D23C9B6A5AE652D1F8EDD49</string>
				<string>61056D819EA6A2B18A0BCDC9C017E0AB</string>
				<string>63A1A8487E9CE9346DA53C2E91A7F15D</string>
				<string>1CA37B4F495C00D737266278AC754421</string>
				<string>16D9CC0036FC0CEDFA438D4F97B13F98</string>
				<string>7D66F40DAF75800EEEDE482FC346D807</string>
				<string>2CE299BAE66093565EC51C81AD328A96</string>
				<string>7D09405F2F07F8D06A170A08D363BCC0</string>
				<string>FF916F29D21679B6CDCE868597F7C46E</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Pods-MBCircularProgressBar_Example</string>
			<key>path</key>
			<string>Target Support Files/Pods-MBCircularProgressBar_Example</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>E208CA684730FAD7E69C5D6DD2A2C85D</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>E743AF2AB728BBB412D5DBD567EC9451</string>
			<key>buildSettings</key>
			<dict>
				<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
				<string>iPhone Developer</string>
				<key>CURRENT_PROJECT_VERSION</key>
				<string>1</string>
				<key>DEBUG_INFORMATION_FORMAT</key>
				<string>dwarf</string>
				<key>DEFINES_MODULE</key>
				<string>YES</string>
				<key>DYLIB_COMPATIBILITY_VERSION</key>
				<string>1</string>
				<key>DYLIB_CURRENT_VERSION</key>
				<string>1</string>
				<key>DYLIB_INSTALL_NAME_BASE</key>
				<string>@rpath</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Tests/Info.plist</string>
				<key>INSTALL_PATH</key>
				<string>$(LOCAL_LIBRARY_DIR)/Frameworks</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>9.0</string>
				<key>LD_RUNPATH_SEARCH_PATHS</key>
				<array>
					<string>$(inherited)</string>
					<string>@executable_path/Frameworks</string>
					<string>@loader_path/Frameworks</string>
				</array>
				<key>MACH_O_TYPE</key>
				<string>staticlib</string>
				<key>MODULEMAP_FILE</key>
				<string>Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.modulemap</string>
				<key>MTL_ENABLE_DEBUG_INFO</key>
				<string>YES</string>
				<key>OTHER_LDFLAGS</key>
				<string></string>
				<key>OTHER_LIBTOOLFLAGS</key>
				<string></string>
				<key>PODS_ROOT</key>
				<string>$(SRCROOT)</string>
				<key>PRODUCT_BUNDLE_IDENTIFIER</key>
				<string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
				<key>PRODUCT_NAME</key>
				<string>Pods_MBCircularProgressBar_Tests</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>VERSIONING_SYSTEM</key>
				<string>apple-generic</string>
				<key>VERSION_INFO_PREFIX</key>
				<string></string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Debug</string>
		</dict>
		<key>E2E82218C58EDF92ECF7A7BCFA469C1E</key>
		<dict>
			<key>fileRef</key>
			<string>73B433E0626A051EC9C46BCBE0EA40B3</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
			<key>settings</key>
			<dict>
				<key>COMPILER_FLAGS</key>
				<string>-w -Xanalyzer -analyzer-disable-all-checks</string>
			</dict>
		</dict>
		<key>E743AF2AB728BBB412D5DBD567EC9451</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.xcconfig</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests.debug.xcconfig</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>EA4A63AEFAB344B487789D66AD4F9B91</key>
		<dict>
			<key>baseConfigurationReference</key>
			<string>82FE57282A0A8E70273633E0E9D7FEDF</string>
			<key>buildSettings</key>
			<dict>
				<key>CONFIGURATION_BUILD_DIR</key>
				<string>$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MBCircularProgressBar</string>
				<key>ENABLE_STRICT_OBJC_MSGSEND</key>
				<string>YES</string>
				<key>GCC_NO_COMMON_BLOCKS</key>
				<string>YES</string>
				<key>INFOPLIST_FILE</key>
				<string>Target Support Files/MBCircularProgressBar/ResourceBundle-MBCircularProgressBar-Info.plist</string>
				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
				<string>8.0</string>
				<key>PRODUCT_NAME</key>
				<string>MBCircularProgressBar</string>
				<key>SDKROOT</key>
				<string>iphoneos</string>
				<key>SKIP_INSTALL</key>
				<string>YES</string>
				<key>TARGETED_DEVICE_FAMILY</key>
				<string>1,2</string>
				<key>WRAPPER_EXTENSION</key>
				<string>bundle</string>
			</dict>
			<key>isa</key>
			<string>XCBuildConfiguration</string>
			<key>name</key>
			<string>Release</string>
		</dict>
		<key>EAD592E10AA158C07B28F203F0E76727</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.xcconfig</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Tests.release.xcconfig</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>EB18FC47C92E08E7370F8CB2FB8AD99C</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>path</key>
			<string>MBCircularProgressBar.modulemap</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>EB843796AE8E010D269DCAC984EC9C73</key>
		<dict>
			<key>buildConfigurations</key>
			<array>
				<string>E208CA684730FAD7E69C5D6DD2A2C85D</string>
				<string>5AB06378B99F827A6D22A9E64430C8D0</string>
			</array>
			<key>defaultConfigurationIsVisible</key>
			<string>0</string>
			<key>defaultConfigurationName</key>
			<string>Release</string>
			<key>isa</key>
			<string>XCConfigurationList</string>
		</dict>
		<key>EBC59F00882F35808CD4B15930E9008E</key>
		<dict>
			<key>containerPortal</key>
			<string>D41D8CD98F00B204E9800998ECF8427E</string>
			<key>isa</key>
			<string>PBXContainerItemProxy</string>
			<key>proxyType</key>
			<string>1</string>
			<key>remoteGlobalIDString</key>
			<string>8FC4B2785BB68892651401B8A26A15AD</string>
			<key>remoteInfo</key>
			<string>MBCircularProgressBar-MBCircularProgressBar</string>
		</dict>
		<key>EDA0138BE60021F13000558525F0A77E</key>
		<dict>
			<key>fileRef</key>
			<string>CEC22C73C1608DFA5D5D78BDCB218219</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>EEC9A146D772C65C260274139F200322</key>
		<dict>
			<key>children</key>
			<array>
				<string>6EC0ADB8F524A29F97A91EAA01C284C1</string>
				<string>3706D90A67252517988512C65EB5C4AD</string>
				<string>D2EF416E449686347479308B169EC256</string>
				<string>4B19DFCFDD46DE8EF50646B62FB7181C</string>
			</array>
			<key>isa</key>
			<string>PBXGroup</string>
			<key>name</key>
			<string>Products</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>EF08EC8A4B6445F441362C7F64837ACD</key>
		<dict>
			<key>buildActionMask</key>
			<string>2147483647</string>
			<key>files</key>
			<array>
				<string>65843429993E316C12E7B050CA8301F3</string>
			</array>
			<key>isa</key>
			<string>PBXHeadersBuildPhase</string>
			<key>runOnlyForDeploymentPostprocessing</key>
			<string>0</string>
		</dict>
		<key>F124749837AF75ECD76E7618A08F4260</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>sourcecode.c.objc</string>
			<key>path</key>
			<string>MBCircularProgressBarView.m</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
		<key>F88D157974522F8674E5DFA82F8B0A2A</key>
		<dict>
			<key>fileRef</key>
			<string>6EC0ADB8F524A29F97A91EAA01C284C1</string>
			<key>isa</key>
			<string>PBXBuildFile</string>
		</dict>
		<key>FE26CC29053AB4CB34E1AECAB13CA86C</key>
		<dict>
			<key>isa</key>
			<string>PBXTargetDependency</string>
			<key>name</key>
			<string>MBCircularProgressBar</string>
			<key>target</key>
			<string>860A9179BCFD9F1C616D8653DB2B4F91</string>
			<key>targetProxy</key>
			<string>C48D0169301F7CD0D9CD6C2946BD20D2</string>
		</dict>
		<key>FF916F29D21679B6CDCE868597F7C46E</key>
		<dict>
			<key>includeInIndex</key>
			<string>1</string>
			<key>isa</key>
			<string>PBXFileReference</string>
			<key>lastKnownFileType</key>
			<string>text.xcconfig</string>
			<key>path</key>
			<string>Pods-MBCircularProgressBar_Example.release.xcconfig</string>
			<key>sourceTree</key>
			<string>&lt;group&gt;</string>
		</dict>
	</dict>
	<key>rootObject</key>
	<string>D41D8CD98F00B204E9800998ECF8427E</string>
</dict>
</plist>


================================================
FILE: Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/MBCircularProgressBar.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "0810"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
      buildImplicitDependencies = "YES">
      <BuildActionEntries>
         <BuildActionEntry
            buildForTesting = "YES"
            buildForRunning = "YES"
            buildForProfiling = "YES"
            buildForArchiving = "YES"
            buildForAnalyzing = "YES">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "860A9179BCFD9F1C616D8653DB2B4F91"
               BuildableName = "MBCircularProgressBar.framework"
               BlueprintName = "MBCircularProgressBar"
               ReferencedContainer = "container:Pods.xcodeproj">
            </BuildableReference>
         </BuildActionEntry>
      </BuildActionEntries>
   </BuildAction>
   <TestAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      shouldUseLaunchSchemeArgsEnv = "YES">
      <Testables>
      </Testables>
      <AdditionalOptions>
      </AdditionalOptions>
   </TestAction>
   <LaunchAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      launchStyle = "0"
      useCustomWorkingDirectory = "NO"
      ignoresPersistentStateOnLaunch = "NO"
      debugDocumentVersioning = "YES"
      debugServiceExtension = "internal"
      allowLocationSimulation = "YES">
      <MacroExpansion>
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "860A9179BCFD9F1C616D8653DB2B4F91"
            BuildableName = "MBCircularProgressBar.framework"
            BlueprintName = "MBCircularProgressBar"
            ReferencedContainer = "container:Pods.xcodeproj">
         </BuildableReference>
      </MacroExpansion>
      <AdditionalOptions>
      </AdditionalOptions>
   </LaunchAction>
   <ProfileAction
      buildConfiguration = "Release"
      shouldUseLaunchSchemeArgsEnv = "YES"
      savedToolIdentifier = ""
      useCustomWorkingDirectory = "NO"
      debugDocumentVersioning = "YES">
      <MacroExpansion>
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "860A9179BCFD9F1C616D8653DB2B4F91"
            BuildableName = "MBCircularProgressBar.framework"
            BlueprintName = "MBCircularProgressBar"
            ReferencedContainer = "container:Pods.xcodeproj">
         </BuildableReference>
      </MacroExpansion>
   </ProfileAction>
   <AnalyzeAction
      buildConfiguration = "Debug">
   </AnalyzeAction>
   <ArchiveAction
      buildConfiguration = "Release"
      revealArchiveInOrganizer = "YES">
   </ArchiveAction>
</Scheme>


================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>CFBundleDevelopmentRegion</key>
  <string>en</string>
  <key>CFBundleExecutable</key>
  <string>${EXECUTABLE_NAME}</string>
  <key>CFBundleIdentifier</key>
  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  <key>CFBundleInfoDictionaryVersion</key>
  <string>6.0</string>
  <key>CFBundleName</key>
  <string>${PRODUCT_NAME}</string>
  <key>CFBundlePackageType</key>
  <string>FMWK</string>
  <key>CFBundleShortVersionString</key>
  <string>0.3.4</string>
  <key>CFBundleSignature</key>
  <string>????</string>
  <key>CFBundleVersion</key>
  <string>${CURRENT_PROJECT_VERSION}</string>
  <key>NSPrincipalClass</key>
  <string></string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_MBCircularProgressBar : NSObject
@end
@implementation PodsDummy_MBCircularProgressBar
@end


================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-prefix.pch
================================================
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif



================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-umbrella.h
================================================
#import <UIKit/UIKit.h>

#import "MBCircularProgressBarLayer.h"
#import "MBCircularProgressBarView.h"

FOUNDATION_EXPORT double MBCircularProgressBarVersionNumber;
FOUNDATION_EXPORT const unsigned char MBCircularProgressBarVersionString[];



================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.modulemap
================================================
framework module MBCircularProgressBar {
  umbrella header "MBCircularProgressBar-umbrella.h"

  export *
  module * { export * }
}


================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.xcconfig
================================================
CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
SKIP_INSTALL = YES


================================================
FILE: Example/Pods/Target Support Files/MBCircularProgressBar/ResourceBundle-MBCircularProgressBar-Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>CFBundleDevelopmentRegion</key>
  <string>en</string>
  <key>CFBundleIdentifier</key>
  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  <key>CFBundleInfoDictionaryVersion</key>
  <string>6.0</string>
  <key>CFBundleName</key>
  <string>${PRODUCT_NAME}</string>
  <key>CFBundlePackageType</key>
  <string>BNDL</string>
  <key>CFBundleShortVersionString</key>
  <string>0.3.4</string>
  <key>CFBundleSignature</key>
  <string>????</string>
  <key>CFBundleVersion</key>
  <string>1</string>
  <key>NSPrincipalClass</key>
  <string></string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>CFBundleDevelopmentRegion</key>
  <string>en</string>
  <key>CFBundleExecutable</key>
  <string>${EXECUTABLE_NAME}</string>
  <key>CFBundleIdentifier</key>
  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  <key>CFBundleInfoDictionaryVersion</key>
  <string>6.0</string>
  <key>CFBundleName</key>
  <string>${PRODUCT_NAME}</string>
  <key>CFBundlePackageType</key>
  <string>FMWK</string>
  <key>CFBundleShortVersionString</key>
  <string>1.0.0</string>
  <key>CFBundleSignature</key>
  <string>????</string>
  <key>CFBundleVersion</key>
  <string>${CURRENT_PROJECT_VERSION}</string>
  <key>NSPrincipalClass</key>
  <string></string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:

## MBCircularProgressBar

Copyright (c) 2015 Mati Bot <matibot@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Generated by CocoaPods - https://cocoapods.org


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-acknowledgements.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>PreferenceSpecifiers</key>
	<array>
		<dict>
			<key>FooterText</key>
			<string>This application makes use of the following third party libraries:</string>
			<key>Title</key>
			<string>Acknowledgements</string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
		<dict>
			<key>FooterText</key>
			<string>Copyright (c) 2015 Mati Bot &lt;matibot@gmail.com&gt;

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
			<key>Title</key>
			<string>MBCircularProgressBar</string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
		<dict>
			<key>FooterText</key>
			<string>Generated by CocoaPods - https://cocoapods.org</string>
			<key>Title</key>
			<string></string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
	</array>
	<key>StringsTable</key>
	<string>Acknowledgements</string>
	<key>Title</key>
	<string>Acknowledgements</string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_MBCircularProgressBar_Example : NSObject
@end
@implementation PodsDummy_Pods_MBCircularProgressBar_Example
@end


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-frameworks.sh
================================================
#!/bin/sh
set -e

echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"

SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"

install_framework()
{
  if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
    local source="${BUILT_PRODUCTS_DIR}/$1"
  elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
    local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
  elif [ -r "$1" ]; then
    local source="$1"
  fi

  local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"

  if [ -L "${source}" ]; then
      echo "Symlinked..."
      source="$(readlink "${source}")"
  fi

  # use filter instead of exclude so missing patterns dont' throw errors
  echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
  rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"

  local basename
  basename="$(basename -s .framework "$1")"
  binary="${destination}/${basename}.framework/${basename}"
  if ! [ -r "$binary" ]; then
    binary="${destination}/${basename}"
  fi

  # Strip invalid architectures so "fat" simulator / device frameworks work on device
  if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
    strip_invalid_archs "$binary"
  fi

  # Resign the code if required by the build settings to avoid unstable apps
  code_sign_if_enabled "${destination}/$(basename "$1")"

  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
  if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
    local swift_runtime_libs
    swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u  && exit ${PIPESTATUS[0]})
    for lib in $swift_runtime_libs; do
      echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
      rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
      code_sign_if_enabled "${destination}/${lib}"
    done
  fi
}

# Signs a framework with the provided identity
code_sign_if_enabled() {
  if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
    # Use the current code_sign_identitiy
    echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
    echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\""
    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"
  fi
}

# Strip invalid architectures
strip_invalid_archs() {
  binary="$1"
  # Get architectures for current file
  archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
  stripped=""
  for arch in $archs; do
    if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
      # Strip non-valid architectures in-place
      lipo -remove "$arch" -output "$binary" "$binary" || exit 1
      stripped="$stripped $arch"
    fi
  done
  if [[ "$stripped" ]]; then
    echo "Stripped $binary of architectures:$stripped"
  fi
}


if [[ "$CONFIGURATION" == "Debug" ]]; then
  install_framework "$BUILT_PRODUCTS_DIR/MBCircularProgressBar/MBCircularProgressBar.framework"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
  install_framework "$BUILT_PRODUCTS_DIR/MBCircularProgressBar/MBCircularProgressBar.framework"
fi


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-resources.sh
================================================
#!/bin/sh
set -e

mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"

RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"

XCASSET_FILES=()

case "${TARGETED_DEVICE_FAMILY}" in
  1,2)
    TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
    ;;
  1)
    TARGET_DEVICE_ARGS="--target-device iphone"
    ;;
  2)
    TARGET_DEVICE_ARGS="--target-device ipad"
    ;;
  *)
    TARGET_DEVICE_ARGS="--target-device mac"
    ;;
esac

realpath() {
  DIRECTORY="$(cd "${1%/*}" && pwd)"
  FILENAME="${1##*/}"
  echo "$DIRECTORY/$FILENAME"
}

install_resource()
{
  if [[ "$1" = /* ]] ; then
    RESOURCE_PATH="$1"
  else
    RESOURCE_PATH="${PODS_ROOT}/$1"
  fi
  if [[ ! -e "$RESOURCE_PATH" ]] ; then
    cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
    exit 1
  fi
  case $RESOURCE_PATH in
    *.storyboard)
      echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
      ;;
    *.xib)
      echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
      ;;
    *.framework)
      echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      ;;
    *.xcdatamodel)
      echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\""
      xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
      ;;
    *.xcdatamodeld)
      echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\""
      xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
      ;;
    *.xcmappingmodel)
      echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\""
      xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
      ;;
    *.xcassets)
      ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH")
      XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
      ;;
    *)
      echo "$RESOURCE_PATH"
      echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
      ;;
  esac
}

mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
  mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"

if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
  # Find all other xcassets (this unfortunately includes those of path pods and other targets).
  OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
  while read line; do
    if [[ $line != "`realpath $PODS_ROOT`*" ]]; then
      XCASSET_FILES+=("$line")
    fi
  done <<<"$OTHER_XCASSETS"

  printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-umbrella.h
================================================
#import <UIKit/UIKit.h>


FOUNDATION_EXPORT double Pods_MBCircularProgressBar_ExampleVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_MBCircularProgressBar_ExampleVersionString[];



================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.debug.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar/MBCircularProgressBar.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "MBCircularProgressBar"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.modulemap
================================================
framework module Pods_MBCircularProgressBar_Example {
  umbrella header "Pods-MBCircularProgressBar_Example-umbrella.h"

  export *
  module * { export * }
}


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.release.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar/MBCircularProgressBar.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "MBCircularProgressBar"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>CFBundleDevelopmentRegion</key>
  <string>en</string>
  <key>CFBundleExecutable</key>
  <string>${EXECUTABLE_NAME}</string>
  <key>CFBundleIdentifier</key>
  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  <key>CFBundleInfoDictionaryVersion</key>
  <string>6.0</string>
  <key>CFBundleName</key>
  <string>${PRODUCT_NAME}</string>
  <key>CFBundlePackageType</key>
  <string>FMWK</string>
  <key>CFBundleShortVersionString</key>
  <string>1.0.0</string>
  <key>CFBundleSignature</key>
  <string>????</string>
  <key>CFBundleVersion</key>
  <string>${CURRENT_PROJECT_VERSION}</string>
  <key>NSPrincipalClass</key>
  <string></string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:

## MBCircularProgressBar

Copyright (c) 2015 Mati Bot <matibot@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Generated by CocoaPods - https://cocoapods.org


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-acknowledgements.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>PreferenceSpecifiers</key>
	<array>
		<dict>
			<key>FooterText</key>
			<string>This application makes use of the following third party libraries:</string>
			<key>Title</key>
			<string>Acknowledgements</string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
		<dict>
			<key>FooterText</key>
			<string>Copyright (c) 2015 Mati Bot &lt;matibot@gmail.com&gt;

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
			<key>Title</key>
			<string>MBCircularProgressBar</string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
		<dict>
			<key>FooterText</key>
			<string>Generated by CocoaPods - https://cocoapods.org</string>
			<key>Title</key>
			<string></string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
	</array>
	<key>StringsTable</key>
	<string>Acknowledgements</string>
	<key>Title</key>
	<string>Acknowledgements</string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_MBCircularProgressBar_Tests : NSObject
@end
@implementation PodsDummy_Pods_MBCircularProgressBar_Tests
@end


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-frameworks.sh
================================================
#!/bin/sh
set -e

echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"

SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"

install_framework()
{
  if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
    local source="${BUILT_PRODUCTS_DIR}/$1"
  elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
    local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
  elif [ -r "$1" ]; then
    local source="$1"
  fi

  local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"

  if [ -L "${source}" ]; then
      echo "Symlinked..."
      source="$(readlink "${source}")"
  fi

  # use filter instead of exclude so missing patterns dont' throw errors
  echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
  rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"

  local basename
  basename="$(basename -s .framework "$1")"
  binary="${destination}/${basename}.framework/${basename}"
  if ! [ -r "$binary" ]; then
    binary="${destination}/${basename}"
  fi

  # Strip invalid architectures so "fat" simulator / device frameworks work on device
  if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
    strip_invalid_archs "$binary"
  fi

  # Resign the code if required by the build settings to avoid unstable apps
  code_sign_if_enabled "${destination}/$(basename "$1")"

  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
  if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
    local swift_runtime_libs
    swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u  && exit ${PIPESTATUS[0]})
    for lib in $swift_runtime_libs; do
      echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
      rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
      code_sign_if_enabled "${destination}/${lib}"
    done
  fi
}

# Signs a framework with the provided identity
code_sign_if_enabled() {
  if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
    # Use the current code_sign_identitiy
    echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
    echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\""
    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"
  fi
}

# Strip invalid architectures
strip_invalid_archs() {
  binary="$1"
  # Get architectures for current file
  archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
  stripped=""
  for arch in $archs; do
    if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
      # Strip non-valid architectures in-place
      lipo -remove "$arch" -output "$binary" "$binary" || exit 1
      stripped="$stripped $arch"
    fi
  done
  if [[ "$stripped" ]]; then
    echo "Stripped $binary of architectures:$stripped"
  fi
}


if [[ "$CONFIGURATION" == "Debug" ]]; then
  install_framework "$BUILT_PRODUCTS_DIR/MBCircularProgressBar/MBCircularProgressBar.framework"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
  install_framework "$BUILT_PRODUCTS_DIR/MBCircularProgressBar/MBCircularProgressBar.framework"
fi


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-resources.sh
================================================
#!/bin/sh
set -e

mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"

RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"

XCASSET_FILES=()

case "${TARGETED_DEVICE_FAMILY}" in
  1,2)
    TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
    ;;
  1)
    TARGET_DEVICE_ARGS="--target-device iphone"
    ;;
  2)
    TARGET_DEVICE_ARGS="--target-device ipad"
    ;;
  *)
    TARGET_DEVICE_ARGS="--target-device mac"
    ;;
esac

realpath() {
  DIRECTORY="$(cd "${1%/*}" && pwd)"
  FILENAME="${1##*/}"
  echo "$DIRECTORY/$FILENAME"
}

install_resource()
{
  if [[ "$1" = /* ]] ; then
    RESOURCE_PATH="$1"
  else
    RESOURCE_PATH="${PODS_ROOT}/$1"
  fi
  if [[ ! -e "$RESOURCE_PATH" ]] ; then
    cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
    exit 1
  fi
  case $RESOURCE_PATH in
    *.storyboard)
      echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
      ;;
    *.xib)
      echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
      ;;
    *.framework)
      echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      ;;
    *.xcdatamodel)
      echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\""
      xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
      ;;
    *.xcdatamodeld)
      echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\""
      xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
      ;;
    *.xcmappingmodel)
      echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\""
      xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
      ;;
    *.xcassets)
      ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH")
      XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
      ;;
    *)
      echo "$RESOURCE_PATH"
      echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
      ;;
  esac
}

mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
  mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"

if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
  # Find all other xcassets (this unfortunately includes those of path pods and other targets).
  OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
  while read line; do
    if [[ $line != "`realpath $PODS_ROOT`*" ]]; then
      XCASSET_FILES+=("$line")
    fi
  done <<<"$OTHER_XCASSETS"

  printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-umbrella.h
================================================
#import <UIKit/UIKit.h>


FOUNDATION_EXPORT double Pods_MBCircularProgressBar_TestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_MBCircularProgressBar_TestsVersionString[];



================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.debug.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar/MBCircularProgressBar.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "MBCircularProgressBar"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.modulemap
================================================
framework module Pods_MBCircularProgressBar_Tests {
  umbrella header "Pods-MBCircularProgressBar_Tests-umbrella.h"

  export *
  module * { export * }
}


================================================
FILE: Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.release.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar/MBCircularProgressBar.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "MBCircularProgressBar"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods


================================================
FILE: Example/Tests/Tests-Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>${EXECUTABLE_NAME}</string>
	<key>CFBundleIdentifier</key>
	<string>org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
</dict>
</plist>


================================================
FILE: Example/Tests/Tests-Prefix.pch
================================================
//  The contents of this file are implicitly included at the beginning of every test case source file.

#ifdef __OBJC__

  

#endif


================================================
FILE: Example/Tests/Tests.m
================================================
//
//  MBCircularProgressBarTests.m
//  MBCircularProgressBarTests
//
//  Created by Mati Bot on 07/19/2015.
//  Copyright (c) 2015 Mati Bot. All rights reserved.
//

@import XCTest;

@interface Tests : XCTestCase

@end

@implementation Tests

- (void)setUp
{
    [super setUp];
    // Put setup code here. This method is called before the invocation of each test method in the class.
}

- (void)tearDown
{
    // Put teardown code here. This method is called after the invocation of each test method in the class.
    [super tearDown];
}


@end



================================================
FILE: Example/Tests/en.lproj/InfoPlist.strings
================================================
/* Localized versions of Info.plist keys */



================================================
FILE: LICENSE
================================================
Copyright (c) 2015 Mati Bot <os@mati.bot>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


================================================
FILE: MBCircularProgressBar.podspec
================================================
#
# Be sure to run `pod lib lint MBCircularProgressBar.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = "MBCircularProgressBar"
  s.version          = "0.3.5"
  s.summary          = "a circular animatable & IB highly customizable progress bar"
  s.description      = <<-DESC
a circular animatable & Interface Builder highly customizable progress bar
                       DESC
  s.homepage         = "https://github.com/matibot/MBCircularProgressBar"
  s.screenshots     = "https://raw.github.com/matibot/MBCircularProgressBar/master/Readme/example.png", "https://raw.github.com/matibot/MBCircularProgressBar/master/Readme/MBCircularProgressBar.gif"
  s.license          = 'MIT'
  s.author           = { "Mati Bot" => "os@mati.bot" }
  s.source           = { :git => "https://github.com/matibot/MBCircularProgressBar.git", :tag => s.version.to_s }
  s.social_media_url = 'https://twitter.com/@b0tnik'

  s.platform     = :ios, '8.0'
  s.requires_arc = true

  s.source_files = 'Pod/Classes/**/*'
  s.resource_bundles = {
    'MBCircularProgressBar' => ['Pod/Assets/*.png']
  }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
end


================================================
FILE: Pod/Assets/.gitkeep
================================================


================================================
FILE: Pod/Classes/.gitkeep
================================================


================================================
FILE: Pod/Classes/MBCircularProgressBarLayer.h
================================================
//
//  MBCircularProgressBarLayer.h
//  MBCircularProgressBar
//
//  Created by Mati Bot on 7/9/15.
//  Copyright (c) 2015 Mati Bot All rights reserved.
//

@import QuartzCore;

typedef NS_ENUM(NSInteger, MBCircularProgressBarAppearanceType) {
    MBCircularProgressBarAppearanceTypeOverlaysEmptyLine = 0,
    MBCircularProgressBarAppearanceTypeAboveEmptyLine = 1,
    MBCircularProgressBarAppearanceTypeUnderEmptyLine = 2
};

/**
 * The MBCircularProgressBarLayer class is a CALayer subclass that represents the underlying layer
 * of MBCircularProgressBarView.
 */
@interface MBCircularProgressBarLayer : CALayer

/**
 * Set a partial angle for the progress bar	[0,100]
 */
@property (nonatomic,assign) CGFloat  progressAngle;

/**
 * Progress bar rotation (Clockewise)	[0,100]
 */
@property (nonatomic,assign) CGFloat  progressRotationAngle;

/**
 * Progress bar appearance type 
 */
@property (nonatomic,assign) MBCircularProgressBarAppearanceType progressAppearanceType;

/**
 * The value of the progress bar
 */
@property (nonatomic,assign) CGFloat  value;

/**
 * The maximum possible value, used to calculate the progress (value/maxValue)	[0,∞)
 */
@property (nonatomic,assign) CGFloat  maxValue;

/**
 * Padding from borders
 */
@property (nonatomic,assign) CGFloat borderPadding;

/**
 * Animation duration in seconds
 */
@property (nonatomic,assign) NSTimeInterval  animationDuration;

/**
 * The font size of the value text	[0,∞)
 */
@property (nonatomic,assign) CGFloat  valueFontSize;

/**
 * The name of the font of the unit string
 */
@property (nonatomic,assign) CGFloat  unitFontSize;

/**
 * The string that represents the units, usually %
 */
@property (nonatomic,copy)   NSString *unitString;

/**
 * The color of the value and unit text
 */
@property (nonatomic,strong) UIColor  *fontColor;

/**
 * The width of the progress bar (user space units)	[0,∞)
 */
@property (nonatomic,assign) CGFloat    progressLineWidth;

/**
 * The color of the progress bar
 */
@property (nonatomic,strong) UIColor    *progressColor;

/**
 * The color of the progress bar frame
 */
@property (nonatomic,strong) UIColor    *progressStrokeColor;

/**
 * The shape of the progress bar cap	{kCGLineCapButt=0, kCGLineCapRound=1, kCGLineCapSquare=2}
 */
@property (nonatomic,assign) CGLineCap  progressCapType;

/**
 * The width of the background bar (user space units)	[0,∞)
 */
@property (nonatomic,assign) CGFloat    emptyLineWidth;

/**
 * The shape of the background bar cap	{kCGLineCapButt=0, kCGLineCapRound=1, kCGLineCapSquare=2}
 */
@property (nonatomic,assign) CGLineCap  emptyCapType;

/**
 * The color of the background bar
 */
@property (nonatomic,strong) UIColor    *emptyLineColor;
/**
 * The color of the background bar stroke line
 */
@property (nonatomic,strong) UIColor    *emptyLineStrokeColor;

/*
 * Number of decimal places of the value [0,∞)
 */
@property (nonatomic,assign)  NSInteger decimalPlaces;

/**
 * The value to be displayed in the center
 */
@property (nonatomic,assign)  CGFloat   valueDecimalFontSize;

/**
 * The font size of the unit text	[0,∞)
 */
@property (nonatomic,copy)    NSString  *unitFontName;

/**
 * The name of the font of the unit string
 */
@property (nonatomic,copy)    NSString  *valueFontName;

/**
 * Should show unit screen
 */
@property (nonatomic,assign)  BOOL      showUnitString;

/**
 * The offset to apply to the unit / value text
 */
@property (nonatomic,assign)  CGPoint   textOffset;

/**
 * Should show value string
 */
@property (nonatomic,assign)  BOOL      showValueString;


/**
 * Show label value as countdown
 * Default is NO
 */
@property (nonatomic,assign)  BOOL      countdown;

@end


================================================
FILE: Pod/Classes/MBCircularProgressBarLayer.m
================================================
//
//  MBCircularProgressBarLayer.m
//  MBCircularProgressBar
//
//  Created by Mati Bot on 7/9/15.
//  Copyright (c) 2015 Mati Bot All rights reserved.
//

@import UIKit;
@import CoreGraphics;

#import "MBCircularProgressBarLayer.h"

@implementation MBCircularProgressBarLayer
@dynamic value;
@dynamic maxValue;
@dynamic borderPadding;
@dynamic valueFontSize;
@dynamic unitString;
@dynamic unitFontSize;
@dynamic progressLineWidth;
@dynamic progressColor;
@dynamic progressStrokeColor;
@dynamic emptyLineWidth;
@dynamic progressAngle;
@dynamic emptyLineColor;
@dynamic emptyLineStrokeColor;
@dynamic emptyCapType;
@dynamic progressCapType;
@dynamic fontColor;
@dynamic progressRotationAngle;
@dynamic progressAppearanceType;
@dynamic decimalPlaces;
@dynamic valueDecimalFontSize;
@dynamic unitFontName;
@dynamic valueFontName;
@dynamic showUnitString;
@dynamic showValueString;
@dynamic textOffset;
@dynamic countdown;

#pragma mark - Drawing

//-(void)setValue:(CGFloat)value{
//    [self drawProgressBar:<#(CGSize)#> context:<#(CGContextRef)#>]
//}

- (void) drawInContext:(CGContextRef) context{
    [super drawInContext:context];

    UIGraphicsPushContext(context);
    
    CGRect rect = CGContextGetClipBoundingBox(context);
    rect = CGRectIntegral(CGRectInset(rect, self.borderPadding, self.borderPadding));
    
    [self drawEmptyBar:rect context:context];
    [self drawProgressBar:rect context:context];
  
    if (self.showValueString){
      [self drawText:rect context:context];
    }
    
    UIGraphicsPopContext();
}

- (void)drawEmptyBar:(CGRect)rect context:(CGContextRef)c{
    
    if(self.emptyLineWidth <= 0){
        return;
    }
    
    CGPoint center = {CGRectGetMidX(rect), CGRectGetMidY(rect)};
    CGFloat radius = MIN(CGRectGetWidth(rect), CGRectGetHeight(rect))/2;
    if (self.progressAppearanceType == MBCircularProgressBarAppearanceTypeOverlaysEmptyLine) {
        radius = radius - MAX(self.emptyLineWidth, self.progressLineWidth)/2.f;
    } else if (self.progressAppearanceType == MBCircularProgressBarAppearanceTypeAboveEmptyLine) {
        radius = radius - self.progressLineWidth - self.emptyLineWidth/2.f;
    } else {
        radius = radius - self.emptyLineWidth/2.f;
    }
    
    CGMutablePathRef arc = CGPathCreateMutable();
    CGPathAddArc(arc, NULL,
                 center.x, center.y, radius,
                 (self.progressAngle/100.f)*M_PI-((-self.progressRotationAngle/100.f)*2.f+0.5)*M_PI,
                 -(self.progressAngle/100.f)*M_PI-((-self.progressRotationAngle/100.f)*2.f+0.5)*M_PI,
                 YES);
    

    CGPathRef strokedArc =
    CGPathCreateCopyByStrokingPath(arc, NULL,
                                   self.emptyLineWidth,
                                   (CGLineCap)self.emptyCapType,
                                   kCGLineJoinMiter,
                                   10);
    
    
    CGContextAddPath(c, strokedArc);
    CGContextSetStrokeColorWithColor(c, self.emptyLineStrokeColor.CGColor);
    CGContextSetFillColorWithColor(c, self.emptyLineColor.CGColor);
    CGContextDrawPath(c, kCGPathFillStroke);
    
    CGPathRelease(arc);
    CGPathRelease(strokedArc);
}

- (void)drawProgressBar:(CGRect)rect context:(CGContextRef)c{
    if(self.progressLineWidth <= 0){
        return;
    }
    
    CGPoint center = {CGRectGetMidX(rect), CGRectGetMidY(rect)};
    CGFloat radius = MIN(CGRectGetWidth(rect), CGRectGetHeight(rect))/2;
    if (self.progressAppearanceType == MBCircularProgressBarAppearanceTypeOverlaysEmptyLine) {
        radius = radius - MAX(self.emptyLineWidth, self.progressLineWidth)/2.f;
    } else if (self.progressAppearanceType == MBCircularProgressBarAppearanceTypeAboveEmptyLine) {
        radius = radius - self.progressLineWidth/2.f;
    } else {
        radius = radius - self.emptyLineWidth - self.progressLineWidth/2.f;
    }
    
    CGMutablePathRef arc = CGPathCreateMutable();
    CGPathAddArc(arc, NULL,
                 center.x, center.y, radius,
                 (self.progressAngle/100.f)*M_PI-((-self.progressRotationAngle/100.f)*2.f+0.5)*M_PI-(2.f*M_PI)*(self.progressAngle/100.f)*(100.f-100.f*self.value/self.maxValue)/100.f,
                 -(self.progressAngle/100.f)*M_PI-((-self.progressRotationAngle/100.f)*2.f+0.5)*M_PI,
                 YES);
    
    CGPathRef strokedArc =
    CGPathCreateCopyByStrokingPath(arc, NULL,
                                   self.progressLineWidth,
                                   (CGLineCap)self.progressCapType,
                                   kCGLineJoinMiter,
                                   10);

    
    CGContextAddPath(c, strokedArc);
    CGContextSetFillColorWithColor(c, self.progressColor.CGColor);
    CGContextSetStrokeColorWithColor(c, self.progressStrokeColor.CGColor);
    CGContextDrawPath(c, kCGPathFillStroke);
    
    CGPathRelease(arc);
    CGPathRelease(strokedArc);
}

- (void)drawText:(CGRect)rect context:(CGContextRef)c{
  NSMutableParagraphStyle* textStyle = NSMutableParagraphStyle.defaultParagraphStyle.mutableCopy;
  textStyle.alignment = NSTextAlignmentLeft;
  
  CGFloat valueFontSize = self.valueFontSize == -1 ? CGRectGetHeight(rect)/5 : self.valueFontSize;
  
  NSDictionary* valueFontAttributes = @{NSFontAttributeName: [UIFont fontWithName: self.valueFontName size:valueFontSize], NSForegroundColorAttributeName: self.fontColor, NSParagraphStyleAttributeName: textStyle};
  
  NSMutableAttributedString *text = [NSMutableAttributedString new];
  
  NSString *formatString = [NSString stringWithFormat:@"%%.%df", (int)self.decimalPlaces];
    
  NSString* textToPresent;
  if (self.countdown) {
    textToPresent = [NSString stringWithFormat:formatString, (self.maxValue - self.value)];
  } else {
    textToPresent = [NSString stringWithFormat:formatString, self.value];
  }
  NSAttributedString* value = [[NSAttributedString alloc] initWithString:textToPresent
                                                                attributes:valueFontAttributes];
  [text appendAttributedString:value];
  
  // set the decimal font size
  NSUInteger decimalLocation = [text.string rangeOfString:@"."].location;
  if (decimalLocation != NSNotFound){
    NSDictionary* valueDecimalFontAttributes = @{NSFontAttributeName: [UIFont fontWithName: self.valueFontName size:self.valueDecimalFontSize == -1 ? valueFontSize : self.valueDecimalFontSize], NSForegroundColorAttributeName: self.fontColor, NSParagraphStyleAttributeName: textStyle};
    NSRange decimalRange = NSMakeRange(decimalLocation, text.length - decimalLocation);
    [text setAttributes:valueDecimalFontAttributes range:decimalRange];
  }
  
  // ad the unit only if specified
  if (self.showUnitString) {
    NSDictionary* unitFontAttributes = @{NSFontAttributeName: [UIFont fontWithName: self.unitFontName size:self.unitFontSize == -1 ? CGRectGetHeight(rect)/7 : self.unitFontSize], NSForegroundColorAttributeName: self.fontColor, NSParagraphStyleAttributeName: textStyle};
    
    NSAttributedString* unit =
    [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@", self.unitString] attributes:unitFontAttributes];
    [text appendAttributedString:unit];
  }
  
  CGSize percentSize = [text size];
  CGPoint textCenter = CGPointMake(
    CGRectGetMidX(rect)-percentSize.width/2 + self.textOffset.x,
    CGRectGetMidY(rect)-percentSize.height/2 + self.textOffset.y
  );
  
  [text drawAtPoint:textCenter];
}

#pragma mark - Override methods to support animations

+ (BOOL)needsDisplayForKey:(NSString *)key {
    if ([key isEqualToString:@"value"]) {
        return YES;
    }
    return [super needsDisplayForKey:key];
}

- (id<CAAction>)actionForKey:(NSString *)event{
    if ([self presentationLayer] != nil) {
        if ([event isEqualToString:@"value"]) {  
            id animation = [super actionForKey:@"backgroundColor"];
            
            if (animation == nil || [animation isEqual:[NSNull null]])
            {
                [self setNeedsDisplay];
                return [NSNull null];
            }
            [animation setKeyPath:event];
            [animation setFromValue:[self.presentationLayer valueForKey:@"value"]];
            [animation setToValue:nil];
            return animation;
        }
    }
    
    return [super actionForKey:event];
}

@end


================================================
FILE: Pod/Classes/MBCircularProgressBarView.h
================================================
//
//  MBCircularProgressBarView.h
//  MBCircularProgressBar
//
//  Created by Mati Bot on 7/2/15.
//  Copyright (c) 2015 Mati Bot All rights reserved.
//

@import UIKit;

IB_DESIGNABLE
/**
 * The MBCircularProgressBarView class is a UIView subclass that draws a circular progress bar with configurable attributes.
 * You can change the attributes within the Interface Builder using IBDesignables (https://developer.apple.com/library/ios/recipes/xcode_help-IB_objects_media/Chapters/CreatingaLiveViewofaCustomObject.html )
 */
@interface MBCircularProgressBarView : UIView

/**
 * Should show value string 
 */
@property (nonatomic,assign) IBInspectable BOOL      showValueString;

/**
 * The value of the progress bar (Animatable property using [UIView animateWithDuration:]) 
 */
@property (nonatomic,assign) IBInspectable CGFloat   value;

/** 
 * The maximum possible value, used to calculate the progress (value/maxValue)	[0,∞) 
 */
@property (nonatomic,assign) IBInspectable CGFloat   maxValue;

/**
 * Padding from borders
 */
@property (nonatomic,assign) IBInspectable CGFloat borderPadding;

/* 
 * Number of decimal places of the value [0,∞) 
 */
@property (nonatomic,assign) IBInspectable NSInteger decimalPlaces;

/** 
 * The name of the font of the value string
 */
@property (nonatomic,copy)   IBInspectable NSString  *valueFontName;

/**
 * The font size of the value text	[0,∞) 
 */
@property (nonatomic,assign) IBInspectable CGFloat   valueFontSize;

/** 
 * The value to be displayed in the center 
 */
@property (nonatomic,assign) IBInspectable CGFloat   valueDecimalFontSize;

/**
 * Should show unit screen 
 */
@property (nonatomic,assign) IBInspectable BOOL      showUnitString;

/**
 * The name of the font of the unit string 
 */
@property (nonatomic,copy)   IBInspectable NSString  *unitFontName;

/**
 * The font size of the unit text	[0,∞) 
 */
@property (nonatomic,assign) IBInspectable CGFloat   unitFontSize;

/** 
 * The string that represents the units, usually % 
 */
@property (nonatomic,copy)   IBInspectable NSString  *unitString;

/** 
 * The color of the value and unit text 
 */
@property (nonatomic,strong) IBInspectable UIColor   *fontColor;

/**
 * Progress bar appearance type
 */
@property (nonatomic,assign) IBInspectable NSInteger progressAppearanceType;

/**
 * Progress bar rotation (Clockewise)	[0,100] 
 */
@property (nonatomic,assign) IBInspectable CGFloat   progressRotationAngle;

/** 
 * Set a partial angle for the progress bar	[0,100] 
 */
@property (nonatomic,assign) IBInspectable CGFloat   progressAngle;

/** 
 * The width of the progress bar (user space units)	[0,∞)
 */
@property (nonatomic,assign) IBInspectable CGFloat   progressLineWidth;

/** 
 * The color of the progress bar 
 */
@property (nonatomic,strong) IBInspectable UIColor   *progressColor;

/**
 * The color of the progress bar frame 
 */
@property (nonatomic,strong) IBInspectable UIColor   *progressStrokeColor;

/**
 * The shape of the progress bar cap	{kCGLineCapButt=0, kCGLineCapRound=1, kCGLineCapSquare=2} 
 */
@property (nonatomic,assign) IBInspectable NSInteger progressCapType;

/**
 * The width of the background bar (user space units)	[0,∞) 
 */
@property (nonatomic,assign) IBInspectable CGFloat   emptyLineWidth;

/**
 * The color of the background bar 
 */
@property (nonatomic,strong) IBInspectable UIColor   *emptyLineColor;

/**
 * The color of the background bar stroke color
 */
@property (nonatomic,strong) IBInspectable UIColor   *emptyLineStrokeColor;

/**
 * The shape of the background bar cap	{kCGLineCapButt=0, kCGLineCapRound=1, kCGLineCapSquare=2} 
 */
@property (nonatomic,assign) IBInspectable NSInteger emptyCapType;

/**
 * The offset to apply to the unit / value text
 */
@property (nonatomic,assign) IBInspectable CGPoint textOffset;


/**
 * The bool value to apply to if its counddown or not
 */
@property (nonatomic,assign) IBInspectable BOOL      countdown;

@end


================================================
FILE: Pod/Classes/MBCircularProgressBarView.m
================================================
//
//  MBCircularProgressBarView.m
//  MBCircularProgressBar
//
//  Created by Mati Bot on 7/2/15.
//  Copyright (c) 2015 Mati Bot All rights reserved.
//

#import "MBCircularProgressBarView.h"
#import "MBCircularProgressBarLayer.h"

@implementation MBCircularProgressBarView

-(instancetype)initWithCoder:(NSCoder *)coder{
    self = [super initWithCoder:coder];
    if (self) {
        [self initView:[self frame]];
    }
    return self;
}

-(instancetype)init{
    self = [super init];
    if (self) {
        [self initView:CGRectNull];
    }
    return self;
}

-(instancetype)initWithFrame:(CGRect)frame{
    self = [super initWithFrame:frame];
    if (self) {
        [self initView:frame];
    }
    return self;
}

-(void)initView:(CGRect)frame{
    //Without setting the content scale factor the layer would be pixelated
    [self setContentScaleFactor:[[UIScreen mainScreen] scale]];
    
    //This mode forces redrawing when bounds change (e.g. bounds change in animation)
    [self setContentMode:UIViewContentModeRedraw];
    
    [self setUnitString:@"%"];
    [self setValue:0.f];
    [self setMaxValue:100.f];
    [self setBorderPadding:1.f];
    [self setProgressAppearanceType:0];
    [self setProgressRotationAngle:0.f];
    [self setProgressStrokeColor:[UIColor orangeColor]];
    [self setProgressColor:[UIColor orangeColor]];
    [self setProgressCapType:kCGLineCapRound];
    [self setEmptyLineColor:[UIColor lightGrayColor]];
    [self setEmptyLineStrokeColor:[UIColor lightGrayColor]];
    [self setFontColor:[UIColor blackColor]];
    [self setEmptyLineWidth:1.f];
    [self setProgressLineWidth:14.f];
    [self setProgressAngle:80.f];
    [self setUnitFontSize:-1];
    [self setValueFontSize:-1];
    [self setValueDecimalFontSize:-1];
    [self setDecimalPlaces:0];
    [self setShowUnitString:YES];
    [self setShowValueString:YES];
    [self setValueFontName:@"HelveticaNeue-Thin"];
    [self setTextOffset:CGPointMake(0, 0)];
    [self setUnitFontName:@"HelveticaNeue-Thin"];
    [self setCountdown:NO];
}

#pragma mark - Getters and Setters for layer properties

-(void)setShowValueString:(BOOL)showValueString{
  self.progressLayer.showValueString = showValueString;
  [self.layer setNeedsDisplay];
}

-(BOOL)showValueString{
  return self.progressLayer.showValueString;
}

-(void)setValue:(CGFloat)value{
    self.progressLayer.value = value;
    
    //CALayer autogenerated setter using @dynamic doesn't refresh the layer when the value is 0
    if(value == 0){
        [self.layer setNeedsDisplay];
    }
}

-(CGFloat)value{
    return self.progressLayer.value;
}

-(void)setMaxValue:(CGFloat)maxValue{
    self.progressLayer.maxValue = maxValue;
    
    //CALayer autogenerated setter using @dynamic doesn't refresh the layer when the value is 0
    if(maxValue == 0){
        [self.layer setNeedsDisplay];
    }
}

-(CGFloat)maxValue{
    return self.progressLayer.maxValue;
}

-(void)setBorderPadding:(CGFloat)borderPadding{
    self.progressLayer.borderPadding = borderPadding;
}

-(CGFloat)borderPadding{
    return self.progressLayer.borderPadding;
}

-(void)setProgressLineWidth:(CGFloat)width{
    self.progressLayer.progressLineWidth = width;
}

-(CGFloat)progressLineWidth{
    return self.progressLayer.progressLineWidth;
}

-(void)setEmptyLineWidth:(CGFloat)width{
    self.progressLayer.emptyLineWidth = width;
}

-(CGFloat)emptyLineWidth{
    return self.progressLayer.emptyLineWidth;
}

-(void)setProgressColor:(UIColor*)color{
    self.progressLayer.progressColor = color;
}

-(UIColor*)progressColor{
    return self.progressLayer.progressColor;
}

-(void)setUnitFontSize:(CGFloat)unitFontSize{
    self.progressLayer.unitFontSize = unitFontSize;
}

-(CGFloat)unitFontSize{
    return self.progressLayer.unitFontSize;
}

-(void)setValueFontSize:(CGFloat)valueFontSize{
    self.progressLayer.valueFontSize = valueFontSize;
}

-(CGFloat)valueFontSize{
    return self.progressLayer.valueFontSize;
}

-(void)setUnitString:(NSString *)unitString{
    self.progressLayer.unitString = unitString;
}

-(NSString*)unitString{
    return self.progressLayer.unitString;
}

-(void)setFontColor:(UIColor*)color{
    self.progressLayer.fontColor = color;
}

-(UIColor*)fontColor{
    return self.progressLayer.fontColor;
}

-(void)setProgressStrokeColor:(UIColor*)color{
    self.progressLayer.progressStrokeColor = color;
}

-(UIColor*)progressStrokeColor{
    return self.progressLayer.progressStrokeColor;
}

-(void)setEmptyLineColor:(UIColor *)emptyLineColor{
    self.progressLayer.emptyLineColor = emptyLineColor;
}

-(UIColor*)emptyLineColor{
    return self.progressLayer.emptyLineColor;
}

-(void)setEmptyLineStrokeColor:(UIColor *)emptyLineStrokeColor{
    self.progressLayer.emptyLineStrokeColor = emptyLineStrokeColor;
}

-(UIColor*)emptyLineStrokeColor{
    return self.progressLayer.emptyLineStrokeColor;
}

-(void)setProgressAngle:(CGFloat)progressAngle{
    self.progressLayer.progressAngle = progressAngle;
}

-(CGFloat)progressAngle{
    return self.progressLayer.progressAngle;
}

-(void)setProgressAppearanceType:(NSInteger)progressAppearanceType{
    self.progressLayer.progressAppearanceType = [self safeProgressAppearanceType:progressAppearanceType];
}

-(NSInteger)progressAppearanceType{
    return self.progressLayer.progressAppearanceType;
}

-(MBCircularProgressBarAppearanceType)safeProgressAppearanceType:(NSInteger)progressAppearanceType{
    if(MBCircularProgressBarAppearanceTypeOverlaysEmptyLine <= progressAppearanceType  && progressAppearanceType <= MBCircularProgressBarAppearanceTypeUnderEmptyLine){
        return (MBCircularProgressBarAppearanceType)progressAppearanceType;
    }
    
    return MBCircularProgressBarAppearanceTypeOverlaysEmptyLine;
}

-(void)setProgressRotationAngle:(CGFloat)progressRootationAngle{
    self.progressLayer.progressRotationAngle = progressRootationAngle;
}

-(CGFloat)progressRotationAngle{
    return self.progressLayer.progressRotationAngle;
}

-(void)setProgressCapType:(NSInteger)progressCapType{
    self.progressLayer.progressCapType = [self safeCapType:progressCapType];
}

-(NSInteger)progressCapType{
    return self.progressLayer.progressCapType;
}

-(void)setEmptyCapType:(NSInteger)emptyCapType{
    self.progressLayer.emptyCapType = [self safeCapType:emptyCapType];
}

-(NSInteger)emptyCapType{
    return self.progressLayer.emptyCapType;
}

-(CGLineCap)safeCapType:(NSInteger)type{
    if(kCGLineCapButt <= type && type <= kCGLineCapSquare){
        return (CGLineCap)type;
    }
    
    return kCGLineCapRound;
}

-(void)setDecimalPlaces:(NSInteger)decimalPlaces{
  self.progressLayer.decimalPlaces = decimalPlaces;
}
-(NSInteger)decimalPlaces{
  return self.progressLayer.decimalPlaces;
}

-(void)setValueDecimalFontSize:(CGFloat)valueDecimalFontSize{
  self.progressLayer.valueDecimalFontSize = valueDecimalFontSize;
}

-(CGFloat)valueDecimalFontSize{
  return self.progressLayer.valueDecimalFontSize;
}

-(void)setUnitFontName:(NSString *)unitFontName{
  self.progressLayer.unitFontName = unitFontName;
}

-(NSString *)unitFontName{
  return self.progressLayer.unitFontName;
}

-(void)setValueFontName:(NSString *)valueFontName{
  self.progressLayer.valueFontName = valueFontName;
}

-(NSString *)valueFontName{
  return self.progressLayer.valueFontName;
}

-(void)setShowUnitString:(BOOL)showUnitString{
  self.progressLayer.showUnitString = showUnitString;
}

-(BOOL)showUnitString{
  return self.progressLayer.showUnitString;
}

-(void)setTextOffset:(CGPoint)textOffset{
  self.progressLayer.textOffset = textOffset;
}

-(CGPoint)textOffset{
  return self.progressLayer.textOffset;
}

-(void)setCountdown:(BOOL)countdown {
  self.progressLayer.countdown = countdown;
}

-(BOOL)countdown {
  return self.progressLayer.countdown;
}

#pragma mark - CALayer

-(MBCircularProgressBarLayer*)progressLayer{
    MBCircularProgressBarLayer* layer = (MBCircularProgressBarLayer*) self.layer;
    return layer;
}

+ (Class) layerClass {
    return [MBCircularProgressBarLayer class];
}

@end


================================================
FILE: README.md
================================================
[![Version](https://img.shields.io/cocoapods/v/MBCircularProgressBar.svg?style=flat)](http://cocoapods.org/pods/MBCircularProgressBar)
[![License](https://img.shields.io/cocoapods/l/MBCircularProgressBar.svg?style=flat)](http://cocoapods.org/pods/MBCircularProgressBar)
[![Platform](https://img.shields.io/cocoapods/p/MBCircularProgressBar.svg?style=flat)](http://cocoapods.org/pods/MBCircularProgressBar)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Analytics](https://ga-beacon.appspot.com/UA-66922648-1/matibot/MBCircularProgressBar?pixel)](https://github.com/matibot/MBCircularProgressBar)

If you use MBCircularProgressBar, please tell me and I will add your app here.


![](https://raw.github.com/matibot/MBCircularProgressBar/0.2/Readme/example.png)
![](https://raw.github.com/matibot/MBCircularProgressBar/0.2/Readme/MBCircularProgressBar.gif)

## Usage

To run the example project, clone the repo, and run `pod update` from the Example directory first.

## Installation

### Cocoapods

MBCircularProgressBar is available through [CocoaPods](http://cocoapods.org).

To install it, simply add the following lines to your Podfile:

* Add this line to the begining of your Podfile in order to support @IBDesignable. More info [here](http://blog.cocoapods.org/CocoaPods-0.36/) (Thanks to: [@StevenMasini](https://github.com/StevenMasini))

```ruby
use_frameworks!
```

* Add this line so with every Pod install/update cocoapods would download the library intro your project:

```ruby
pod "MBCircularProgressBar"
```

### Installation with Carthage

[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with [Homebrew](http://brew.sh/) using the following command:

```bash
$ brew update
$ brew install carthage
```

To integrate MBCircularProgressBar into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "MatiBot/MBCircularProgressBar"
```

Run `carthage update` to build the framework and drag the built `MBCircularProgressBar.framework` into your Xcode project.


### Directly

You can also download the MBCircularProgressBar{View,Layer}.{m,h} files into your project directly


## Properties

Property name | Property type | Description | Range
------------ | ------------- | ------------- | -------------
value | CGFloat | The value to be displayed in the center | [0,maxValue]
maxValue | CGFloat | The maximum possible value, used to calculate the progress (value/maxValue)  | [0,∞)
showValueString | BOOL | Should show value string |
showUnitString | BOOL | Should show unit string |
valueFontName | NSString | The name of the font of the value string | Any valid font name
valueFontSize | CGFloat | The font size of the value text  | [0,∞)
valueFontName | NSString | The name of the font of the unit string | Any valid font name
unitFontSize | CGFloat | The font size of the unit text | [0,∞)
unitString | NSString | The string that represents the units, usually % |
fontColor | UIColor | The color of the value and unit text |
decimalPlaces | NSInteger | Number of decimal places of the value | [0,∞)
progressRotationAngle | CGFloat | Progress bar rotation (Clockewise)| [0,100]
progressAngle | CGFloat | Set a partial angle for the progress bar | [0,100]
progressLineWidth | CGFloat | The width of the progress bar (user space units)  | [0,∞)
progressColor | UIColor | The color of the progress bar |
progressStrokeColor | UIColor | The color of the progress bar frame  |
progressCapType | NSInteger | The shape of the progress bar cap | {kCGLineCapButt=0, kCGLineCapRound=1, kCGLineCapSquare=2}
emptyLineWidth | CGFloat | The width of the background bar (user space units) | [0,∞)
emptyLineColor | UIColor | The color of the background bar |
emptyCapType | CGFloat | The shape of the background bar cap | {kCGLineCapButt=0, kCGLineCapRound=1, kCGLineCapSquare=2}
textOffset | CGPoint | The offset to apply to the unit / value text | (0,0) = center of the circle

## Animation

In order to animate a change in the progress bar you should nest the value property manipulation in a `[UIView animateWithDuration:]` method

```objc
    [UIView animateWithDuration:1.f animations:^{
        self.progressBar.value = 55.f;
    }];
```
![](https://raw.github.com/matibot/MBCircularProgressBar/master/Readme/animation.gif)

## References

[[iOS][Swift] MBCircularProgressBar で円形のプログレスバーを実現](http://dev.classmethod.jp/smartphone/mbcircularprogressbar/)  by [@cocominap](https://twitter.com/cocominap) (in Japanese)

## Author

Mati Bot, os@mati.bot, [@b0tnik](https://twitter.com/b0tnik)

## Apps that use it:

[20 Hours](https://itunes.apple.com/us/app/id1141979499)

## License

MBCircularProgressBar is available under the MIT license. See the LICENSE file for more info.
Download .txt
gitextract_36t2c59r/

├── .gitignore
├── .travis.yml
├── Example/
│   ├── MBCircularProgressBar/
│   │   ├── Images.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── LaunchImage.launchimage/
│   │   │       └── Contents.json
│   │   ├── Launch Screen.storyboard
│   │   ├── MBAppDelegate.h
│   │   ├── MBAppDelegate.m
│   │   ├── MBCircularProgressBar-Info.plist
│   │   ├── MBCircularProgressBar-Prefix.pch
│   │   ├── MBViewController.h
│   │   ├── MBViewController.m
│   │   ├── Main.storyboard
│   │   ├── en.lproj/
│   │   │   └── InfoPlist.strings
│   │   └── main.m
│   ├── MBCircularProgressBar.xcodeproj/
│   │   ├── project.pbxproj
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── MBCircularProgressBar-Example.xcscheme
│   ├── MBCircularProgressBar.xcworkspace/
│   │   ├── contents.xcworkspacedata
│   │   └── xcshareddata/
│   │       └── MBCircularProgressBar.xcscmblueprint
│   ├── Podfile
│   ├── Pods/
│   │   ├── Local Podspecs/
│   │   │   └── MBCircularProgressBar.podspec.json
│   │   ├── Pods.xcodeproj/
│   │   │   ├── project.pbxproj
│   │   │   └── xcshareddata/
│   │   │       └── xcschemes/
│   │   │           └── MBCircularProgressBar.xcscheme
│   │   └── Target Support Files/
│   │       ├── MBCircularProgressBar/
│   │       │   ├── Info.plist
│   │       │   ├── MBCircularProgressBar-dummy.m
│   │       │   ├── MBCircularProgressBar-prefix.pch
│   │       │   ├── MBCircularProgressBar-umbrella.h
│   │       │   ├── MBCircularProgressBar.modulemap
│   │       │   ├── MBCircularProgressBar.xcconfig
│   │       │   └── ResourceBundle-MBCircularProgressBar-Info.plist
│   │       ├── Pods-MBCircularProgressBar_Example/
│   │       │   ├── Info.plist
│   │       │   ├── Pods-MBCircularProgressBar_Example-acknowledgements.markdown
│   │       │   ├── Pods-MBCircularProgressBar_Example-acknowledgements.plist
│   │       │   ├── Pods-MBCircularProgressBar_Example-dummy.m
│   │       │   ├── Pods-MBCircularProgressBar_Example-frameworks.sh
│   │       │   ├── Pods-MBCircularProgressBar_Example-resources.sh
│   │       │   ├── Pods-MBCircularProgressBar_Example-umbrella.h
│   │       │   ├── Pods-MBCircularProgressBar_Example.debug.xcconfig
│   │       │   ├── Pods-MBCircularProgressBar_Example.modulemap
│   │       │   └── Pods-MBCircularProgressBar_Example.release.xcconfig
│   │       └── Pods-MBCircularProgressBar_Tests/
│   │           ├── Info.plist
│   │           ├── Pods-MBCircularProgressBar_Tests-acknowledgements.markdown
│   │           ├── Pods-MBCircularProgressBar_Tests-acknowledgements.plist
│   │           ├── Pods-MBCircularProgressBar_Tests-dummy.m
│   │           ├── Pods-MBCircularProgressBar_Tests-frameworks.sh
│   │           ├── Pods-MBCircularProgressBar_Tests-resources.sh
│   │           ├── Pods-MBCircularProgressBar_Tests-umbrella.h
│   │           ├── Pods-MBCircularProgressBar_Tests.debug.xcconfig
│   │           ├── Pods-MBCircularProgressBar_Tests.modulemap
│   │           └── Pods-MBCircularProgressBar_Tests.release.xcconfig
│   └── Tests/
│       ├── Tests-Info.plist
│       ├── Tests-Prefix.pch
│       ├── Tests.m
│       └── en.lproj/
│           └── InfoPlist.strings
├── LICENSE
├── MBCircularProgressBar.podspec
├── Pod/
│   ├── Assets/
│   │   └── .gitkeep
│   └── Classes/
│       ├── .gitkeep
│       ├── MBCircularProgressBarLayer.h
│       ├── MBCircularProgressBarLayer.m
│       ├── MBCircularProgressBarView.h
│       └── MBCircularProgressBarView.m
└── README.md
Condensed preview — 62 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (205K chars).
[
  {
    "path": ".gitignore",
    "chars": 494,
    "preview": "# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!defau"
  },
  {
    "path": ".travis.yml",
    "chars": 664,
    "preview": "# references:\n# * http://www.objc.io/issue-6/travis-ci.html\n# * https://github.com/supermarin/xcpretty#usage\n\nlanguage: "
  },
  {
    "path": "Example/MBCircularProgressBar/Images.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 826,
    "preview": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\""
  },
  {
    "path": "Example/MBCircularProgressBar/Images.xcassets/LaunchImage.launchimage/Contents.json",
    "chars": 1101,
    "preview": "{\n  \"images\" : [\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"iphone\",\n      \"extent\" : \"full-screen\",\n     "
  },
  {
    "path": "Example/MBCircularProgressBar/Launch Screen.storyboard",
    "chars": 4425,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "Example/MBCircularProgressBar/MBAppDelegate.h",
    "chars": 283,
    "preview": "//\n//  MBAppDelegate.h\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 07/19/2015.\n//  Copyright (c) 2015 Mati B"
  },
  {
    "path": "Example/MBCircularProgressBar/MBAppDelegate.m",
    "chars": 2016,
    "preview": "//\n//  MBAppDelegate.m\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 07/19/2015.\n//  Copyright (c) 2015 Mati B"
  },
  {
    "path": "Example/MBCircularProgressBar/MBCircularProgressBar-Info.plist",
    "chars": 1564,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/MBCircularProgressBar/MBCircularProgressBar-Prefix.pch",
    "chars": 321,
    "preview": "//\n//  Prefix header\n//\n//  The contents of this file are implicitly included at the beginning of every source file.\n//\n"
  },
  {
    "path": "Example/MBCircularProgressBar/MBViewController.h",
    "chars": 221,
    "preview": "//\n//  MBViewController.h\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 07/19/2015.\n//  Copyright (c) 2015 Mat"
  },
  {
    "path": "Example/MBCircularProgressBar/MBViewController.m",
    "chars": 703,
    "preview": "//\n//  MBViewController.m\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 07/19/2015.\n//  Copyright (c) 2015 Mat"
  },
  {
    "path": "Example/MBCircularProgressBar/Main.storyboard",
    "chars": 7372,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3"
  },
  {
    "path": "Example/MBCircularProgressBar/en.lproj/InfoPlist.strings",
    "chars": 45,
    "preview": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "Example/MBCircularProgressBar/main.m",
    "chars": 342,
    "preview": "//\n//  main.m\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 07/19/2015.\n//  Copyright (c) 2015 Mati Bot. All r"
  },
  {
    "path": "Example/MBCircularProgressBar.xcodeproj/project.pbxproj",
    "chars": 29607,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
  },
  {
    "path": "Example/MBCircularProgressBar.xcodeproj/xcshareddata/xcschemes/MBCircularProgressBar-Example.xcscheme",
    "chars": 3915,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0600\"\n   version = \"1.3\">\n   <BuildAction\n      "
  },
  {
    "path": "Example/MBCircularProgressBar.xcworkspace/contents.xcworkspacedata",
    "chars": 239,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:MBCircularProg"
  },
  {
    "path": "Example/MBCircularProgressBar.xcworkspace/xcshareddata/MBCircularProgressBar.xcscmblueprint",
    "chars": 1718,
    "preview": "{\n  \"DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey\" : \"13A67F02CED68E0740A1F3D357DF5EAA09C1623E\",\n  \"DVTS"
  },
  {
    "path": "Example/Podfile",
    "chars": 331,
    "preview": "source 'https://github.com/CocoaPods/Specs.git'\n\nplatform :ios, '9.0'\ninhibit_all_warnings!\n\nxcodeproj 'MBCircularProgre"
  },
  {
    "path": "Example/Pods/Local Podspecs/MBCircularProgressBar.podspec.json",
    "chars": 932,
    "preview": "{\n  \"name\": \"MBCircularProgressBar\",\n  \"version\": \"0.3.4\",\n  \"summary\": \"a circular animatable & IB highly customizable "
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/project.pbxproj",
    "chars": 58225,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/MBCircularProgressBar.xcscheme",
    "chars": 2949,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0810\"\n   version = \"1.3\">\n   <BuildAction\n      "
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/Info.plist",
    "chars": 828,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-dummy.m",
    "chars": 146,
    "preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_MBCircularProgressBar : NSObject\n@end\n@implementation PodsDummy_M"
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-prefix.pch",
    "chars": 48,
    "preview": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar-umbrella.h",
    "chars": 241,
    "preview": "#import <UIKit/UIKit.h>\n\n#import \"MBCircularProgressBarLayer.h\"\n#import \"MBCircularProgressBarView.h\"\n\nFOUNDATION_EXPORT"
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.modulemap",
    "chars": 132,
    "preview": "framework module MBCircularProgressBar {\n  umbrella header \"MBCircularProgressBar-umbrella.h\"\n\n  export *\n  module * { e"
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/MBCircularProgressBar.xcconfig",
    "chars": 453,
    "preview": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited"
  },
  {
    "path": "Example/Pods/Target Support Files/MBCircularProgressBar/ResourceBundle-MBCircularProgressBar-Info.plist",
    "chars": 733,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Info.plist",
    "chars": 828,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-acknowledgements.markdown",
    "chars": 1233,
    "preview": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## MBCircularProgressBar\n\nCopyrig"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-acknowledgements.plist",
    "chars": 2066,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-dummy.m",
    "chars": 172,
    "preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_MBCircularProgressBar_Example : NSObject\n@end\n@implementatio"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-frameworks.sh",
    "chars": 3661,
    "preview": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_D"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-resources.sh",
    "chars": 5137,
    "preview": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/re"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example-umbrella.h",
    "chars": 190,
    "preview": "#import <UIKit/UIKit.h>\n\n\nFOUNDATION_EXPORT double Pods_MBCircularProgressBar_ExampleVersionNumber;\nFOUNDATION_EXPORT co"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.debug.xcconfig",
    "chars": 583,
    "preview": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar\"\nGCC_PREPROCESSOR_DEFINITIONS"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.modulemap",
    "chars": 158,
    "preview": "framework module Pods_MBCircularProgressBar_Example {\n  umbrella header \"Pods-MBCircularProgressBar_Example-umbrella.h\"\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Example/Pods-MBCircularProgressBar_Example.release.xcconfig",
    "chars": 583,
    "preview": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar\"\nGCC_PREPROCESSOR_DEFINITIONS"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Info.plist",
    "chars": 828,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-acknowledgements.markdown",
    "chars": 1233,
    "preview": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## MBCircularProgressBar\n\nCopyrig"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-acknowledgements.plist",
    "chars": 2066,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-dummy.m",
    "chars": 168,
    "preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_MBCircularProgressBar_Tests : NSObject\n@end\n@implementation "
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-frameworks.sh",
    "chars": 3661,
    "preview": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_D"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-resources.sh",
    "chars": 5137,
    "preview": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/re"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests-umbrella.h",
    "chars": 186,
    "preview": "#import <UIKit/UIKit.h>\n\n\nFOUNDATION_EXPORT double Pods_MBCircularProgressBar_TestsVersionNumber;\nFOUNDATION_EXPORT cons"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.debug.xcconfig",
    "chars": 583,
    "preview": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar\"\nGCC_PREPROCESSOR_DEFINITIONS"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.modulemap",
    "chars": 154,
    "preview": "framework module Pods_MBCircularProgressBar_Tests {\n  umbrella header \"Pods-MBCircularProgressBar_Tests-umbrella.h\"\n\n  e"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-MBCircularProgressBar_Tests/Pods-MBCircularProgressBar_Tests.release.xcconfig",
    "chars": 583,
    "preview": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/MBCircularProgressBar\"\nGCC_PREPROCESSOR_DEFINITIONS"
  },
  {
    "path": "Example/Tests/Tests-Info.plist",
    "chars": 698,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Tests/Tests-Prefix.pch",
    "chars": 132,
    "preview": "//  The contents of this file are implicitly included at the beginning of every test case source file.\n\n#ifdef __OBJC__\n"
  },
  {
    "path": "Example/Tests/Tests.m",
    "chars": 547,
    "preview": "//\n//  MBCircularProgressBarTests.m\n//  MBCircularProgressBarTests\n//\n//  Created by Mati Bot on 07/19/2015.\n//  Copyrig"
  },
  {
    "path": "Example/Tests/en.lproj/InfoPlist.strings",
    "chars": 45,
    "preview": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "LICENSE",
    "chars": 1066,
    "preview": "Copyright (c) 2015 Mati Bot <os@mati.bot>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\n"
  },
  {
    "path": "MBCircularProgressBar.podspec",
    "chars": 1450,
    "preview": "#\n# Be sure to run `pod lib lint MBCircularProgressBar.podspec' to ensure this is a\n# valid spec and remove all comments"
  },
  {
    "path": "Pod/Assets/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "Pod/Classes/.gitkeep",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "Pod/Classes/MBCircularProgressBarLayer.h",
    "chars": 3660,
    "preview": "//\n//  MBCircularProgressBarLayer.h\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 7/9/15.\n//  Copyright (c) 20"
  },
  {
    "path": "Pod/Classes/MBCircularProgressBarLayer.m",
    "chars": 8294,
    "preview": "//\n//  MBCircularProgressBarLayer.m\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 7/9/15.\n//  Copyright (c) 20"
  },
  {
    "path": "Pod/Classes/MBCircularProgressBarView.h",
    "chars": 3932,
    "preview": "//\n//  MBCircularProgressBarView.h\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 7/2/15.\n//  Copyright (c) 201"
  },
  {
    "path": "Pod/Classes/MBCircularProgressBarView.m",
    "chars": 8026,
    "preview": "//\n//  MBCircularProgressBarView.m\n//  MBCircularProgressBar\n//\n//  Created by Mati Bot on 7/2/15.\n//  Copyright (c) 201"
  },
  {
    "path": "README.md",
    "chars": 4937,
    "preview": "[![Version](https://img.shields.io/cocoapods/v/MBCircularProgressBar.svg?style=flat)](http://cocoapods.org/pods/MBCircul"
  }
]

About this extraction

This page contains the full source code of the matibot/MBCircularProgressBar GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 62 files (178.6 KB), approximately 59.0k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!