Jelajahi Sumber

【综合】年订阅同步

tangchao 6 bulan lalu
induk
melakukan
4f8168d4a2

+ 116 - 4
PDF Office/PDF Master/Class/Purchase/Appstore/KMPurchaseCompareWindowController.m

@@ -201,11 +201,26 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
 @property (assign) IBOutlet NSView *value1InfoView;
 @property (assign) IBOutlet NSBox *value1InfoBox;
 
+@property (assign) IBOutlet NSBox *value1InfoTypeBox;
+@property (assign) IBOutlet NSTextField *sixMouthProLabel;
+@property (assign) IBOutlet NSTextField *oneYearProLabel;
+
+@property (assign) IBOutlet NSBox *switchBox;
+@property (assign) IBOutlet NSButton *switchBtn;
+@property (assign) IBOutlet NSView *switchCircleView;
+
+@property (assign) IBOutlet NSLayoutConstraint *switchCircleLeftConst;
+
+@property (assign) IBOutlet NSBox *saleBox;
+@property (assign) IBOutlet NSImageView *saleIv;
+@property (assign) IBOutlet NSTextField *saleLabel;
+
 @property (assign) IBOutlet NSTextField *value1InfoLabel;
 @property (nonatomic,assign) IBOutlet NSTextField *value1PurchaseLabel;
 @property (nonatomic,assign) IBOutlet NSTextField *value1PurchaseSubLabel;
-@property (nonatomic,assign) IBOutlet KMButton *value1PurchaseButton;
+@property (nonatomic,assign) IBOutlet KMCustomButton *value1PurchaseButton;
 @property (assign) IBOutlet NSTextField *value1PurchaseBtnLbl;
+@property (assign) IBOutlet NSTextField *value1PurchaseOriPriceLbl;
 @property (assign) IBOutlet NSButton *value1PurchaseBtnLblBtn;
 
 @property (assign) IBOutlet NSView *value2InfoView;
@@ -224,9 +239,9 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
 @property (strong) IBOutlet NSTextField *value3PurchaseBtnLbl;
 
 @property (nonatomic,assign) IBOutlet NSButton *aboutButton;
-@property (nonatomic,assign) IBOutlet KMButton *btnRestore;
-@property (assign) IBOutlet KMButton *privacyPolicyBtn;
-@property (assign) IBOutlet KMButton *termOfSerBtn;
+@property (nonatomic,assign) IBOutlet HyperLinkButton *btnRestore;
+@property (assign) IBOutlet HyperLinkButton *privacyPolicyBtn;
+@property (assign) IBOutlet HyperLinkButton *termOfSerBtn;
 
 @property (nonatomic,assign) IBOutlet NSTextView *textView;
 
@@ -245,6 +260,9 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
 
 @property (nonatomic, retain) CALayer *value1Layer;
 
+@property (nonatomic, assign) BOOL isPurchaseSwitch;
+@property (assign) IBOutlet NSLayoutConstraint *billedTopConst;
+
 @end
 
 @implementation KMPurchaseCompareWindowController
@@ -280,6 +298,8 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
                                                    object:nil];
         
         [NSDistributedNotificationCenter.defaultCenter addObserver:self selector:@selector(themeChanged:) name:@"AppleInterfaceThemeChangedNotification" object: nil];
+        
+        self.isPurchaseSwitch = false;
     }
     return self;
 }
@@ -403,6 +423,46 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
     self.value2InfoLabel.font = [NSFont UbuntuMediumFontWithSize:16];
     self.value3InfoLabel.font = [NSFont UbuntuMediumFontWithSize:16];
     
+    self.value1InfoTypeBox.fillColor = [NSColor clearColor];
+    self.value1InfoTypeBox.borderWidth = 0;
+    self.sixMouthProLabel.stringValue = NSLocalizedString(@"6-month Plan", @"");
+    self.sixMouthProLabel.textColor = NSColor.whiteColor;
+    self.sixMouthProLabel.font = [NSFont UbuntuMediumFontWithSize:14];
+    self.sixMouthProLabel.lineBreakMode = NSLineBreakByTruncatingTail;
+    self.sixMouthProLabel.toolTip = self.sixMouthProLabel.stringValue;
+    self.sixMouthProLabel.alignment = NSTextAlignmentCenter;
+    
+    // #757780
+    self.oneYearProLabel.stringValue = NSLocalizedString(@"1-year Plan", @"");
+    self.oneYearProLabel.textColor = NSColor.whiteColor;
+    self.oneYearProLabel.font = [NSFont UbuntuMediumFontWithSize:14];
+    self.oneYearProLabel.lineBreakMode = NSLineBreakByTruncatingTail;
+    self.oneYearProLabel.toolTip = self.oneYearProLabel.stringValue;
+    self.oneYearProLabel.alignment = NSTextAlignmentCenter;
+    
+    self.switchBox.fillColor = [NSColor colorWithWhite:1 alpha:0.2];
+    self.switchBox.cornerRadius = 12;
+    self.switchBox.borderWidth = 1;
+    self.switchBox.borderColor = [NSColor colorWithRed:235/255.0 green:236/255.0 blue:240/255.0 alpha:1.0];
+    self.switchCircleView.wantsLayer = true;
+    self.switchCircleView.layer.cornerRadius = 8;
+    self.switchCircleView.layer.backgroundColor = [NSColor whiteColor].CGColor;
+    self.switchBtn.title = @"";
+    self.switchBtn.target = self;
+    self.switchBtn.action = @selector(switchAction:);
+    
+    //    self.saleLabel.stringValue = NSLocalizedString(@"30%\nOFF", @"");
+    //    self.saleLabel.textColor = NSColor.whiteColor;
+    //    self.saleLabel.wantsLayer = true;
+    //    self.saleLabel.layer.transform = CATransform3DMakeRotation(M_PI/4, 0, 1, 0);
+    //    self.saleLabel.layer.transform.m34 = 1/500.0;
+    //    self.saleLabel.layer.affineTransform = CGAffineTransformMakeRotation(M_PI/2);
+    //    self.saleLabel.superview.wantsLayer = true;
+    //    self.saleLabel.superview.layer.transform = CATransform3DMakeRotation(M_PI/4, 0, 0, 1);
+        self.saleLabel.hidden = true;
+        self.saleLabel.superview.hidden = true;
+        self.saleBox.borderWidth = 0;
+    
     self.value1PurchaseButton.wantsLayer = YES;
     self.value1PurchaseButton.layer.backgroundColor = [NSColor colorWithRed:1 green:94/255. blue:44/255. alpha:1].CGColor;
     self.value1PurchaseButton.layer.cornerRadius = CGRectGetHeight(self.value1PurchaseButton.frame) / 2.;
@@ -574,6 +634,34 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
 #pragma mark - Private Methods
 
 - (void)reloadData {
+    if (self.isPurchaseSwitch) {
+        self.sixMouthProLabel.textColor = [NSColor colorWithRed:117/255.0 green:119/255.0 blue:128/255.0 alpha:1.0];
+        self.oneYearProLabel.textColor = NSColor.whiteColor;
+        
+        self.switchCircleLeftConst.constant = 22;
+        
+        self.value1InfoLabel.stringValue = NSLocalizedString(@"1-year Plan", nil);
+    } else {
+        self.sixMouthProLabel.textColor = NSColor.whiteColor;
+        self.oneYearProLabel.textColor = [NSColor colorWithRed:117/255.0 green:119/255.0 blue:128/255.0 alpha:1.0];
+        
+        self.switchCircleLeftConst.constant = 4;
+        
+        self.value1InfoLabel.stringValue = NSLocalizedString(@"6-month Plan", nil);
+    }
+
+    self.saleBox.hidden = true;
+    self.saleIv.hidden = true;
+//    if ([self isShowSale]) {
+//        KMRecommondInfo *recoveryInfo = KMRecommondManager.manager.userRecoveryRecommond.recommondInfoArrM.firstObject;
+//        NSImage *image = recoveryInfo.saleImage;
+//        self.saleIv.image = image;
+//        self.saleBox.hidden = false;
+//        self.saleIv.hidden = false;
+//    } else {
+//        self.saleBox.hidden = true;
+//    }
+    
     if ([IAPProductsManager defaultManager].isAvailableAllFunction) {
         self.value1PurchaseButton.enabled = NO;
         self.value2PurchaseButton.enabled = NO;
@@ -831,6 +919,30 @@ static NSString *const KMPurchaseCompareCellIdentifier       = @"KMPurchaseCompa
     [self close];
 }
 
+- (void)switchAction:(NSButton *)sender {
+//    NSControlStateValue state = self.switchBtn.state;
+    BOOL isSwitch = self.isPurchaseSwitch;
+    if (isSwitch) {
+//        self.switchBtn.state = NSControlStateValueOff;
+        self.isPurchaseSwitch = false;
+        
+//        self.switchCircleLeftConst.constant = 4;
+    } else {
+//        self.switchBtn.state = NSControlStateValueOn;
+        self.isPurchaseSwitch = true;
+        
+//        self.switchCircleLeftConst.constant = 22;
+    }
+    
+//    if (self.isPurchaseSwitch) { // 一年
+//
+//    } else { // 半年
+//
+//    }
+    [self reloadDataContent];
+    [self reloadData];
+}
+
 #pragma mark - NSTableViewDataSource Methods
 
 - (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView {

+ 356 - 137
PDF Office/PDF Master/Class/Purchase/Appstore/KMPurchaseCompareWindowController.xib

@@ -1,26 +1,37 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="22505" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="21507" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
     <dependencies>
         <deployment identifier="macosx"/>
-        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="22505"/>
+        <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="21507"/>
+        <capability name="Named colors" minToolsVersion="9.0"/>
         <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
     </dependencies>
     <objects>
         <customObject id="-2" userLabel="File's Owner" customClass="KMPurchaseCompareWindowController">
             <connections>
                 <outlet property="aboutButton" destination="v8v-YN-QiY" id="qpa-XM-tpk"/>
+                <outlet property="billedTopConst" destination="Zwf-MI-5zw" id="58U-wY-a2V"/>
                 <outlet property="box" destination="VkH-IT-Sya" id="PzO-Q7-Ust"/>
                 <outlet property="btnRestore" destination="lSB-Bp-t6o" id="2t1-9W-C6m"/>
                 <outlet property="freeInfoLabel" destination="ezY-Bo-aWV" id="hUp-QJ-bHc"/>
                 <outlet property="freeInfoView" destination="vtH-j9-yK4" id="kR8-G9-aQr"/>
                 <outlet property="labelbox" destination="LcW-JL-0ob" id="2G2-b1-64Y"/>
+                <outlet property="oneYearProLabel" destination="aut-0P-FN1" id="ESZ-1l-h4b"/>
                 <outlet property="privacyPolicyBtn" destination="pHZ-4d-36m" id="PNs-CG-DuQ"/>
+                <outlet property="saleBox" destination="OYs-Ds-xLR" id="5mz-eu-vlH"/>
+                <outlet property="saleIv" destination="yg5-SO-RU9" id="FfJ-kx-gW4"/>
+                <outlet property="saleLabel" destination="0o2-VT-AIx" id="cv7-Rs-Ebl"/>
+                <outlet property="sixMouthProLabel" destination="vGp-TB-QJm" id="csQ-V4-Wcb"/>
                 <outlet property="specialImageView" destination="FGr-Ii-fql" id="MEj-Gh-bKk"/>
                 <outlet property="specialImageView1" destination="mzf-tr-1eK" id="nfa-Uc-kV0"/>
                 <outlet property="specialLabel" destination="yeX-i3-UFN" id="VeQ-ZL-SqR"/>
                 <outlet property="specialLabel1" destination="xun-Av-uJQ" id="tSG-6F-P8H"/>
                 <outlet property="specialView" destination="Idp-8O-cCs" id="LVn-z2-Jnj"/>
                 <outlet property="specialView1" destination="Dnn-Xm-qaS" id="zJ2-ie-De8"/>
+                <outlet property="switchBox" destination="4uE-0k-Ope" id="Mxf-PJ-Pzy"/>
+                <outlet property="switchBtn" destination="SdI-d6-vgg" id="O6a-Er-wJD"/>
+                <outlet property="switchCircleLeftConst" destination="JDa-Uu-96W" id="wDD-Jd-iie"/>
+                <outlet property="switchCircleView" destination="MxM-R2-plR" id="JHh-mX-Jdi"/>
                 <outlet property="switchLabel" destination="Rln-ze-Lfu" id="Y2n-Pt-tJy"/>
                 <outlet property="tableView" destination="vUH-t2-iHg" id="dij-GH-6Ia"/>
                 <outlet property="termOfSerBtn" destination="N4T-qV-91e" id="5WU-n5-kAY"/>
@@ -28,11 +39,13 @@
                 <outlet property="titleLabel" destination="GGA-Yc-I1A" id="114-2g-Zc6"/>
                 <outlet property="value1InfoBox" destination="ghy-1k-hWU" id="LVd-vi-jTa"/>
                 <outlet property="value1InfoLabel" destination="Dl8-vY-qqg" id="6nm-v0-XIG"/>
+                <outlet property="value1InfoTypeBox" destination="3U4-QU-ky5" id="wz8-9u-uc7"/>
                 <outlet property="value1InfoView" destination="yC6-13-gpA" id="COY-Hg-hFu"/>
                 <outlet property="value1PurchaseBtnLbl" destination="38d-qQ-aJn" id="RZ3-GN-DL9"/>
                 <outlet property="value1PurchaseBtnLblBtn" destination="zIL-NE-68c" id="Exg-Zb-D6c"/>
                 <outlet property="value1PurchaseButton" destination="4gK-dh-mzU" id="TqY-DQ-Ngx"/>
                 <outlet property="value1PurchaseLabel" destination="KIy-bW-X83" id="TwS-Er-MJK"/>
+                <outlet property="value1PurchaseOriPriceLbl" destination="HTr-NX-tD3" id="6LL-c1-V3O"/>
                 <outlet property="value1PurchaseSubLabel" destination="xKx-x8-WuO" id="xbw-8J-JYM"/>
                 <outlet property="value2InfoLabel" destination="eDh-fo-997" id="7gn-1n-Z8a"/>
                 <outlet property="value2InfoView" destination="1La-EL-fud" id="nFk-yt-4YN"/>
@@ -43,7 +56,6 @@
                 <outlet property="value2PurchaseSubLabel" destination="RdA-gL-hBx" id="bBZ-Fs-9pv"/>
                 <outlet property="value3InfoLabel" destination="x7t-cK-DUL" id="Mg1-Ck-4sj"/>
                 <outlet property="value3InfoView" destination="WOk-rB-efh" id="AZM-IN-4gQ"/>
-                <outlet property="value3PurchaseBtnLbl" destination="8rl-sK-MYi" id="AMl-U8-5Qx"/>
                 <outlet property="value3PurchaseButton" destination="uz9-wn-DIW" id="cJ8-Ni-LGD"/>
                 <outlet property="value3PurchaseLabel" destination="NoO-n7-bpV" id="b1n-dM-vPn"/>
                 <outlet property="value3PurchaseSubLabel" destination="wzo-Gq-dD2" id="CM0-xQ-XcI"/>
@@ -55,27 +67,27 @@
         <window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="documentWindow" titlebarAppearsTransparent="YES" id="F0z-JX-Cv5">
             <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES" fullSizeContentView="YES"/>
             <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
-            <rect key="contentRect" x="77" y="40" width="970" height="680"/>
-            <rect key="screenRect" x="0.0" y="0.0" width="1920" height="1055"/>
-            <value key="minSize" type="size" width="970" height="680"/>
-            <value key="maxSize" type="size" width="970" height="680"/>
+            <rect key="contentRect" x="77" y="40" width="1114" height="720"/>
+            <rect key="screenRect" x="0.0" y="0.0" width="1440" height="875"/>
+            <value key="minSize" type="size" width="1114" height="720"/>
+            <value key="maxSize" type="size" width="1114" height="720"/>
             <view key="contentView" wantsLayer="YES" misplaced="YES" id="se5-gp-TjO">
-                <rect key="frame" x="0.0" y="0.0" width="970" height="680"/>
+                <rect key="frame" x="0.0" y="0.0" width="1114" height="720"/>
                 <autoresizingMask key="autoresizingMask"/>
                 <subviews>
-                    <box boxType="custom" borderType="none" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="mlL-tV-RqB">
-                        <rect key="frame" x="0.0" y="517" width="970" height="192"/>
+                    <box misplaced="YES" boxType="custom" borderType="none" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="mlL-tV-RqB">
+                        <rect key="frame" x="0.0" y="557" width="1054" height="192"/>
                         <view key="contentView" id="qnp-ir-5Rq">
-                            <rect key="frame" x="0.0" y="0.0" width="970" height="192"/>
+                            <rect key="frame" x="0.0" y="0.0" width="1054" height="192"/>
                             <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                             <subviews>
                                 <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4PI-jT-Lva">
-                                    <rect key="frame" x="0.0" y="0.0" width="970" height="192"/>
+                                    <rect key="frame" x="0.0" y="0.0" width="1054" height="212"/>
                                     <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                     <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="KMImageNameCompareBG" id="GBV-Db-cHh"/>
                                 </imageView>
-                                <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="GGA-Yc-I1A">
-                                    <rect key="frame" x="30" y="98" width="324" height="38"/>
+                                <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="GGA-Yc-I1A">
+                                    <rect key="frame" x="30" y="108" width="324" height="38"/>
                                     <constraints>
                                         <constraint firstAttribute="height" relation="lessThanOrEqual" constant="48" id="L7Y-Ye-A7W"/>
                                         <constraint firstAttribute="width" constant="320" id="pv8-vs-m85"/>
@@ -86,37 +98,37 @@
                                         <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                     </textFieldCell>
                                 </textField>
-                                <button focusRingType="none" allowsExpansionToolTips="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="lSB-Bp-t6o" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                    <rect key="frame" x="32" y="20" width="51" height="16"/>
+                                <button focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lSB-Bp-t6o" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
+                                    <rect key="frame" x="32" y="30" width="51" height="16"/>
+                                    <constraints>
+                                        <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="iQV-c9-56L"/>
+                                    </constraints>
                                     <buttonCell key="cell" type="bevel" title="Restore" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" focusRingType="none" imageScaling="proportionallyDown" inset="2" id="dxE-vy-K4S">
                                         <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                         <font key="font" metaFont="system"/>
                                     </buttonCell>
-                                    <constraints>
-                                        <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="iQV-c9-56L"/>
-                                    </constraints>
                                     <connections>
                                         <action selector="buttonItemClicked_Restore:" target="-2" id="rMA-uA-beq"/>
                                     </connections>
                                 </button>
-                                <button allowsExpansionToolTips="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="pHZ-4d-36m" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                    <rect key="frame" x="103" y="20" width="49" height="16"/>
+                                <button verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="pHZ-4d-36m" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
+                                    <rect key="frame" x="103" y="30" width="49" height="16"/>
+                                    <constraints>
+                                        <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="aJm-G6-9An"/>
+                                    </constraints>
                                     <buttonCell key="cell" type="bevel" title="Privacy" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" imageScaling="proportionallyDown" inset="2" id="xbr-1s-eFJ">
                                         <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                         <font key="font" metaFont="system"/>
                                     </buttonCell>
-                                    <constraints>
-                                        <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="aJm-G6-9An"/>
-                                    </constraints>
                                     <connections>
                                         <action selector="privacyPolicyAction:" target="-2" id="yQJ-Fc-lhH"/>
                                     </connections>
                                 </button>
                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="vtH-j9-yK4">
-                                    <rect key="frame" x="362" y="0.0" width="144" height="164"/>
+                                    <rect key="frame" x="362" y="0.0" width="144" height="194"/>
                                     <subviews>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ezY-Bo-aWV">
-                                            <rect key="frame" x="53" y="74" width="38" height="17"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ezY-Bo-aWV">
+                                            <rect key="frame" x="53" y="89" width="38" height="17"/>
                                             <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="Free" id="6BK-FV-e61">
                                                 <font key="font" metaFont="systemSemibold" size="14"/>
                                                 <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
@@ -125,54 +137,136 @@
                                         </textField>
                                     </subviews>
                                     <constraints>
-                                        <constraint firstAttribute="height" constant="164" id="Mxs-Z7-dsC"/>
+                                        <constraint firstAttribute="height" constant="194" id="Mxs-Z7-dsC"/>
                                         <constraint firstAttribute="width" constant="144" id="OYW-pI-Miu"/>
                                         <constraint firstItem="ezY-Bo-aWV" firstAttribute="centerX" secondItem="vtH-j9-yK4" secondAttribute="centerX" id="UgB-2Z-pt3"/>
                                         <constraint firstItem="ezY-Bo-aWV" firstAttribute="centerY" secondItem="vtH-j9-yK4" secondAttribute="centerY" id="vSw-Dt-143"/>
                                     </constraints>
                                 </customView>
-                                <button allowsExpansionToolTips="YES" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="N4T-qV-91e" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                    <rect key="frame" x="172" y="20" width="42" height="16"/>
+                                <button verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="N4T-qV-91e" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
+                                    <rect key="frame" x="172" y="30" width="42" height="16"/>
+                                    <constraints>
+                                        <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="Gam-BD-qUt"/>
+                                    </constraints>
                                     <buttonCell key="cell" type="bevel" title="Terms" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" imageScaling="proportionallyDown" inset="2" id="KQ8-ZB-77h">
                                         <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                         <font key="font" metaFont="system"/>
                                     </buttonCell>
-                                    <constraints>
-                                        <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="Gam-BD-qUt"/>
-                                    </constraints>
                                     <connections>
                                         <action selector="termOfSerAction:" target="-2" id="Gp6-hr-jOL"/>
                                     </connections>
                                 </button>
                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="yC6-13-gpA">
-                                    <rect key="frame" x="506" y="0.0" width="156" height="164"/>
+                                    <rect key="frame" x="506" y="0.0" width="300" height="194"/>
                                     <subviews>
                                         <box boxType="custom" cornerRadius="8" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="ghy-1k-hWU">
-                                            <rect key="frame" x="0.0" y="-10" width="156" height="174"/>
+                                            <rect key="frame" x="0.0" y="-10" width="300" height="204"/>
                                             <view key="contentView" id="r3c-Gm-1KR">
-                                                <rect key="frame" x="1" y="1" width="154" height="172"/>
+                                                <rect key="frame" x="1" y="1" width="298" height="202"/>
                                                 <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                             </view>
                                             <color key="borderColor" red="1" green="0.36862745098039218" blue="0.17254901960784313" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                         </box>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Dl8-vY-qqg">
-                                            <rect key="frame" x="31" y="131" width="94" height="17"/>
+                                        <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="3U4-QU-ky5">
+                                            <rect key="frame" x="0.0" y="154" width="300" height="30"/>
+                                            <view key="contentView" id="N0e-uj-KQt">
+                                                <rect key="frame" x="1" y="1" width="298" height="28"/>
+                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                <subviews>
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vGp-TB-QJm">
+                                                        <rect key="frame" x="10" y="6" width="111" height="16"/>
+                                                        <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="uxF-63-ZFw">
+                                                            <font key="font" usesAppearanceFont="YES"/>
+                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="aut-0P-FN1">
+                                                        <rect key="frame" x="177" y="6" width="111" height="16"/>
+                                                        <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="V69-r7-L9u">
+                                                            <font key="font" metaFont="system"/>
+                                                            <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                            <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                        </textFieldCell>
+                                                    </textField>
+                                                    <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="4uE-0k-Ope">
+                                                        <rect key="frame" x="127" y="2" width="44" height="24"/>
+                                                        <view key="contentView" id="bBc-uL-MOX">
+                                                            <rect key="frame" x="1" y="1" width="42" height="22"/>
+                                                            <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                            <subviews>
+                                                                <customView translatesAutoresizingMaskIntoConstraints="NO" id="MxM-R2-plR">
+                                                                    <rect key="frame" x="4" y="3" width="16" height="16"/>
+                                                                    <constraints>
+                                                                        <constraint firstAttribute="height" constant="16" id="Sg6-ap-NXg"/>
+                                                                        <constraint firstAttribute="width" constant="16" id="ohe-zS-51b"/>
+                                                                    </constraints>
+                                                                </customView>
+                                                                <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="SdI-d6-vgg">
+                                                                    <rect key="frame" x="0.0" y="0.0" width="42" height="22"/>
+                                                                    <buttonCell key="cell" type="bevel" title="Button" bezelStyle="rounded" alignment="center" imageScaling="proportionallyDown" inset="2" id="THa-Do-q2F">
+                                                                        <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                                        <font key="font" metaFont="system"/>
+                                                                    </buttonCell>
+                                                                </button>
+                                                            </subviews>
+                                                            <constraints>
+                                                                <constraint firstAttribute="trailing" secondItem="SdI-d6-vgg" secondAttribute="trailing" id="2KV-Sa-PSn"/>
+                                                                <constraint firstItem="MxM-R2-plR" firstAttribute="centerY" secondItem="bBc-uL-MOX" secondAttribute="centerY" id="HFu-9O-u3e"/>
+                                                                <constraint firstItem="SdI-d6-vgg" firstAttribute="top" secondItem="bBc-uL-MOX" secondAttribute="top" id="IrK-5l-QaY"/>
+                                                                <constraint firstItem="MxM-R2-plR" firstAttribute="leading" secondItem="bBc-uL-MOX" secondAttribute="leading" constant="4" id="JDa-Uu-96W"/>
+                                                                <constraint firstItem="SdI-d6-vgg" firstAttribute="leading" secondItem="bBc-uL-MOX" secondAttribute="leading" id="cPu-RR-WsG"/>
+                                                                <constraint firstAttribute="bottom" secondItem="SdI-d6-vgg" secondAttribute="bottom" id="nlP-qT-lPf"/>
+                                                            </constraints>
+                                                        </view>
+                                                        <constraints>
+                                                            <constraint firstAttribute="width" constant="44" id="Glv-Bl-mhW"/>
+                                                            <constraint firstAttribute="height" constant="24" id="Mhp-aw-J8I"/>
+                                                        </constraints>
+                                                    </box>
+                                                </subviews>
+                                                <constraints>
+                                                    <constraint firstItem="aut-0P-FN1" firstAttribute="leading" secondItem="4uE-0k-Ope" secondAttribute="trailing" constant="8" id="82R-UR-X0G"/>
+                                                    <constraint firstItem="4uE-0k-Ope" firstAttribute="centerY" secondItem="N0e-uj-KQt" secondAttribute="centerY" id="LRL-t1-wbS"/>
+                                                    <constraint firstItem="4uE-0k-Ope" firstAttribute="leading" secondItem="vGp-TB-QJm" secondAttribute="trailing" constant="8" id="aAd-hf-K2K"/>
+                                                    <constraint firstItem="vGp-TB-QJm" firstAttribute="centerY" secondItem="4uE-0k-Ope" secondAttribute="centerY" id="bgP-3p-Egp"/>
+                                                    <constraint firstItem="vGp-TB-QJm" firstAttribute="leading" secondItem="N0e-uj-KQt" secondAttribute="leading" constant="12" id="e7K-R8-Cyw"/>
+                                                    <constraint firstAttribute="trailing" secondItem="aut-0P-FN1" secondAttribute="trailing" constant="12" id="uSq-aS-ob8"/>
+                                                    <constraint firstItem="aut-0P-FN1" firstAttribute="centerY" secondItem="4uE-0k-Ope" secondAttribute="centerY" id="who-fW-JFM"/>
+                                                    <constraint firstItem="4uE-0k-Ope" firstAttribute="centerX" secondItem="N0e-uj-KQt" secondAttribute="centerX" id="zYN-8I-tGY"/>
+                                                </constraints>
+                                            </view>
+                                            <constraints>
+                                                <constraint firstAttribute="height" constant="30" id="Dff-9s-72w"/>
+                                            </constraints>
+                                            <color key="fillColor" name="KMColor_Status_Err"/>
+                                        </box>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Dl8-vY-qqg">
+                                            <rect key="frame" x="103" y="131" width="94" height="17"/>
                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="6-Month Pro" id="LRu-HP-AIx">
                                                 <font key="font" metaFont="systemSemibold" size="14"/>
                                                 <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                 <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                             </textFieldCell>
                                         </textField>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KIy-bW-X83">
-                                            <rect key="frame" x="-1" y="108" width="158" height="19"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KIy-bW-X83">
+                                            <rect key="frame" x="-1" y="108" width="302" height="19"/>
                                             <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $9.99/mouth" id="W1C-wJ-51R">
                                                 <font key="font" metaFont="systemBold" size="16"/>
                                                 <color key="textColor" red="0.0" green="0.53333333333333333" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                 <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                                             </textFieldCell>
                                         </textField>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="xKx-x8-WuO">
-                                            <rect key="frame" x="-2" y="78" width="160" height="30"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="HTr-NX-tD3">
+                                            <rect key="frame" x="131" y="89" width="37" height="16"/>
+                                            <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="jB6-6F-7yo">
+                                                <font key="font" metaFont="system"/>
+                                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                            </textFieldCell>
+                                        </textField>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="xKx-x8-WuO">
+                                            <rect key="frame" x="-2" y="77" width="304" height="15"/>
                                             <textFieldCell key="cell" alignment="center" title="Billed every 6 months at USD $9.99 " id="6dg-rd-4j6">
                                                 <font key="font" metaFont="cellTitle"/>
                                                 <color key="textColor" red="0.55294117647058827" green="0.55294117647058827" blue="0.55294117647058827" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
@@ -180,21 +274,21 @@
                                             </textFieldCell>
                                         </textField>
                                         <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="4gK-dh-mzU" customClass="KMCustomButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                            <rect key="frame" x="18" y="16" width="120" height="40"/>
-                                            <buttonCell key="cell" type="bevel" bezelStyle="regularSquare" alignment="center" imageScaling="proportionallyDown" inset="2" id="QqX-bE-OVZ">
-                                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                                                <font key="font" metaFont="system"/>
-                                            </buttonCell>
+                                            <rect key="frame" x="90" y="16" width="120" height="40"/>
                                             <constraints>
                                                 <constraint firstAttribute="height" constant="40" id="GoJ-U6-w96"/>
                                                 <constraint firstAttribute="width" constant="120" id="h9m-9C-gTt"/>
                                             </constraints>
+                                            <buttonCell key="cell" type="bevel" bezelStyle="regularSquare" alignment="center" imageScaling="proportionallyDown" inset="2" id="QqX-bE-OVZ">
+                                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                <font key="font" metaFont="system"/>
+                                            </buttonCell>
                                             <connections>
                                                 <action selector="buttonItemClicked_Subscribe:" target="-2" id="Wki-93-IjN"/>
                                             </connections>
                                         </button>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="38d-qQ-aJn">
-                                            <rect key="frame" x="16" y="30" width="124" height="17"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="38d-qQ-aJn">
+                                            <rect key="frame" x="88" y="30" width="124" height="17"/>
                                             <constraints>
                                                 <constraint firstAttribute="width" constant="120" id="ZVu-S8-vy9"/>
                                             </constraints>
@@ -204,8 +298,8 @@
                                                 <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                                             </textFieldCell>
                                         </textField>
-                                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zIL-NE-68c" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                            <rect key="frame" x="18" y="16" width="120" height="40"/>
+                                        <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zIL-NE-68c" customClass="KMCustomButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
+                                            <rect key="frame" x="90" y="16" width="120" height="40"/>
                                             <buttonCell key="cell" type="bevel" bezelStyle="rounded" alignment="center" imageScaling="proportionallyDown" inset="2" id="soS-NV-T4R">
                                                 <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                                 <font key="font" metaFont="system"/>
@@ -214,54 +308,107 @@
                                                 <action selector="buttonItemClicked_Subscribe:" target="-2" id="NdI-B3-BsC"/>
                                             </connections>
                                         </button>
+                                        <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="OYs-Ds-xLR">
+                                            <rect key="frame" x="244" y="86" width="66" height="68"/>
+                                            <view key="contentView" id="zlx-CP-S0q">
+                                                <rect key="frame" x="1" y="1" width="64" height="66"/>
+                                                <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
+                                                <subviews>
+                                                    <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="yg5-SO-RU9">
+                                                        <rect key="frame" x="0.0" y="0.0" width="64" height="66"/>
+                                                        <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="9CX-e7-Pfb"/>
+                                                    </imageView>
+                                                    <customView translatesAutoresizingMaskIntoConstraints="NO" id="xSu-X0-WOU">
+                                                        <rect key="frame" x="-12" y="25" width="88" height="16"/>
+                                                        <subviews>
+                                                            <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="0o2-VT-AIx">
+                                                                <rect key="frame" x="-2" y="0.0" width="92" height="16"/>
+                                                                <textFieldCell key="cell" selectable="YES" title="Multiline Label" id="LIQ-WE-yjS">
+                                                                    <font key="font" metaFont="system"/>
+                                                                    <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
+                                                                    <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
+                                                                </textFieldCell>
+                                                            </textField>
+                                                        </subviews>
+                                                        <constraints>
+                                                            <constraint firstAttribute="bottom" secondItem="0o2-VT-AIx" secondAttribute="bottom" id="5bs-iu-yV8"/>
+                                                            <constraint firstAttribute="trailing" secondItem="0o2-VT-AIx" secondAttribute="trailing" id="Nj4-Fi-dIa"/>
+                                                            <constraint firstItem="0o2-VT-AIx" firstAttribute="top" secondItem="xSu-X0-WOU" secondAttribute="top" id="Rho-lW-jTZ"/>
+                                                            <constraint firstItem="0o2-VT-AIx" firstAttribute="centerY" secondItem="xSu-X0-WOU" secondAttribute="centerY" id="U0D-06-Yn4"/>
+                                                            <constraint firstItem="0o2-VT-AIx" firstAttribute="leading" secondItem="xSu-X0-WOU" secondAttribute="leading" id="Uh4-YX-f6i"/>
+                                                            <constraint firstItem="0o2-VT-AIx" firstAttribute="centerX" secondItem="xSu-X0-WOU" secondAttribute="centerX" id="hD0-Hj-LPt"/>
+                                                        </constraints>
+                                                    </customView>
+                                                </subviews>
+                                                <constraints>
+                                                    <constraint firstAttribute="bottom" secondItem="yg5-SO-RU9" secondAttribute="bottom" id="6Bd-zy-y6h"/>
+                                                    <constraint firstItem="xSu-X0-WOU" firstAttribute="centerX" secondItem="zlx-CP-S0q" secondAttribute="centerX" id="6SH-Sn-l2u"/>
+                                                    <constraint firstItem="yg5-SO-RU9" firstAttribute="leading" secondItem="zlx-CP-S0q" secondAttribute="leading" id="DT0-n8-OmM"/>
+                                                    <constraint firstItem="yg5-SO-RU9" firstAttribute="top" secondItem="zlx-CP-S0q" secondAttribute="top" id="coy-kU-fgM"/>
+                                                    <constraint firstAttribute="trailing" secondItem="yg5-SO-RU9" secondAttribute="trailing" id="jUK-L8-F9F"/>
+                                                    <constraint firstItem="xSu-X0-WOU" firstAttribute="centerY" secondItem="zlx-CP-S0q" secondAttribute="centerY" id="p3Q-DI-SL3"/>
+                                                </constraints>
+                                            </view>
+                                            <constraints>
+                                                <constraint firstAttribute="width" constant="66" id="kzL-86-PES"/>
+                                                <constraint firstAttribute="height" constant="68" id="pB7-lv-25q"/>
+                                            </constraints>
+                                        </box>
                                     </subviews>
                                     <constraints>
+                                        <constraint firstAttribute="trailing" secondItem="3U4-QU-ky5" secondAttribute="trailing" id="07Q-Rx-T8Y"/>
                                         <constraint firstItem="KIy-bW-X83" firstAttribute="top" secondItem="Dl8-vY-qqg" secondAttribute="bottom" constant="4" id="0dN-Z7-gif"/>
                                         <constraint firstAttribute="trailing" secondItem="KIy-bW-X83" secondAttribute="trailing" constant="1" id="2LO-mj-cos"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="trailing" secondItem="zIL-NE-68c" secondAttribute="trailing" id="40b-ZT-Ube"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="top" secondItem="zIL-NE-68c" secondAttribute="top" id="5bV-wg-mnG"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="centerX" secondItem="38d-qQ-aJn" secondAttribute="centerX" id="5mW-TL-3yz"/>
-                                        <constraint firstAttribute="width" constant="156" id="63j-eU-CWt"/>
+                                        <constraint firstAttribute="width" constant="300" id="63j-eU-CWt"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="bottom" secondItem="zIL-NE-68c" secondAttribute="bottom" id="8bj-T6-ePm"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="leading" secondItem="zIL-NE-68c" secondAttribute="leading" id="9Pt-F5-KGF"/>
                                         <constraint firstAttribute="trailing" secondItem="ghy-1k-hWU" secondAttribute="trailing" id="B9p-Eg-1bM"/>
+                                        <constraint firstItem="3U4-QU-ky5" firstAttribute="top" secondItem="yC6-13-gpA" secondAttribute="top" constant="10" id="Bvp-DZ-syF"/>
                                         <constraint firstAttribute="bottom" secondItem="ghy-1k-hWU" secondAttribute="bottom" constant="-10" id="Fag-vt-b9q"/>
                                         <constraint firstItem="ghy-1k-hWU" firstAttribute="top" secondItem="yC6-13-gpA" secondAttribute="top" id="KrG-Rd-AOY"/>
                                         <constraint firstItem="Dl8-vY-qqg" firstAttribute="centerX" secondItem="yC6-13-gpA" secondAttribute="centerX" id="L47-mQ-J9m"/>
                                         <constraint firstItem="xKx-x8-WuO" firstAttribute="leading" secondItem="yC6-13-gpA" secondAttribute="leading" id="RJu-gZ-GgD"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="centerX" secondItem="yC6-13-gpA" secondAttribute="centerX" id="Sml-qJ-3sK"/>
-                                        <constraint firstItem="xKx-x8-WuO" firstAttribute="top" secondItem="KIy-bW-X83" secondAttribute="bottom" id="Zwf-MI-5zw"/>
-                                        <constraint firstAttribute="height" constant="164" id="bAe-Wv-eqg"/>
-                                        <constraint firstItem="Dl8-vY-qqg" firstAttribute="top" secondItem="yC6-13-gpA" secondAttribute="top" constant="16" id="ofn-Xb-BhQ"/>
+                                        <constraint firstItem="xKx-x8-WuO" firstAttribute="top" secondItem="KIy-bW-X83" secondAttribute="bottom" constant="16" id="Zwf-MI-5zw"/>
+                                        <constraint firstAttribute="height" constant="194" id="bAe-Wv-eqg"/>
+                                        <constraint firstItem="3U4-QU-ky5" firstAttribute="leading" secondItem="yC6-13-gpA" secondAttribute="leading" id="eC7-3o-rMj"/>
+                                        <constraint firstItem="HTr-NX-tD3" firstAttribute="centerX" secondItem="KIy-bW-X83" secondAttribute="centerX" id="iVE-h6-THV"/>
+                                        <constraint firstItem="HTr-NX-tD3" firstAttribute="top" secondItem="KIy-bW-X83" secondAttribute="bottom" id="n8z-SH-51l"/>
+                                        <constraint firstItem="Dl8-vY-qqg" firstAttribute="top" secondItem="yC6-13-gpA" secondAttribute="top" constant="46" id="ofn-Xb-BhQ"/>
                                         <constraint firstAttribute="trailing" secondItem="xKx-x8-WuO" secondAttribute="trailing" id="pLI-eq-nxJ"/>
                                         <constraint firstAttribute="bottom" secondItem="4gK-dh-mzU" secondAttribute="bottom" constant="16" id="qaC-Ao-YFM"/>
+                                        <constraint firstAttribute="trailing" secondItem="OYs-Ds-xLR" secondAttribute="trailing" constant="-10" id="r2t-85-WsB"/>
                                         <constraint firstItem="38d-qQ-aJn" firstAttribute="centerY" secondItem="4gK-dh-mzU" secondAttribute="centerY" constant="-2" id="uih-rC-yAg"/>
                                         <constraint firstItem="ghy-1k-hWU" firstAttribute="leading" secondItem="yC6-13-gpA" secondAttribute="leading" id="ula-Km-XzE"/>
                                         <constraint firstItem="4gK-dh-mzU" firstAttribute="top" relation="greaterThanOrEqual" secondItem="xKx-x8-WuO" secondAttribute="bottom" id="yhY-nu-IBS"/>
                                         <constraint firstItem="KIy-bW-X83" firstAttribute="leading" secondItem="yC6-13-gpA" secondAttribute="leading" constant="1" id="yl5-wA-AHh"/>
+                                        <constraint firstItem="OYs-Ds-xLR" firstAttribute="top" secondItem="yC6-13-gpA" secondAttribute="top" constant="40" id="zlz-ry-b3I"/>
                                     </constraints>
                                 </customView>
                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="1La-EL-fud">
-                                    <rect key="frame" x="662" y="0.0" width="144" height="164"/>
+                                    <rect key="frame" x="806" y="0.0" width="154" height="194"/>
                                     <subviews>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="eDh-fo-997">
-                                            <rect key="frame" x="34" y="131" width="77" height="17"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="eDh-fo-997">
+                                            <rect key="frame" x="39" y="141" width="77" height="17"/>
                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Permanen" id="q51-aJ-lGL">
                                                 <font key="font" metaFont="systemSemibold" size="14"/>
                                                 <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                 <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                             </textFieldCell>
                                         </textField>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9hd-c5-aIk">
-                                            <rect key="frame" x="-2" y="108" width="148" height="19"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9hd-c5-aIk">
+                                            <rect key="frame" x="-2" y="118" width="158" height="19"/>
                                             <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="UcE-q7-vn6">
                                                 <font key="font" metaFont="systemBold" size="16"/>
                                                 <color key="textColor" red="0.0" green="0.53333333333333333" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                 <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
                                             </textFieldCell>
                                         </textField>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="RdA-gL-hBx">
-                                            <rect key="frame" x="-2" y="93" width="148" height="15"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="RdA-gL-hBx">
+                                            <rect key="frame" x="-2" y="103" width="158" height="15"/>
                                             <textFieldCell key="cell" alignment="center" title="one-time purchase" id="Ae6-i6-UQR">
                                                 <font key="font" metaFont="cellTitle"/>
                                                 <color key="textColor" red="0.55294117647058827" green="0.55294117647058827" blue="0.55294117647058827" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
@@ -269,21 +416,21 @@
                                             </textFieldCell>
                                         </textField>
                                         <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ZL7-Ro-BdR" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                            <rect key="frame" x="12" y="16" width="120" height="40"/>
-                                            <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="scW-is-KHq">
-                                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                                                <font key="font" metaFont="systemBold" size="14"/>
-                                            </buttonCell>
+                                            <rect key="frame" x="17" y="16" width="120" height="40"/>
                                             <constraints>
                                                 <constraint firstAttribute="width" constant="120" id="ELn-sw-leh"/>
                                                 <constraint firstAttribute="height" constant="40" id="Enc-S5-Chy"/>
                                             </constraints>
+                                            <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="scW-is-KHq">
+                                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                <font key="font" metaFont="systemBold" size="14"/>
+                                            </buttonCell>
                                             <connections>
                                                 <action selector="buttonItemClicked_LicenseUpgrade:" target="-2" id="Xlp-Ja-dvM"/>
                                             </connections>
                                         </button>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="MrO-mI-9Px">
-                                            <rect key="frame" x="57" y="30" width="31" height="17"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="MrO-mI-9Px">
+                                            <rect key="frame" x="62" y="30" width="31" height="17"/>
                                             <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="VmF-v2-LOx">
                                                 <font key="font" metaFont="systemBold" size="14"/>
                                                 <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
@@ -291,7 +438,7 @@
                                             </textFieldCell>
                                         </textField>
                                         <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="mUS-wZ-ewc" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
-                                            <rect key="frame" x="12" y="16" width="120" height="40"/>
+                                            <rect key="frame" x="17" y="16" width="120" height="40"/>
                                             <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="Rzz-xZ-zng">
                                                 <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
                                                 <font key="font" metaFont="systemBold" size="14"/>
@@ -303,7 +450,7 @@
                                     </subviews>
                                     <constraints>
                                         <constraint firstItem="ZL7-Ro-BdR" firstAttribute="centerY" secondItem="MrO-mI-9Px" secondAttribute="centerY" constant="2" id="CMi-om-JZ3"/>
-                                        <constraint firstAttribute="height" constant="164" id="JZM-cx-2sy"/>
+                                        <constraint firstAttribute="height" constant="194" id="JZM-cx-2sy"/>
                                         <constraint firstItem="eDh-fo-997" firstAttribute="centerX" secondItem="1La-EL-fud" secondAttribute="centerX" id="Jft-9F-91K"/>
                                         <constraint firstItem="RdA-gL-hBx" firstAttribute="leading" secondItem="1La-EL-fud" secondAttribute="leading" id="NGb-Jf-mvC"/>
                                         <constraint firstItem="ZL7-Ro-BdR" firstAttribute="leading" secondItem="mUS-wZ-ewc" secondAttribute="leading" id="NUC-s9-qQU"/>
@@ -311,7 +458,7 @@
                                         <constraint firstItem="ZL7-Ro-BdR" firstAttribute="centerX" secondItem="MrO-mI-9Px" secondAttribute="centerX" id="YhS-Rt-m8l"/>
                                         <constraint firstItem="9hd-c5-aIk" firstAttribute="top" secondItem="eDh-fo-997" secondAttribute="bottom" constant="4" id="Z60-By-8o6"/>
                                         <constraint firstAttribute="trailing" secondItem="RdA-gL-hBx" secondAttribute="trailing" id="c7h-oz-846"/>
-                                        <constraint firstItem="eDh-fo-997" firstAttribute="top" secondItem="1La-EL-fud" secondAttribute="top" constant="16" id="eKE-yz-mkv"/>
+                                        <constraint firstItem="eDh-fo-997" firstAttribute="top" secondItem="1La-EL-fud" secondAttribute="top" constant="36" id="eKE-yz-mkv"/>
                                         <constraint firstAttribute="bottom" secondItem="ZL7-Ro-BdR" secondAttribute="bottom" constant="16" id="f2R-eY-3aP"/>
                                         <constraint firstItem="ZL7-Ro-BdR" firstAttribute="bottom" secondItem="mUS-wZ-ewc" secondAttribute="bottom" id="fa3-Wk-Lri"/>
                                         <constraint firstItem="9hd-c5-aIk" firstAttribute="leading" secondItem="1La-EL-fud" secondAttribute="leading" id="hTS-M2-Q3k"/>
@@ -319,22 +466,22 @@
                                         <constraint firstItem="ZL7-Ro-BdR" firstAttribute="centerX" secondItem="1La-EL-fud" secondAttribute="centerX" id="kj9-E7-WSb"/>
                                         <constraint firstAttribute="trailing" secondItem="9hd-c5-aIk" secondAttribute="trailing" id="pG9-E4-cKa"/>
                                         <constraint firstItem="RdA-gL-hBx" firstAttribute="top" secondItem="9hd-c5-aIk" secondAttribute="bottom" id="tPN-yG-gqY"/>
-                                        <constraint firstAttribute="width" constant="144" id="y56-Ps-57g"/>
+                                        <constraint firstAttribute="width" constant="154" id="y56-Ps-57g"/>
                                     </constraints>
                                 </customView>
                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="WOk-rB-efh">
-                                    <rect key="frame" x="806" y="0.0" width="144" height="164"/>
+                                    <rect key="frame" x="960" y="0.0" width="144" height="194"/>
                                     <subviews>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="x7t-cK-DUL">
-                                            <rect key="frame" x="36" y="131" width="72" height="17"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="x7t-cK-DUL">
+                                            <rect key="frame" x="36" y="141" width="72" height="17"/>
                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Premium " id="qqm-Po-2k9">
                                                 <font key="font" metaFont="systemSemibold" size="14"/>
                                                 <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                 <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
                                             </textFieldCell>
                                         </textField>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wzo-Gq-dD2">
-                                            <rect key="frame" x="-2" y="93" width="148" height="15"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="wzo-Gq-dD2">
+                                            <rect key="frame" x="-2" y="103" width="148" height="15"/>
                                             <textFieldCell key="cell" alignment="center" title="one-time purchase" id="Ryl-Th-jCg">
                                                 <font key="font" metaFont="cellTitle"/>
                                                 <color key="textColor" red="0.55294117647058827" green="0.55294117647058827" blue="0.55294117647058827" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
@@ -343,28 +490,20 @@
                                         </textField>
                                         <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="uz9-wn-DIW" customClass="KMButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
                                             <rect key="frame" x="12" y="16" width="120" height="40"/>
-                                            <buttonCell key="cell" type="bevel" title="Button" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="yeW-KF-Zoh">
-                                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
-                                                <font key="font" metaFont="systemBold" size="16"/>
-                                            </buttonCell>
                                             <constraints>
                                                 <constraint firstAttribute="height" constant="40" id="di2-w1-lny"/>
                                                 <constraint firstAttribute="width" constant="120" id="lfe-WI-tk0"/>
                                             </constraints>
+                                            <buttonCell key="cell" type="bevel" title="Button" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="yeW-KF-Zoh">
+                                                <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
+                                                <font key="font" metaFont="systemBold" size="14"/>
+                                            </buttonCell>
                                             <connections>
                                                 <action selector="buttonItemClicked_Upgrade:" target="-2" id="rTX-hB-r75"/>
                                             </connections>
                                         </button>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="8rl-sK-MYi">
-                                            <rect key="frame" x="57" y="30" width="31" height="17"/>
-                                            <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="YvU-98-X2E">
-                                                <font key="font" metaFont="systemBold" size="14"/>
-                                                <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
-                                                <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
-                                            </textFieldCell>
-                                        </textField>
-                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="NoO-n7-bpV">
-                                            <rect key="frame" x="-2" y="108" width="148" height="19"/>
+                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="NoO-n7-bpV">
+                                            <rect key="frame" x="-2" y="118" width="148" height="19"/>
                                             <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD 79.99" id="hiM-ls-nyg">
                                                 <font key="font" metaFont="systemBold" size="16"/>
                                                 <color key="textColor" red="0.0" green="0.53333333333333333" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
@@ -378,48 +517,125 @@
                                         <constraint firstAttribute="trailing" secondItem="NoO-n7-bpV" secondAttribute="trailing" id="G8r-Ph-W1w"/>
                                         <constraint firstAttribute="trailing" secondItem="wzo-Gq-dD2" secondAttribute="trailing" id="Qjz-MH-w6q"/>
                                         <constraint firstItem="wzo-Gq-dD2" firstAttribute="top" secondItem="NoO-n7-bpV" secondAttribute="bottom" id="TOs-Lg-loX"/>
-                                        <constraint firstItem="uz9-wn-DIW" firstAttribute="centerX" secondItem="8rl-sK-MYi" secondAttribute="centerX" id="XD7-0L-FKr"/>
                                         <constraint firstAttribute="bottom" secondItem="uz9-wn-DIW" secondAttribute="bottom" constant="16" id="Zs2-Us-YrV"/>
                                         <constraint firstItem="uz9-wn-DIW" firstAttribute="centerX" secondItem="WOk-rB-efh" secondAttribute="centerX" id="bd0-G1-wKh"/>
-                                        <constraint firstItem="uz9-wn-DIW" firstAttribute="centerY" secondItem="8rl-sK-MYi" secondAttribute="centerY" constant="2" id="eT5-EC-uRF"/>
-                                        <constraint firstAttribute="height" constant="164" id="heX-lX-eLW"/>
-                                        <constraint firstItem="x7t-cK-DUL" firstAttribute="top" secondItem="WOk-rB-efh" secondAttribute="top" constant="16" id="hzQ-X3-oDl"/>
+                                        <constraint firstAttribute="height" constant="194" id="heX-lX-eLW"/>
+                                        <constraint firstItem="x7t-cK-DUL" firstAttribute="top" secondItem="WOk-rB-efh" secondAttribute="top" constant="36" id="hzQ-X3-oDl"/>
                                         <constraint firstItem="NoO-n7-bpV" firstAttribute="top" secondItem="x7t-cK-DUL" secondAttribute="bottom" constant="4" id="qvY-NL-YZ8"/>
                                         <constraint firstItem="NoO-n7-bpV" firstAttribute="leading" secondItem="WOk-rB-efh" secondAttribute="leading" id="v1R-E7-0St"/>
                                         <constraint firstItem="wzo-Gq-dD2" firstAttribute="leading" secondItem="WOk-rB-efh" secondAttribute="leading" id="wnu-cI-kxZ"/>
                                     </constraints>
                                 </customView>
                                 <scrollView borderType="none" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5F9-Ol-kTt">
-                                    <rect key="frame" x="28" y="51" width="320" height="43"/>
+                                    <rect key="frame" x="28" y="61" width="320" height="43"/>
                                     <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="brl-dK-jdP">
                                         <rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
                                         <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                         <subviews>
                                             <textView editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" spellingCorrection="YES" smartInsertDelete="YES" id="yjX-Ac-Ztb">
-                                                <rect key="frame" x="0.0" y="12" width="320" height="314"/>
+                                                <rect key="frame" x="0.0" y="11" width="320" height="263"/>
                                                 <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
-                                                <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
+                                                <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
                                                 <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                                                 <size key="minSize" width="320" height="43"/>
                                                 <size key="maxSize" width="1100" height="10000000"/>
                                                 <attributedString key="textStorage">
                                                     <fragment>
-                                                        <mutableString key="content">Subscription plans: 
-Subscriptions: USD $39.99/(6 months), USD $79.99/(one-time purchase)
+                                                        <string key="content">Subscription plans: 
+Subscriptions: USD $39.99/</string>
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="11" name="HelveticaNeue"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content="(">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" metaFont="message" size="11"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content="6 months">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="11" name="HelveticaNeue"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content="),">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" metaFont="message" size="11"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content=" USD $79.99/">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="11" name="HelveticaNeue"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content="(">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" metaFont="message" size="11"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content="one-time purchase">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="11" name="HelveticaNeue"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content=")">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" metaFont="message" size="11"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment>
+                                                        <mutableString key="content">
 
 - Subscriptions will be charged through your iTunes account at the confirmation of purchase. 
 - Your subscriptions will automatically renew unless cancelled at least 24 hours before the end of current subscription period. 
-- Your iTunes account will be charged for renewal within 24-hours prior to the end of the current period, for the same duration and at the current subscription price. 
+- Your iTunes account will be charged for renewal within 24-hours prior to the end of the current period</mutableString>
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="11" name="HelveticaNeue"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content=",">
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" metaFont="message" size="11"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment>
+                                                        <mutableString key="content"> for the same duration and at the current subscription price. 
 - You may manage your subscriptions in your iTunes Account Settings after purchase. 
 - No cancellation of the current subscription is allowed during an active subscription period. 
 
 - Terms of service: 
 https://www.pdfreaderpro.com/terms_of_service 
 - Privacy Policy: 
-https://www.pdfreaderpro.com/privacy-policy
</mutableString>
+https://www.pdfreaderpro.com/privacy-policy</mutableString>
+                                                        <attributes>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="11" name="HelveticaNeue"/>
+                                                            <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
+                                                        </attributes>
+                                                    </fragment>
+                                                    <fragment content="
">
                                                         <attributes>
-                                                            <color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
-                                                            <font key="NSFont" size="12" name="HelveticaNeue"/>
+                                                            <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
+                                                            <font key="NSFont" size="13" name="HelveticaNeue-Bold"/>
                                                             <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
                                                         </attributes>
                                                     </fragment>
@@ -458,18 +674,18 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                 <constraint firstItem="5F9-Ol-kTt" firstAttribute="top" secondItem="GGA-Yc-I1A" secondAttribute="bottom" constant="4" id="dO4-nl-brK"/>
                                 <constraint firstItem="5F9-Ol-kTt" firstAttribute="leading" secondItem="GGA-Yc-I1A" secondAttribute="leading" constant="-4" id="dUY-jR-lhw"/>
                                 <constraint firstItem="pHZ-4d-36m" firstAttribute="centerY" secondItem="lSB-Bp-t6o" secondAttribute="centerY" id="k0E-Ud-GMG"/>
-                                <constraint firstItem="GGA-Yc-I1A" firstAttribute="top" secondItem="qnp-ir-5Rq" secondAttribute="top" constant="56" id="q64-iH-OGT"/>
+                                <constraint firstItem="GGA-Yc-I1A" firstAttribute="top" secondItem="qnp-ir-5Rq" secondAttribute="top" constant="76" id="q64-iH-OGT"/>
                                 <constraint firstItem="1La-EL-fud" firstAttribute="leading" secondItem="yC6-13-gpA" secondAttribute="trailing" id="x2C-f7-HqY"/>
                                 <constraint firstItem="1La-EL-fud" firstAttribute="top" secondItem="qnp-ir-5Rq" secondAttribute="top" constant="28" id="y3v-fH-EF1"/>
                             </constraints>
                         </view>
                         <constraints>
-                            <constraint firstAttribute="height" constant="192" id="MH0-R7-tRO"/>
+                            <constraint firstAttribute="height" constant="222" id="MH0-R7-tRO"/>
                         </constraints>
                         <color key="fillColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
                     </box>
-                    <scrollView misplaced="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="49" horizontalPageScroll="10" verticalLineScroll="49" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0go-Ik-KIF">
-                        <rect key="frame" x="0.0" y="-30" width="970" height="518"/>
+                    <scrollView misplaced="YES" borderType="none" horizontalLineScroll="49" horizontalPageScroll="10" verticalLineScroll="49" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0go-Ik-KIF">
+                        <rect key="frame" x="0.0" y="10" width="970" height="518"/>
                         <clipView key="contentView" drawsBackground="NO" id="gjo-dO-ubC">
                             <rect key="frame" x="0.0" y="0.0" width="970" height="518"/>
                             <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
@@ -499,7 +715,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                         <customView translatesAutoresizingMaskIntoConstraints="NO" id="Lye-3R-7jt">
                                                             <rect key="frame" x="0.0" y="0.0" width="970" height="32"/>
                                                             <subviews>
-                                                                <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="YLf-QJ-lxz">
+                                                                <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="YLf-QJ-lxz">
                                                                     <rect key="frame" x="30" y="8" width="105" height="17"/>
                                                                     <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="z6b-m2-RJS">
                                                                         <font key="font" metaFont="systemMedium" size="14"/>
@@ -508,13 +724,13 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                     </textFieldCell>
                                                                 </textField>
                                                                 <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="qTC-D4-FCR">
-                                                                    <rect key="frame" x="506" y="-5" width="156" height="42"/>
+                                                                    <rect key="frame" x="506" y="-5" width="300" height="42"/>
                                                                     <view key="contentView" id="azt-Xa-8Nm">
-                                                                        <rect key="frame" x="1" y="1" width="154" height="40"/>
+                                                                        <rect key="frame" x="1" y="1" width="298" height="40"/>
                                                                         <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                                                     </view>
                                                                     <constraints>
-                                                                        <constraint firstAttribute="width" constant="156" id="jTC-pD-Mbg"/>
+                                                                        <constraint firstAttribute="width" constant="300" id="jTC-pD-Mbg"/>
                                                                     </constraints>
                                                                     <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                                 </box>
@@ -558,7 +774,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                         <customView translatesAutoresizingMaskIntoConstraints="NO" id="XCD-2L-iFV">
                                                             <rect key="frame" x="32" y="0.0" width="938" height="49"/>
                                                             <subviews>
-                                                                <textField focusRingType="none" verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ivk-Uz-itt">
+                                                                <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ivk-Uz-itt">
                                                                     <rect key="frame" x="-2" y="17" width="318" height="16"/>
                                                                     <constraints>
                                                                         <constraint firstAttribute="width" constant="314" id="nGM-sy-jou"/>
@@ -572,7 +788,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="yPh-ms-kyH">
                                                                     <rect key="frame" x="330" y="0.0" width="144" height="49"/>
                                                                     <subviews>
-                                                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="hc0-rL-KI7">
+                                                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="hc0-rL-KI7">
                                                                             <rect key="frame" x="-2" y="17" width="148" height="16"/>
                                                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="pRh-sd-tBE">
                                                                                 <font key="font" metaFont="system"/>
@@ -599,18 +815,18 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                     </constraints>
                                                                 </customView>
                                                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="qtj-fA-YYc">
-                                                                    <rect key="frame" x="474" y="0.0" width="156" height="49"/>
+                                                                    <rect key="frame" x="474" y="0.0" width="300" height="49"/>
                                                                     <subviews>
                                                                         <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zW7-Gd-xVS">
-                                                                            <rect key="frame" x="0.0" y="-4" width="156" height="57"/>
+                                                                            <rect key="frame" x="0.0" y="-4" width="300" height="57"/>
                                                                             <view key="contentView" id="9hd-DO-Ok7">
-                                                                                <rect key="frame" x="1" y="1" width="154" height="55"/>
+                                                                                <rect key="frame" x="1" y="1" width="298" height="55"/>
                                                                                 <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                                                             </view>
                                                                             <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
                                                                         </box>
-                                                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="o6D-bS-HO3">
-                                                                            <rect key="frame" x="-2" y="17" width="160" height="16"/>
+                                                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="o6D-bS-HO3">
+                                                                            <rect key="frame" x="-2" y="17" width="304" height="16"/>
                                                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="zo3-j5-vmb">
                                                                                 <font key="font" metaFont="system"/>
                                                                                 <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
@@ -618,7 +834,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                             </textFieldCell>
                                                                         </textField>
                                                                         <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="I0V-hb-htu">
-                                                                            <rect key="frame" x="71" y="17" width="15" height="15"/>
+                                                                            <rect key="frame" x="143" y="17" width="15" height="15"/>
                                                                             <constraints>
                                                                                 <constraint firstAttribute="width" constant="15" id="qok-Cq-dlh"/>
                                                                                 <constraint firstAttribute="height" constant="15" id="xGy-Ra-9bd"/>
@@ -632,7 +848,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                         <constraint firstAttribute="trailing" secondItem="o6D-bS-HO3" secondAttribute="trailing" id="KKK-PP-h7f"/>
                                                                         <constraint firstItem="o6D-bS-HO3" firstAttribute="centerY" secondItem="qtj-fA-YYc" secondAttribute="centerY" id="Lxf-ZS-gpQ"/>
                                                                         <constraint firstAttribute="trailing" secondItem="zW7-Gd-xVS" secondAttribute="trailing" id="NGn-jd-xsS"/>
-                                                                        <constraint firstAttribute="width" constant="156" id="PXj-5s-cgi"/>
+                                                                        <constraint firstAttribute="width" constant="300" id="PXj-5s-cgi"/>
                                                                         <constraint firstItem="zW7-Gd-xVS" firstAttribute="leading" secondItem="qtj-fA-YYc" secondAttribute="leading" id="Y4d-va-Q85"/>
                                                                         <constraint firstItem="I0V-hb-htu" firstAttribute="centerY" secondItem="qtj-fA-YYc" secondAttribute="centerY" id="gDr-f1-ILN"/>
                                                                         <constraint firstAttribute="bottom" secondItem="zW7-Gd-xVS" secondAttribute="bottom" constant="-4" id="siO-ew-ZPH"/>
@@ -640,10 +856,10 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                     </constraints>
                                                                 </customView>
                                                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="Jpc-Ou-5vX">
-                                                                    <rect key="frame" x="630" y="0.0" width="144" height="49"/>
+                                                                    <rect key="frame" x="774" y="0.0" width="154" height="49"/>
                                                                     <subviews>
-                                                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yXD-Ui-Rw2">
-                                                                            <rect key="frame" x="-2" y="17" width="148" height="16"/>
+                                                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yXD-Ui-Rw2">
+                                                                            <rect key="frame" x="-2" y="17" width="158" height="16"/>
                                                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="FZG-Cv-Dd6">
                                                                                 <font key="font" metaFont="system"/>
                                                                                 <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
@@ -651,7 +867,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                             </textFieldCell>
                                                                         </textField>
                                                                         <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Gzz-aZ-emw">
-                                                                            <rect key="frame" x="65" y="17" width="15" height="15"/>
+                                                                            <rect key="frame" x="70" y="17" width="15" height="15"/>
                                                                             <constraints>
                                                                                 <constraint firstAttribute="width" constant="15" id="5pd-hb-O0r"/>
                                                                                 <constraint firstAttribute="height" constant="15" id="GhU-LC-pll"/>
@@ -660,7 +876,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                         </imageView>
                                                                     </subviews>
                                                                     <constraints>
-                                                                        <constraint firstAttribute="width" constant="144" id="KCY-oQ-SeK"/>
+                                                                        <constraint firstAttribute="width" constant="154" id="KCY-oQ-SeK"/>
                                                                         <constraint firstItem="yXD-Ui-Rw2" firstAttribute="centerY" secondItem="Jpc-Ou-5vX" secondAttribute="centerY" id="R3B-BC-Lxt"/>
                                                                         <constraint firstAttribute="trailing" secondItem="yXD-Ui-Rw2" secondAttribute="trailing" id="kVC-Xg-c0s"/>
                                                                         <constraint firstItem="Gzz-aZ-emw" firstAttribute="centerY" secondItem="Jpc-Ou-5vX" secondAttribute="centerY" id="q1G-Hd-wRr"/>
@@ -669,9 +885,9 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                                     </constraints>
                                                                 </customView>
                                                                 <customView translatesAutoresizingMaskIntoConstraints="NO" id="r9z-GG-d4l">
-                                                                    <rect key="frame" x="774" y="0.0" width="144" height="49"/>
+                                                                    <rect key="frame" x="928" y="0.0" width="144" height="49"/>
                                                                     <subviews>
-                                                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="pZN-Nv-lWK">
+                                                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="pZN-Nv-lWK">
                                                                             <rect key="frame" x="-2" y="17" width="148" height="16"/>
                                                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="P3f-ow-nsp">
                                                                                 <font key="font" metaFont="system"/>
@@ -761,15 +977,15 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                             <autoresizingMask key="autoresizingMask"/>
                         </scroller>
                         <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="7uf-W2-2qG">
-                            <rect key="frame" x="955" y="0.0" width="15" height="518"/>
+                            <rect key="frame" x="-100" y="-100" width="15" height="102"/>
                             <autoresizingMask key="autoresizingMask"/>
                         </scroller>
                     </scrollView>
                     <box hidden="YES" fixedFrame="YES" boxType="custom" borderType="none" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="VkH-IT-Sya">
-                        <rect key="frame" x="0.0" y="-180" width="1150" height="160"/>
+                        <rect key="frame" x="0.0" y="-180" width="1294" height="160"/>
                         <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
                         <view key="contentView" id="QmQ-U4-X4w">
-                            <rect key="frame" x="0.0" y="0.0" width="1150" height="160"/>
+                            <rect key="frame" x="0.0" y="0.0" width="1294" height="160"/>
                             <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                             <subviews>
                                 <box fixedFrame="YES" boxType="custom" borderType="none" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="JDw-cP-EOD">
@@ -786,7 +1002,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                     <rect key="frame" x="0.0" y="0.0" width="498" height="35"/>
                                                     <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                                                     <subviews>
-                                                        <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Rln-ze-Lfu">
+                                                        <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Rln-ze-Lfu">
                                                             <rect key="frame" x="22" y="8" width="458" height="19"/>
                                                             <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                             <textFieldCell key="cell" sendsActionOnEndEditing="YES" title="Choose your favorite payment and enjoy flexible upgrades." id="vdG-9p-4ZT">
@@ -811,7 +1027,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                 <rect key="frame" x="550" y="0.0" width="170" height="130"/>
                                                 <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                             </customView>
-                                            <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="v8v-YN-QiY" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
+                                            <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="v8v-YN-QiY" customClass="HyperLinkButton">
                                                 <rect key="frame" x="479" y="57" width="131" height="16"/>
                                                 <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                 <buttonCell key="cell" type="bevel" title="About Subscriptions " bezelStyle="rounded" alignment="left" controlSize="mini" imageScaling="proportionallyDown" inset="2" id="GiH-IO-i19">
@@ -839,7 +1055,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="hqM-g0-426"/>
                                                     </imageView>
-                                                    <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="yeX-i3-UFN">
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="yeX-i3-UFN">
                                                         <rect key="frame" x="8" y="7" width="57" height="16"/>
                                                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="20% off" id="QCs-71-JSP">
@@ -859,7 +1075,7 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
                                                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="P9v-Rr-nPX"/>
                                                     </imageView>
-                                                    <textField focusRingType="none" horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="xun-Av-uJQ">
+                                                    <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="xun-Av-uJQ">
                                                         <rect key="frame" x="8" y="7" width="57" height="16"/>
                                                         <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
                                                         <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="20% off" id="V9o-m1-INd">
@@ -893,11 +1109,14 @@ https://www.pdfreaderpro.com/privacy-policy
</mutableString>
             <connections>
                 <outlet property="delegate" destination="-2" id="0bl-1N-AYu"/>
             </connections>
-            <point key="canvasLocation" x="114" y="-37"/>
+            <point key="canvasLocation" x="96" y="-37"/>
         </window>
     </objects>
     <resources>
         <image name="KMImageNameCompareBG" width="970" height="192"/>
         <image name="KMImageNamePurchaseBuy" width="16" height="16"/>
+        <namedColor name="KMColor_Status_Err">
+            <color red="0.98000001907348633" green="0.11800000071525574" blue="0.36500000953674316" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
+        </namedColor>
     </resources>
 </document>