├── .gitignore ├── Crashlytics.framework ├── Crashlytics ├── Headers ├── Modules │ └── module.modulemap ├── Resources ├── Versions │ ├── A │ │ ├── Crashlytics │ │ ├── Headers │ │ │ └── Crashlytics.h │ │ └── Resources │ │ │ └── Info.plist │ └── Current ├── run └── submit ├── Hydro.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Hydro.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── Hydro.xcscmblueprint ├── Hydro ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Button │ ├── HydroButton.h │ └── HydroButton.m ├── Cell │ ├── StationTableViewCell.h │ └── StationTableViewCell.m ├── GVUserDefaults+Hydro.h ├── GVUserDefaults+Hydro.m ├── Hydro.entitlements ├── HydroHelper │ ├── HydroHelper.h │ └── HydroHelper.m ├── Images.xcassets │ ├── 1.imageset │ │ ├── 1.pdf │ │ └── Contents.json │ ├── 2.imageset │ │ ├── 2.pdf │ │ └── Contents.json │ ├── 3.imageset │ │ ├── 3.pdf │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-ipad_76.png │ │ ├── icon-ipad_76@2x.png │ │ ├── icon-iphone_29.png │ │ ├── icon-iphone_29@2x-1.png │ │ ├── icon-iphone_29@2x.png │ │ ├── icon-iphone_29@3x.png │ │ ├── icon-iphone_40@2x-1.png │ │ ├── icon-iphone_40@2x.png │ │ ├── icon-iphone_40@3x-1.png │ │ ├── icon-iphone_40@3x.png │ │ ├── icon-iphone_60@2x.png │ │ └── icon-iphone_60@3x.png │ ├── Background.imageset │ │ ├── Background.pdf │ │ └── Contents.json │ ├── Button + Connect.imageset │ │ ├── Button + Connect.pdf │ │ └── Contents.json │ ├── Button.imageset │ │ ├── Button.pdf │ │ └── Contents.json │ ├── Button_wire.imageset │ │ ├── Button_wire.pdf │ │ └── Contents.json │ ├── Check.imageset │ │ ├── Check.pdf │ │ └── Contents.json │ ├── EM.imageset │ │ ├── Contents.json │ │ └── EM.pdf │ ├── HK.imageset │ │ ├── Contents.json │ │ └── HK.pdf │ ├── JP.imageset │ │ ├── Contents.json │ │ └── JP.pdf │ ├── Map.imageset │ │ ├── Contents.json │ │ └── World Map color.pdf │ ├── PW.imageset │ │ ├── Contents.json │ │ └── PW.pdf │ ├── World Map.imageset │ │ ├── Contents.json │ │ └── World Map.pdf │ ├── flag_sg.imageset │ │ ├── Contents.json │ │ └── flag_sg.pdf │ ├── flag_us.imageset │ │ ├── Contents.json │ │ └── flag_us.pdf │ └── logo.imageset │ │ ├── Contents.json │ │ └── logo.pdf ├── Info.plist ├── LoginViewController │ ├── LoginViewController.h │ └── LoginViewController.m ├── VCIPsecVPNManager.h ├── VCIPsecVPNManager.m ├── VCKetChain.h ├── VCKetChain.m ├── ViewController.h ├── ViewController.m ├── Views │ ├── InviteView.h │ ├── InviteView.m │ ├── locationView.h │ ├── locationView.m │ ├── scaleView.h │ ├── scaleView.m │ ├── stationView.h │ └── stationView.m ├── config.json.example ├── main.m └── stationDelegate │ ├── VPNStations.h │ └── VPNStations.m ├── HydroTests ├── HydroTests.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── GBPing │ ├── GBPing │ │ ├── GBPing.h │ │ ├── GBPing.m │ │ ├── GBPingSummary.h │ │ ├── GBPingSummary.m │ │ └── ICMPHeader.h │ ├── LICENSE │ └── README.md ├── GVUserDefaults │ ├── GVUserDefaults │ │ ├── GVUserDefaults.h │ │ └── GVUserDefaults.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── GBPing │ │ │ ├── GBPing.h │ │ │ ├── GBPingSummary.h │ │ │ └── ICMPHeader.h │ │ ├── GVUserDefaults │ │ │ └── GVUserDefaults.h │ │ ├── SAMTextField │ │ │ └── SAMTextField.h │ │ ├── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ └── SVProgressHUD.h │ │ ├── Shimmer │ │ │ ├── FBShimmering.h │ │ │ ├── FBShimmeringLayer.h │ │ │ └── FBShimmeringView.h │ │ ├── TPKeyboardAvoiding │ │ │ ├── TPKeyboardAvoidingCollectionView.h │ │ │ ├── TPKeyboardAvoidingScrollView.h │ │ │ ├── TPKeyboardAvoidingTableView.h │ │ │ └── UIScrollView+TPKeyboardAvoidingAdditions.h │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── GBPing │ │ ├── GBPing.h │ │ ├── GBPingSummary.h │ │ └── ICMPHeader.h │ │ ├── GVUserDefaults │ │ └── GVUserDefaults.h │ │ ├── SAMTextField │ │ └── SAMTextField.h │ │ ├── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ └── SVProgressHUD.h │ │ ├── Shimmer │ │ ├── FBShimmering.h │ │ ├── FBShimmeringLayer.h │ │ └── FBShimmeringView.h │ │ ├── TPKeyboardAvoiding │ │ ├── TPKeyboardAvoidingCollectionView.h │ │ ├── TPKeyboardAvoidingScrollView.h │ │ ├── TPKeyboardAvoidingTableView.h │ │ └── UIScrollView+TPKeyboardAvoidingAdditions.h │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── SAMTextField │ ├── LICENSE │ ├── Readme.markdown │ └── SAMTextField │ │ ├── SAMTextField.h │ │ └── SAMTextField.m ├── SVProgressHUD │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ └── SVProgressHUD.m ├── Shimmer │ ├── FBShimmering │ │ ├── FBShimmering.h │ │ ├── FBShimmeringLayer.h │ │ ├── FBShimmeringLayer.m │ │ ├── FBShimmeringView.h │ │ └── FBShimmeringView.m │ ├── LICENSE │ └── README.md ├── TPKeyboardAvoiding │ ├── LICENSE.txt │ ├── README.md │ └── TPKeyboardAvoiding │ │ ├── TPKeyboardAvoidingCollectionView.h │ │ ├── TPKeyboardAvoidingCollectionView.m │ │ ├── TPKeyboardAvoidingScrollView.h │ │ ├── TPKeyboardAvoidingScrollView.m │ │ ├── TPKeyboardAvoidingTableView.h │ │ ├── TPKeyboardAvoidingTableView.m │ │ ├── UIScrollView+TPKeyboardAvoidingAdditions.h │ │ └── UIScrollView+TPKeyboardAvoidingAdditions.m ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-Private.xcconfig │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ ├── GBPing │ │ ├── GBPing-Private.xcconfig │ │ ├── GBPing-dummy.m │ │ ├── GBPing-prefix.pch │ │ └── GBPing.xcconfig │ ├── GVUserDefaults │ │ ├── GVUserDefaults-Private.xcconfig │ │ ├── GVUserDefaults-dummy.m │ │ ├── GVUserDefaults-prefix.pch │ │ └── GVUserDefaults.xcconfig │ ├── Pods-Hydro │ │ ├── Pods-Hydro-acknowledgements.markdown │ │ ├── Pods-Hydro-acknowledgements.plist │ │ ├── Pods-Hydro-dummy.m │ │ ├── Pods-Hydro-resources.sh │ │ ├── Pods-Hydro.debug.xcconfig │ │ └── Pods-Hydro.release.xcconfig │ ├── SAMTextField │ │ ├── SAMTextField-Private.xcconfig │ │ ├── SAMTextField-dummy.m │ │ ├── SAMTextField-prefix.pch │ │ └── SAMTextField.xcconfig │ ├── SVProgressHUD │ │ ├── SVProgressHUD-Private.xcconfig │ │ ├── SVProgressHUD-dummy.m │ │ ├── SVProgressHUD-prefix.pch │ │ └── SVProgressHUD.xcconfig │ ├── Shimmer │ │ ├── Shimmer-Private.xcconfig │ │ ├── Shimmer-dummy.m │ │ ├── Shimmer-prefix.pch │ │ └── Shimmer.xcconfig │ ├── TPKeyboardAvoiding │ │ ├── TPKeyboardAvoiding-Private.xcconfig │ │ ├── TPKeyboardAvoiding-dummy.m │ │ ├── TPKeyboardAvoiding-prefix.pch │ │ └── TPKeyboardAvoiding.xcconfig │ └── pop │ │ ├── pop-Private.xcconfig │ │ ├── pop-dummy.m │ │ ├── pop-prefix.pch │ │ └── pop.xcconfig └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── README.md └── Today ├── Info.plist ├── MainInterface.storyboard ├── Today.entitlements ├── TodayViewController.h ├── TodayViewController.m ├── VPNButton.h └── VPNButton.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/.gitignore -------------------------------------------------------------------------------- /Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- 1 | Versions/Current/Crashlytics -------------------------------------------------------------------------------- /Crashlytics.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Crashlytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Crashlytics.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Crashlytics.framework/Versions/A/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Crashlytics.framework/Versions/A/Crashlytics -------------------------------------------------------------------------------- /Crashlytics.framework/Versions/A/Headers/Crashlytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Crashlytics.framework/Versions/A/Headers/Crashlytics.h -------------------------------------------------------------------------------- /Crashlytics.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Crashlytics.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Crashlytics.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Crashlytics.framework/run -------------------------------------------------------------------------------- /Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Hydro.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Hydro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hydro.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hydro.xcworkspace/xcshareddata/Hydro.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro.xcworkspace/xcshareddata/Hydro.xcscmblueprint -------------------------------------------------------------------------------- /Hydro/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/AppDelegate.h -------------------------------------------------------------------------------- /Hydro/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/AppDelegate.m -------------------------------------------------------------------------------- /Hydro/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Hydro/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Hydro/Button/HydroButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Button/HydroButton.h -------------------------------------------------------------------------------- /Hydro/Button/HydroButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Button/HydroButton.m -------------------------------------------------------------------------------- /Hydro/Cell/StationTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Cell/StationTableViewCell.h -------------------------------------------------------------------------------- /Hydro/Cell/StationTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Cell/StationTableViewCell.m -------------------------------------------------------------------------------- /Hydro/GVUserDefaults+Hydro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/GVUserDefaults+Hydro.h -------------------------------------------------------------------------------- /Hydro/GVUserDefaults+Hydro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/GVUserDefaults+Hydro.m -------------------------------------------------------------------------------- /Hydro/Hydro.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Hydro.entitlements -------------------------------------------------------------------------------- /Hydro/HydroHelper/HydroHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/HydroHelper/HydroHelper.h -------------------------------------------------------------------------------- /Hydro/HydroHelper/HydroHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/HydroHelper/HydroHelper.m -------------------------------------------------------------------------------- /Hydro/Images.xcassets/1.imageset/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/1.imageset/1.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/2.imageset/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/2.imageset/2.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/3.imageset/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/3.imageset/3.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-ipad_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-ipad_76.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-ipad_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-ipad_76@2x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29@2x-1.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29@2x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_29@3x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@2x-1.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@2x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@3x-1.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_40@3x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_60@2x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/AppIcon.appiconset/icon-iphone_60@3x.png -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Background.imageset/Background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Background.imageset/Background.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Background.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Button + Connect.imageset/Button + Connect.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Button + Connect.imageset/Button + Connect.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Button + Connect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Button + Connect.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Button.imageset/Button.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Button.imageset/Button.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Button.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Button_wire.imageset/Button_wire.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Button_wire.imageset/Button_wire.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Button_wire.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Button_wire.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Check.imageset/Check.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Check.imageset/Check.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Check.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/EM.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/EM.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/EM.imageset/EM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/EM.imageset/EM.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/HK.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/HK.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/HK.imageset/HK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/HK.imageset/HK.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/JP.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/JP.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/JP.imageset/JP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/JP.imageset/JP.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Map.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/Map.imageset/World Map color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/Map.imageset/World Map color.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/PW.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/PW.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/PW.imageset/PW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/PW.imageset/PW.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/World Map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/World Map.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/World Map.imageset/World Map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/World Map.imageset/World Map.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/flag_sg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/flag_sg.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/flag_sg.imageset/flag_sg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/flag_sg.imageset/flag_sg.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/flag_us.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/flag_us.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/flag_us.imageset/flag_us.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/flag_us.imageset/flag_us.pdf -------------------------------------------------------------------------------- /Hydro/Images.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Hydro/Images.xcassets/logo.imageset/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Images.xcassets/logo.imageset/logo.pdf -------------------------------------------------------------------------------- /Hydro/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Info.plist -------------------------------------------------------------------------------- /Hydro/LoginViewController/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/LoginViewController/LoginViewController.h -------------------------------------------------------------------------------- /Hydro/LoginViewController/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/LoginViewController/LoginViewController.m -------------------------------------------------------------------------------- /Hydro/VCIPsecVPNManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/VCIPsecVPNManager.h -------------------------------------------------------------------------------- /Hydro/VCIPsecVPNManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/VCIPsecVPNManager.m -------------------------------------------------------------------------------- /Hydro/VCKetChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/VCKetChain.h -------------------------------------------------------------------------------- /Hydro/VCKetChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/VCKetChain.m -------------------------------------------------------------------------------- /Hydro/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/ViewController.h -------------------------------------------------------------------------------- /Hydro/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/ViewController.m -------------------------------------------------------------------------------- /Hydro/Views/InviteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/InviteView.h -------------------------------------------------------------------------------- /Hydro/Views/InviteView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/InviteView.m -------------------------------------------------------------------------------- /Hydro/Views/locationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/locationView.h -------------------------------------------------------------------------------- /Hydro/Views/locationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/locationView.m -------------------------------------------------------------------------------- /Hydro/Views/scaleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/scaleView.h -------------------------------------------------------------------------------- /Hydro/Views/scaleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/scaleView.m -------------------------------------------------------------------------------- /Hydro/Views/stationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/stationView.h -------------------------------------------------------------------------------- /Hydro/Views/stationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/Views/stationView.m -------------------------------------------------------------------------------- /Hydro/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/config.json.example -------------------------------------------------------------------------------- /Hydro/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/main.m -------------------------------------------------------------------------------- /Hydro/stationDelegate/VPNStations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/stationDelegate/VPNStations.h -------------------------------------------------------------------------------- /Hydro/stationDelegate/VPNStations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Hydro/stationDelegate/VPNStations.m -------------------------------------------------------------------------------- /HydroTests/HydroTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/HydroTests/HydroTests.m -------------------------------------------------------------------------------- /HydroTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/HydroTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/GBPing/GBPing/GBPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/GBPing/GBPing.h -------------------------------------------------------------------------------- /Pods/GBPing/GBPing/GBPing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/GBPing/GBPing.m -------------------------------------------------------------------------------- /Pods/GBPing/GBPing/GBPingSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/GBPing/GBPingSummary.h -------------------------------------------------------------------------------- /Pods/GBPing/GBPing/GBPingSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/GBPing/GBPingSummary.m -------------------------------------------------------------------------------- /Pods/GBPing/GBPing/ICMPHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/GBPing/ICMPHeader.h -------------------------------------------------------------------------------- /Pods/GBPing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/LICENSE -------------------------------------------------------------------------------- /Pods/GBPing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GBPing/README.md -------------------------------------------------------------------------------- /Pods/GVUserDefaults/GVUserDefaults/GVUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GVUserDefaults/GVUserDefaults/GVUserDefaults.h -------------------------------------------------------------------------------- /Pods/GVUserDefaults/GVUserDefaults/GVUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GVUserDefaults/GVUserDefaults/GVUserDefaults.m -------------------------------------------------------------------------------- /Pods/GVUserDefaults/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GVUserDefaults/LICENSE -------------------------------------------------------------------------------- /Pods/GVUserDefaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/GVUserDefaults/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GBPing/GBPing.h: -------------------------------------------------------------------------------- 1 | ../../../GBPing/GBPing/GBPing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GBPing/GBPingSummary.h: -------------------------------------------------------------------------------- 1 | ../../../GBPing/GBPing/GBPingSummary.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GBPing/ICMPHeader.h: -------------------------------------------------------------------------------- 1 | ../../../GBPing/GBPing/ICMPHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GVUserDefaults/GVUserDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../GVUserDefaults/GVUserDefaults/GVUserDefaults.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SAMTextField/SAMTextField.h: -------------------------------------------------------------------------------- 1 | ../../../SAMTextField/SAMTextField/SAMTextField.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Shimmer/FBShimmering.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmering.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Shimmer/FBShimmeringLayer.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Shimmer/FBShimmeringView.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GBPing/GBPing.h: -------------------------------------------------------------------------------- 1 | ../../../GBPing/GBPing/GBPing.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GBPing/GBPingSummary.h: -------------------------------------------------------------------------------- 1 | ../../../GBPing/GBPing/GBPingSummary.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GBPing/ICMPHeader.h: -------------------------------------------------------------------------------- 1 | ../../../GBPing/GBPing/ICMPHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GVUserDefaults/GVUserDefaults.h: -------------------------------------------------------------------------------- 1 | ../../../GVUserDefaults/GVUserDefaults/GVUserDefaults.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SAMTextField/SAMTextField.h: -------------------------------------------------------------------------------- 1 | ../../../SAMTextField/SAMTextField/SAMTextField.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Shimmer/FBShimmering.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmering.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Shimmer/FBShimmeringLayer.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Shimmer/FBShimmeringView.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SAMTextField/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SAMTextField/LICENSE -------------------------------------------------------------------------------- /Pods/SAMTextField/Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SAMTextField/Readme.markdown -------------------------------------------------------------------------------- /Pods/SAMTextField/SAMTextField/SAMTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SAMTextField/SAMTextField/SAMTextField.h -------------------------------------------------------------------------------- /Pods/SAMTextField/SAMTextField/SAMTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SAMTextField/SAMTextField/SAMTextField.m -------------------------------------------------------------------------------- /Pods/SVProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SVProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/README.md -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.m -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /Pods/Shimmer/FBShimmering/FBShimmering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/FBShimmering/FBShimmering.h -------------------------------------------------------------------------------- /Pods/Shimmer/FBShimmering/FBShimmeringLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/FBShimmering/FBShimmeringLayer.h -------------------------------------------------------------------------------- /Pods/Shimmer/FBShimmering/FBShimmeringLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/FBShimmering/FBShimmeringLayer.m -------------------------------------------------------------------------------- /Pods/Shimmer/FBShimmering/FBShimmeringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/FBShimmering/FBShimmeringView.h -------------------------------------------------------------------------------- /Pods/Shimmer/FBShimmering/FBShimmeringView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/FBShimmering/FBShimmeringView.m -------------------------------------------------------------------------------- /Pods/Shimmer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/LICENSE -------------------------------------------------------------------------------- /Pods/Shimmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Shimmer/README.md -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/LICENSE.txt -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/README.md -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.h -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingCollectionView.m -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.m -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.m -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.h -------------------------------------------------------------------------------- /Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/TPKeyboardAvoiding/TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GBPing/GBPing-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/GBPing/GBPing-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GBPing/GBPing-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/GBPing/GBPing-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GBPing/GBPing-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/GBPing/GBPing-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GBPing/GBPing.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GVUserDefaults/GVUserDefaults-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/GVUserDefaults/GVUserDefaults-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GVUserDefaults/GVUserDefaults-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/GVUserDefaults/GVUserDefaults-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GVUserDefaults/GVUserDefaults-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/GVUserDefaults/GVUserDefaults-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GVUserDefaults/GVUserDefaults.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hydro/Pods-Hydro-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Pods-Hydro/Pods-Hydro-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hydro/Pods-Hydro-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Pods-Hydro/Pods-Hydro-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hydro/Pods-Hydro-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Pods-Hydro/Pods-Hydro-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hydro/Pods-Hydro-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Pods-Hydro/Pods-Hydro-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hydro/Pods-Hydro.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Pods-Hydro/Pods-Hydro.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Hydro/Pods-Hydro.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Pods-Hydro/Pods-Hydro.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SAMTextField/SAMTextField-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SAMTextField/SAMTextField-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SAMTextField/SAMTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SAMTextField/SAMTextField-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SAMTextField/SAMTextField-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SAMTextField/SAMTextField-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SAMTextField/SAMTextField.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SAMTextField/SAMTextField.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SVProgressHUD/SVProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | SVPROGRESSHUD_OTHER_LDFLAGS = -framework "QuartzCore" -------------------------------------------------------------------------------- /Pods/Target Support Files/Shimmer/Shimmer-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Shimmer/Shimmer-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Shimmer/Shimmer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Shimmer/Shimmer-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Shimmer/Shimmer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/Shimmer/Shimmer-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Shimmer/Shimmer.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/TPKeyboardAvoiding/TPKeyboardAvoiding.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/pop/pop-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/pop/pop-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/pop/pop-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/pop/pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/Target Support Files/pop/pop.xcconfig -------------------------------------------------------------------------------- /Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/README.md -------------------------------------------------------------------------------- /Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/README.md -------------------------------------------------------------------------------- /Today/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/Info.plist -------------------------------------------------------------------------------- /Today/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/MainInterface.storyboard -------------------------------------------------------------------------------- /Today/Today.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/Today.entitlements -------------------------------------------------------------------------------- /Today/TodayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/TodayViewController.h -------------------------------------------------------------------------------- /Today/TodayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/TodayViewController.m -------------------------------------------------------------------------------- /Today/VPNButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/VPNButton.h -------------------------------------------------------------------------------- /Today/VPNButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-gaven/myVPN/HEAD/Today/VPNButton.m --------------------------------------------------------------------------------