Manos Chorianopoulos

CouponBarcodeViewController ui fixes

...@@ -194,13 +194,13 @@ import AVFoundation ...@@ -194,13 +194,13 @@ import AVFoundation
194 194
195 expirationLabel.text = "Το κουπόνι ισχύει έως " + (coupon?.expiration ?? "") 195 expirationLabel.text = "Το κουπόνι ισχύει έως " + (coupon?.expiration ?? "")
196 196
197 - redeemButton.titleLabel?.font = UIFont(name: "PeridotPE-SemiBold", size: 18) 197 + redeemButton.titleLabel?.font = UIFont(name: "PeridotPE-SemiBold", size: 17)
198 redeemButton.setTitle("Δώρισέ το", for: .normal) 198 redeemButton.setTitle("Δώρισέ το", for: .normal)
199 redeemButton.setTitleColor(.white, for: .normal) 199 redeemButton.setTitleColor(.white, for: .normal)
200 redeemButton.backgroundColor = UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00) 200 redeemButton.backgroundColor = UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00)
201 redeemButton.layer.cornerRadius = 16.0 201 redeemButton.layer.cornerRadius = 16.0
202 - redeemButton.frame = CGRect(x: 0.0, y: 0.0, width: redeemButton.intrinsicContentSize.width, height: 44) 202 + redeemButton.frame = CGRect(x: 0.0, y: 0.0, width: redeemButton.intrinsicContentSize.width, height: 55)
203 - redeemButton.contentEdgeInsets = UIEdgeInsets(top: 1, left: 16, bottom: 0, right: 16) 203 + redeemButton.contentEdgeInsets = UIEdgeInsets(top: 1, left: 28, bottom: 0, right: 28)
204 // Fix width for ipad 204 // Fix width for ipad
205 // if UIDevice.current.userInterfaceIdiom == .pad { 205 // if UIDevice.current.userInterfaceIdiom == .pad {
206 // // iPad 206 // // iPad
...@@ -210,12 +210,12 @@ import AVFoundation ...@@ -210,12 +210,12 @@ import AVFoundation
210 // redeemButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true 210 // redeemButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true
211 // } 211 // }
212 212
213 - mapButton.titleLabel?.font = UIFont(name: "PeridotPE-Bold", size: 18) 213 + mapButton.titleLabel?.font = UIFont(name: "PeridotPE-Bold", size: 17)
214 mapButton.setTitle("Δες τα καταστήματα", for: .normal) 214 mapButton.setTitle("Δες τα καταστήματα", for: .normal)
215 mapButton.setTitleColor(UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00), for: .normal) 215 mapButton.setTitleColor(UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00), for: .normal)
216 mapButton.layer.cornerRadius = 15.0 216 mapButton.layer.cornerRadius = 15.0
217 - mapButton.frame = CGRect(x: 0.0, y: 0.0, width: mapButton.intrinsicContentSize.width, height: 44) 217 + mapButton.frame = CGRect(x: 0.0, y: 0.0, width: mapButton.intrinsicContentSize.width, height: 55)
218 - mapButton.contentEdgeInsets = UIEdgeInsets(top: 1, left: 16, bottom: 0, right: 16) 218 + mapButton.contentEdgeInsets = UIEdgeInsets(top: 1, left: 28, bottom: 0, right: 28)
219 mapButton.backgroundColor = .clear 219 mapButton.backgroundColor = .clear
220 mapButton.layer.borderWidth = 2 220 mapButton.layer.borderWidth = 2
221 mapButton.layer.borderColor = UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00).cgColor 221 mapButton.layer.borderColor = UIColor(red: 0.05, green: 0.65, blue: 0.00, alpha: 1.00).cgColor
...@@ -268,7 +268,7 @@ import AVFoundation ...@@ -268,7 +268,7 @@ import AVFoundation
268 // mapButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true 268 // mapButton.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 0.6).isActive = true
269 // } 269 // }
270 270
271 - termsButton.titleLabel?.font = UIFont(name: "PeridotPE-Bold", size: 16) 271 + termsButton.titleLabel?.font = UIFont(name: "PeridotPE-Bold", size: 15)
272 // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5) 272 // termsButton.imageView?.layer.transform = CATransform3DMakeScale(1.5, 1.5, 1.5)
273 termsButton.setTitle("Όροι χρήσης", for: .normal) 273 termsButton.setTitle("Όροι χρήσης", for: .normal)
274 termsButton.setTitleColor(UIColor(red: 0.13, green: 0.13, blue: 0.13, alpha: 1.00), for: .normal) 274 termsButton.setTitleColor(UIColor(red: 0.13, green: 0.13, blue: 0.13, alpha: 1.00), for: .normal)
...@@ -281,9 +281,9 @@ import AVFoundation ...@@ -281,9 +281,9 @@ import AVFoundation
281 281
282 let htmlText = couponSetData?.terms ?? "" 282 let htmlText = couponSetData?.terms ?? ""
283 termsTextView.attributedText = htmlText.htmlToAttributedString 283 termsTextView.attributedText = htmlText.htmlToAttributedString
284 - termsTextView.font = UIFont(name: "PeridotPE-Regular", size: 15) 284 + termsTextView.font = UIFont(name: "PeridotPE-Regular", size: 16)
285 termsTextView.textColor = UIColor(red: 0.62, green: 0.62, blue: 0.61, alpha: 1.00) 285 termsTextView.textColor = UIColor(red: 0.62, green: 0.62, blue: 0.61, alpha: 1.00)
286 - termsTextView.textAlignment = .center 286 + termsTextView.textAlignment = .left
287 termsTextView.isScrollEnabled = false 287 termsTextView.isScrollEnabled = false
288 288
289 termsTextView.isUserInteractionEnabled = true 289 termsTextView.isUserInteractionEnabled = true
......
...@@ -3322,19 +3322,19 @@ ...@@ -3322,19 +3322,19 @@
3322 </constraints> 3322 </constraints>
3323 </imageView> 3323 </imageView>
3324 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xz4-EE-EzJ"> 3324 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Xz4-EE-EzJ">
3325 - <rect key="frame" x="20" y="220" width="374" height="40"/> 3325 + <rect key="frame" x="20" y="230" width="374" height="39.5"/>
3326 <fontDescription key="fontDescription" name="BTCosmo-Bold" family="BTCosmo" pointSize="17"/> 3326 <fontDescription key="fontDescription" name="BTCosmo-Bold" family="BTCosmo" pointSize="17"/>
3327 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> 3327 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/>
3328 <nil key="highlightedColor"/> 3328 <nil key="highlightedColor"/>
3329 </label> 3329 </label>
3330 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Χρησιμοποίησε τον παρακάτω κωδικό και πάρε δωρεάν πακέτο πάνες Pampers αποκλειστικά στα Supermarket Σκλαβενίτης" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mri-Wl-spg"> 3330 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Χρησιμοποίησε τον παρακάτω κωδικό και πάρε δωρεάν πακέτο πάνες Pampers αποκλειστικά στα Supermarket Σκλαβενίτης" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mri-Wl-spg">
3331 - <rect key="frame" x="20" y="275" width="374" height="56"/> 3331 + <rect key="frame" x="20" y="284.5" width="374" height="59.5"/>
3332 <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="16"/> 3332 <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="16"/>
3333 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> 3333 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/>
3334 <nil key="highlightedColor"/> 3334 <nil key="highlightedColor"/>
3335 </label> 3335 </label>
3336 <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tzW-b9-Rbx" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework"> 3336 <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tzW-b9-Rbx" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework">
3337 - <rect key="frame" x="20" y="346" width="374" height="0.0"/> 3337 + <rect key="frame" x="20" y="359" width="374" height="0.0"/>
3338 <color key="backgroundColor" systemColor="systemBackgroundColor"/> 3338 <color key="backgroundColor" systemColor="systemBackgroundColor"/>
3339 <constraints> 3339 <constraints>
3340 <constraint firstAttribute="height" id="7ch-2U-9oE"/> 3340 <constraint firstAttribute="height" id="7ch-2U-9oE"/>
...@@ -3344,17 +3344,17 @@ ...@@ -3344,17 +3344,17 @@
3344 <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/> 3344 <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
3345 </textView> 3345 </textView>
3346 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Κωδικός Κουπονιού" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sg1-QU-FY1"> 3346 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Κωδικός Κουπονιού" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sg1-QU-FY1">
3347 - <rect key="frame" x="20" y="381" width="374" height="20"/> 3347 + <rect key="frame" x="20" y="394" width="374" height="21"/>
3348 <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/> 3348 <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="17"/>
3349 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> 3349 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/>
3350 <nil key="highlightedColor"/> 3350 <nil key="highlightedColor"/>
3351 </label> 3351 </label>
3352 <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zdf-1r-FdJ" userLabel="Coupon View"> 3352 <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zdf-1r-FdJ" userLabel="Coupon View">
3353 - <rect key="frame" x="152.5" y="411" width="109" height="55"/> 3353 + <rect key="frame" x="155.5" y="425" width="103" height="55"/>
3354 <subviews> 3354 <subviews>
3355 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BJS-kk-CBZ" customClass="CopyableLabel" customModule="SwiftWarplyFramework" customModuleProvider="target"> 3355 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BJS-kk-CBZ" customClass="CopyableLabel" customModule="SwiftWarplyFramework" customModuleProvider="target">
3356 - <rect key="frame" x="20" y="11" width="69" height="33"/> 3356 + <rect key="frame" x="20" y="12.5" width="63" height="30"/>
3357 - <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="28"/> 3357 + <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="24"/>
3358 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/> 3358 <color key="textColor" red="0.12941176470588234" green="0.12941176470588234" blue="0.12941176470588234" alpha="1" colorSpace="calibratedRGB"/>
3359 <nil key="highlightedColor"/> 3359 <nil key="highlightedColor"/>
3360 </label> 3360 </label>
...@@ -3368,20 +3368,20 @@ ...@@ -3368,20 +3368,20 @@
3368 </constraints> 3368 </constraints>
3369 </view> 3369 </view>
3370 <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jrM-7n-fSw" userLabel="Border View"> 3370 <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jrM-7n-fSw" userLabel="Border View">
3371 - <rect key="frame" x="20" y="486" width="374" height="1"/> 3371 + <rect key="frame" x="20" y="500" width="374" height="1"/>
3372 <color key="backgroundColor" red="0.90196078431372551" green="0.90196078431372551" blue="0.90196078431372551" alpha="1" colorSpace="calibratedRGB"/> 3372 <color key="backgroundColor" red="0.90196078431372551" green="0.90196078431372551" blue="0.90196078431372551" alpha="1" colorSpace="calibratedRGB"/>
3373 <constraints> 3373 <constraints>
3374 <constraint firstAttribute="height" constant="1" id="eF3-7T-hMu"/> 3374 <constraint firstAttribute="height" constant="1" id="eF3-7T-hMu"/>
3375 </constraints> 3375 </constraints>
3376 </view> 3376 </view>
3377 <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="huh-zh-82C"> 3377 <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="huh-zh-82C">
3378 - <rect key="frame" x="30" y="497" width="354" height="110"/> 3378 + <rect key="frame" x="30" y="511" width="354" height="110"/>
3379 <constraints> 3379 <constraints>
3380 <constraint firstAttribute="height" constant="110" id="LJq-uV-eb8"/> 3380 <constraint firstAttribute="height" constant="110" id="LJq-uV-eb8"/>
3381 </constraints> 3381 </constraints>
3382 </imageView> 3382 </imageView>
3383 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="123456789101112" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EKv-Mx-6Yv"> 3383 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="123456789101112" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EKv-Mx-6Yv">
3384 - <rect key="frame" x="20" y="617" width="374" height="26.5"/> 3384 + <rect key="frame" x="20" y="631" width="374" height="26.5"/>
3385 <constraints> 3385 <constraints>
3386 <constraint firstAttribute="height" constant="26.5" id="LfJ-bC-nLk"/> 3386 <constraint firstAttribute="height" constant="26.5" id="LfJ-bC-nLk"/>
3387 </constraints> 3387 </constraints>
...@@ -3390,14 +3390,14 @@ ...@@ -3390,14 +3390,14 @@
3390 <nil key="highlightedColor"/> 3390 <nil key="highlightedColor"/>
3391 </label> 3391 </label>
3392 <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6rV-2m-QMZ" userLabel="Border 2 View"> 3392 <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6rV-2m-QMZ" userLabel="Border 2 View">
3393 - <rect key="frame" x="20" y="658.5" width="374" height="1"/> 3393 + <rect key="frame" x="20" y="672.5" width="374" height="1"/>
3394 <color key="backgroundColor" red="0.90196078430000004" green="0.90196078430000004" blue="0.90196078430000004" alpha="1" colorSpace="calibratedRGB"/> 3394 <color key="backgroundColor" red="0.90196078430000004" green="0.90196078430000004" blue="0.90196078430000004" alpha="1" colorSpace="calibratedRGB"/>
3395 <constraints> 3395 <constraints>
3396 <constraint firstAttribute="height" constant="1" id="DVl-3B-zqo"/> 3396 <constraint firstAttribute="height" constant="1" id="DVl-3B-zqo"/>
3397 </constraints> 3397 </constraints>
3398 </view> 3398 </view>
3399 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zw5-Wj-WD5"> 3399 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zw5-Wj-WD5">
3400 - <rect key="frame" x="103.5" y="669.5" width="207" height="50"/> 3400 + <rect key="frame" x="103.5" y="683.5" width="207" height="50"/>
3401 <constraints> 3401 <constraints>
3402 <constraint firstAttribute="height" constant="50" id="ZSP-NX-0a7"/> 3402 <constraint firstAttribute="height" constant="50" id="ZSP-NX-0a7"/>
3403 </constraints> 3403 </constraints>
...@@ -3412,15 +3412,15 @@ ...@@ -3412,15 +3412,15 @@
3412 </connections> 3412 </connections>
3413 </button> 3413 </button>
3414 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Το κουπόνι ισχύει έως 05/12/2022" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UhC-Lj-tfN"> 3414 <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Το κουπόνι ισχύει έως 05/12/2022" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UhC-Lj-tfN">
3415 - <rect key="frame" x="20" y="754.5" width="374" height="17.5"/> 3415 + <rect key="frame" x="20" y="768.5" width="374" height="16"/>
3416 - <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="15"/> 3416 + <fontDescription key="fontDescription" name="PeridotPE-Regular" family="Peridot PE" pointSize="13"/>
3417 <color key="textColor" red="0.61568627450980395" green="0.61568627450980395" blue="0.61176470588235299" alpha="1" colorSpace="calibratedRGB"/> 3417 <color key="textColor" red="0.61568627450980395" green="0.61568627450980395" blue="0.61176470588235299" alpha="1" colorSpace="calibratedRGB"/>
3418 <nil key="highlightedColor"/> 3418 <nil key="highlightedColor"/>
3419 </label> 3419 </label>
3420 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8cR-Rc-YMJ"> 3420 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8cR-Rc-YMJ">
3421 - <rect key="frame" x="170.5" y="807" width="73" height="44"/> 3421 + <rect key="frame" x="167.5" y="819.5" width="79" height="55"/>
3422 <constraints> 3422 <constraints>
3423 - <constraint firstAttribute="height" constant="44" id="ccg-NP-FIH"/> 3423 + <constraint firstAttribute="height" constant="55" id="ccg-NP-FIH"/>
3424 </constraints> 3424 </constraints>
3425 <fontDescription key="fontDescription" name="PeridotPE-SBold" family="Peridot PE" pointSize="16"/> 3425 <fontDescription key="fontDescription" name="PeridotPE-SBold" family="Peridot PE" pointSize="16"/>
3426 <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/> 3426 <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
...@@ -3432,9 +3432,9 @@ ...@@ -3432,9 +3432,9 @@
3432 </connections> 3432 </connections>
3433 </button> 3433 </button>
3434 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W5f-1T-iW6"> 3434 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W5f-1T-iW6">
3435 - <rect key="frame" x="133.5" y="861" width="147" height="44"/> 3435 + <rect key="frame" x="128" y="884.5" width="158" height="55"/>
3436 <constraints> 3436 <constraints>
3437 - <constraint firstAttribute="height" constant="44" id="3pq-y5-f66"/> 3437 + <constraint firstAttribute="height" constant="55" id="3pq-y5-f66"/>
3438 </constraints> 3438 </constraints>
3439 <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="16"/> 3439 <fontDescription key="fontDescription" name="PeridotPE-Bold" family="Peridot PE" pointSize="16"/>
3440 <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/> 3440 <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
...@@ -3446,7 +3446,7 @@ ...@@ -3446,7 +3446,7 @@
3446 </connections> 3446 </connections>
3447 </button> 3447 </button>
3448 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8UD-WL-JB7"> 3448 <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8UD-WL-JB7">
3449 - <rect key="frame" x="103.5" y="925" width="207" height="50"/> 3449 + <rect key="frame" x="103.5" y="959.5" width="207" height="50"/>
3450 <constraints> 3450 <constraints>
3451 <constraint firstAttribute="height" constant="50" id="xdq-YS-AL4"/> 3451 <constraint firstAttribute="height" constant="50" id="xdq-YS-AL4"/>
3452 </constraints> 3452 </constraints>
...@@ -3461,7 +3461,7 @@ ...@@ -3461,7 +3461,7 @@
3461 </connections> 3461 </connections>
3462 </button> 3462 </button>
3463 <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xjX-HZ-MpD" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework"> 3463 <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="center" selectable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xjX-HZ-MpD" customClass="UnselectableTappableTextView" customModule="SwiftWarplyFramework">
3464 - <rect key="frame" x="20" y="985" width="374" height="0.0"/> 3464 + <rect key="frame" x="20" y="1019.5" width="374" height="0.0"/>
3465 <color key="backgroundColor" systemColor="systemBackgroundColor"/> 3465 <color key="backgroundColor" systemColor="systemBackgroundColor"/>
3466 <constraints> 3466 <constraints>
3467 <constraint firstAttribute="height" id="3GU-tg-S3t"/> 3467 <constraint firstAttribute="height" id="3GU-tg-S3t"/>
...@@ -3498,7 +3498,7 @@ ...@@ -3498,7 +3498,7 @@
3498 <constraint firstItem="W5f-1T-iW6" firstAttribute="centerX" secondItem="1ec-eH-fkX" secondAttribute="centerX" id="Pug-Ej-C69"/> 3498 <constraint firstItem="W5f-1T-iW6" firstAttribute="centerX" secondItem="1ec-eH-fkX" secondAttribute="centerX" id="Pug-Ej-C69"/>
3499 <constraint firstItem="W5f-1T-iW6" firstAttribute="top" secondItem="8cR-Rc-YMJ" secondAttribute="bottom" constant="10" id="Rbe-XQ-CIj"/> 3499 <constraint firstItem="W5f-1T-iW6" firstAttribute="top" secondItem="8cR-Rc-YMJ" secondAttribute="bottom" constant="10" id="Rbe-XQ-CIj"/>
3500 <constraint firstAttribute="trailing" secondItem="jrM-7n-fSw" secondAttribute="trailing" constant="20" id="ReY-xR-F8V"/> 3500 <constraint firstAttribute="trailing" secondItem="jrM-7n-fSw" secondAttribute="trailing" constant="20" id="ReY-xR-F8V"/>
3501 - <constraint firstItem="Xz4-EE-EzJ" firstAttribute="top" secondItem="iiM-5P-m5s" secondAttribute="bottom" constant="20" id="Ryr-v8-THU"/> 3501 + <constraint firstItem="Xz4-EE-EzJ" firstAttribute="top" secondItem="iiM-5P-m5s" secondAttribute="bottom" constant="30" id="Ryr-v8-THU"/>
3502 <constraint firstItem="Sg1-QU-FY1" firstAttribute="top" secondItem="tzW-b9-Rbx" secondAttribute="bottom" constant="35" id="WWh-BA-7qP"/> 3502 <constraint firstItem="Sg1-QU-FY1" firstAttribute="top" secondItem="tzW-b9-Rbx" secondAttribute="bottom" constant="35" id="WWh-BA-7qP"/>
3503 <constraint firstItem="xjX-HZ-MpD" firstAttribute="top" secondItem="8UD-WL-JB7" secondAttribute="bottom" constant="10" id="XFI-ij-KkC"/> 3503 <constraint firstItem="xjX-HZ-MpD" firstAttribute="top" secondItem="8UD-WL-JB7" secondAttribute="bottom" constant="10" id="XFI-ij-KkC"/>
3504 <constraint firstItem="mri-Wl-spg" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="YLo-Lg-Lda"/> 3504 <constraint firstItem="mri-Wl-spg" firstAttribute="leading" secondItem="1ec-eH-fkX" secondAttribute="leading" constant="20" id="YLo-Lg-Lda"/>
......